首页 > 系统相关 >我的无线转有线linux服务器用到的脚本们

我的无线转有线linux服务器用到的脚本们

时间:2024-11-28 18:22:32浏览次数:6  
标签:systemd LC service getty linux 有线 服务器 yes target

lnxrouter

/home/light/Scripts/lnxrouter

route.sh

/home/light/Scripts/route.sh

#!/bin/bash
sudo /home/light/Scripts/lnxrouter -i enp2s0 -g 0 --daemon

route.service

/etc/systemd/system/route.service

[Unit]
Description=run lnxrouter
Before=getty@tty1.service

[Service]
Type=forking
ExecStart=/home/light/Scripts/route.sh
StandardOutput=tty
StandardError=tty

[Install]
WantedBy=getty.target

getty@tty1.service

/etc/systemd/system/getty.target.wants/getty@tty1.service

#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Getty on %I
Documentation=man:agetty(8) man:systemd-getty-generator(8)
Documentation=https://0pointer.de/blog/projects/serial-console.html
After=systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target
After=rc-local.service

# If additional gettys are spawned during boot then we should make
# sure that this is synchronized before getty.target, even though
# getty.target didn't actually pull it in.
Before=getty.target
IgnoreOnIsolate=yes

# IgnoreOnIsolate causes issues with sulogin, if someone isolates
# rescue.target or starts rescue.service from multi-user.target or
# graphical.target.
Conflicts=rescue.service
Before=rescue.service

# On systems without virtual consoles, don't start any getty. Note
# that serial gettys are covered by serial-getty@.service, not this
# unit.
ConditionPathExists=/dev/tty0

[Service]
# the VT is cleared by TTYVTDisallocate
# The '-o' option value tells agetty to replace 'login' arguments with an
# option to preserve environment (-p), followed by '--' for safety, and then
# the entered username.
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin light - $TERM
Type=idle
Restart=always
RestartSec=0
UtmpIdentifier=%I
StandardInput=tty
StandardOutput=tty
TTYPath=/dev/%I
TTYReset=yes
TTYVHangup=yes
TTYVTDisallocate=yes
IgnoreSIGPIPE=no
SendSIGHUP=yes

# Unset locale for the console getty since the console has problems
# displaying some internationalized messages.
UnsetEnvironment=LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION

[Install]
WantedBy=getty.target
DefaultInstance=tty1

标签:systemd,LC,service,getty,linux,有线,服务器,yes,target
From: https://www.cnblogs.com/lightmon5210/p/18574904

相关文章

  • 电力IEC103/2/1/4规约数据采集仪器网关通讯管理机测试软件工具客户端服务器 LFP/NZ94/
      www.daq-iot.com 作为物联网数据采集解决方案专业提供商,数采物联网小编daq-iot在这里做以下内容介绍,并诚挚的欢迎大家讨论和交流。IEC103规约支持:工具完全适用于电力行业的各种通信测试采集需求。串口和以太网通信:工具支持通过串口和以太网进行通信,灵活适应不同的......
  • rustdesk中继服务器的docker镜像使用-有手就行
    rustdesk中继服务器搭建踩坑文章目录前言一、官方文档二、使用的配置三、docker拉取并运行1、docker拉取镜像2、运行hbbs3、运行hbbr四、配置防火墙与安全组1、配置防火墙2、安全组配置3、测试网络连通性五、在客户端设置hbbs/hbbr地址1、点击ID......
  • 惠普塔式服务器维修数据恢复
    惠普塔式服务器维修数据恢复是一个复杂而专业的过程,以下是对该过程的详细解析:一、数据恢复前的准备硬件检测:在数据恢复前,首先对服务器的硬件进行检测,包括硬盘、内存、CPU等关键部件。检查硬盘的物理状态,看是否有损坏或异常。数据备份:在进行任何数据恢复操作之前,都应首先备份......
  • Linux下端口连通性测试
    端口连通性测试使用nc命令Linux下自带/dev/tcp命令#!/bin/bash#检测脚本传入的参数if[$#-eq0];thenecho"使用格式:$0<IPPORT>|-f<file>"echo"<IPPORT>测试单个IP和端口"echo"-f<file>批量测试,使用参数-f指定要测试......
  • Q:CRON表达式,Linux和Java的不同写法
    CRON表达式是一个字符串,包含五个到七个由空格分隔的字段(每种软件不一样),表示一组时间,通常作为执行某个程序的时间表。调度精度:Linux的cron调度精度为分钟级别,最小粒度为分钟,而Java中的Quartz框架可以支持秒级别的调用。灵活性:Quartz框架提供了丰富的调度功能,可以支持一些复......
  • 【Linux】剧幕中的灵魂更迭:探索Shell下的程序替换
    ......
  • [Linux]文件系统
    文件系统在理解文件系统之前,我们先来看一下关于磁盘方面的内容。磁盘的存储结构盘面:一个磁盘由多个盘片组成,每个盘片都由两面,它的每一个面都可以存储数据,这就是盘面。磁道:在一个盘面上会被划分为一个一个的“圈”,这个“圈”就对应这一个个的磁道。扇区:从盘面中心......
  • 【应急响应】Linux 计划任务与 DFIR 排查实践(二)
    #linux应急响应at服务#cron服务#隐藏任务......
  • Linux系统自定义服务使用system方式启动步骤
    确定启动的名字,如orzs#启动服务路径/etc/systemd/system/orzs.service 使用systemd启动服务文件所在路径/opt/orzs/start_orzs文件配置文件路径和工作目录#服务工作目录/opt/orzs/#配置文件目录/opt/orzs/etc/文件软连#软连ln-s/opt/orzs/start_orzs/usr......
  • 腾讯通RTX最佳升级替代方案,支持移动端及Linux系统
    一、腾讯通RTX停更后用户面临的主要问题腾讯通RTX停止更新及下架官网后,用户无法再获得技术支持、版本更新和资源下载,这直接导致以下关键问题无法得到有效解决:●不兼容国产系统与移动端:腾讯通RTX仅支持Windows和Mac平台,无法在国产Linux内核系统(如统信UOS、银河麒麟)以及移动端正......