标签:init
openwrt uhttpd更改默认端口
蓝鹰 | CentOS | 2023-12-11
1. 修改uhttpd端口
vi /etc/config/uhttpd
list listen_http 0.0.0.0:80 --> list listen_http 0.0.0.0:808
需要ipv6的端口也一并修改,保存,重启uhttpd
/etc/init.d/uhttpd restart
[阅读全文]
Ubuntu 22.04 设置开机自启脚本
蓝鹰 | CentOS | 2023-12-05
使用 rc-local.service
rc-local.service 是系统自带的一个开机自启服务,但是在 ubuntu 20.04 上,该服务默认没有开启。
将rc-local服务设置为开机自启动(本文操作都在root用户下,或使用sudo)。
首先将rc-local.service文件复制到system目录下
cp /usr/lib/systemd/system/rc-local.service /etc/systemd/system/
一般正常的启动文件主要分成三部分
[... [阅读全文]
OpenWRT/LEDE 添加frp开机服务
蓝鹰 | CentOS | 2023-09-04
STRT=90
STOP=90
启动/停止顺序
PROC的内的参数是程序启动命令
添加PROC服务文件
vi /etc/init.d/frpc
#!/bin/sh /etc/rc.common
START=90
STOP=90
SERVICE=frpc
USE_PROCD=1
PROC="/usr/bin/frpc -c /etc/frp/frpc.ini"
start_service()
{
procd_open_instance
procd_set_param command $PROC
procd_set_param respawn
procd_close_instance
}
servi... [阅读全文]
解决重启iptables内核模块自动unload
蓝鹰 | CentOS | 2016-03-29
在Linux内核里,默认情况下,iptables重启动的时候,iptables模块会被卸载(unload),然后加载重启.这种配置下iptables如果重启,对于那些tcp发起端window scale option有效的的连接会产生以下影响:
1.重启后window size会不能被正确识别;
2.已经建立的tcp会话状态会从 ESTABLISHED → INVALID 导致会话中断;
以上问题对于有重传机制的应用或许问题不大,但... [阅读全文]
XenServer硬盘出现错误:There was an SR backend failure
蓝鹰 | CentOS | 2016-02-25
昨晚Webnx机房停电,个人几台服务器出现硬盘不能使用了,VPS全部能开机,这可要人命呀!
从XenCenter发现,硬盘有个红色“X”,即使使用右键 “Repair…” 修复硬盘,出现错误:“The SR failed to complete the operation”
“The SR failed to complete the operation”这错误再次伤了我,太笼统的错误了,Google,度娘,都查了N遍又N遍,没有答案,也无... [阅读全文]
debain用udhcpd做htcp服务器
蓝鹰 | debian | 2015-11-16
安装必备程序
apt-get install udhcpd
udhcpd主要为连接到WiFi的设备自动分配IP地址的,当然你也可以换用你所熟悉的软件。
配置udhcpd,编辑/etc/udhcpd.conf,主要内容如下:
start 192.168.42.2 # This is the range of IPs that the hostspot will give to client devices.
end 192.168.42.20
interface wlan0 # The device uDHCP listens on.
re... [阅读全文]
Debian使用Hostapd搭建无线访问点(WAP)
蓝鹰 | debian | 2015-11-16
不是每张网卡都有无线AP功能所以先检查下
http://linuxwireless.org/en/users/Drivers/
这里可以查到支持AP的网卡及内核版本
apt-get install wireless-tools
iw list
重点观察:
Supported interface modes:
* IBSS
* managed
* AP
* AP/VLAN
* monitor
* mesh point
* P2P-client
* P2P-GO
看看这段中是不是有AP如果有可以继续,
步骤1: 安装hostapd
a... [阅读全文]
debain配置dhcp服务器
蓝鹰 | debian | 2015-11-16
安装
apt-get -y install isc-dhcp-server
编辑要使用的网卡
vim /etc/default/isc-dhcp-server
INTERFACES="eth0"
编辑配置文件
vim /etc/dhcp/dhcpd.conf
#要使用的域名可以随便
option domain-name "spices.org";
#要使用DNS
option domain-name-servers 213.191.92.86, 213.191.74.18;
#这里是设置DHCP的网段
subnet 192.168.1.0 netmask 2... [阅读全文]
Debian双网卡配置
蓝鹰 | debian | 2015-11-09
1.单网卡配置
/etc/network/interfaces
auto eth0
#iface eth0 inet dhcp(默认是DHCP被注释掉)
iface eth0 inet static
address 192.168.8.110
netmask 255.255.255.0
gateway 192.168.8.1
2.双网卡配置
/etc/network/interfaces
auto eth0
#iface eth0 inet dhcp(默认是DHCP被注释掉)
iface eth0 inet static
address 192.168.8.110
netmask 255.2... [阅读全文]
debian让root用户能直接进行ssh登录
蓝鹰 | debian | 2015-11-09
问题
出于安全原因,默认参数很严格,禁止root用户直接使用ssh登陆
比如先用非root的帐户,登陆到ssh后,su成为root
解决方案
如果想直接用root登陆,则修改如下配置文件:
vi /etc/ssh/sshd_config
找到其中的如下一行,将前边的#符号去掉,并修改no为yes
#PermitRootLogin no
改成:
PermitRootLogin yes
接下来执行如下命令重新启动SSH服务:
/etc/i... [阅读全文]