1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| sudo apt-cache search ifconfig sudo fdisk -l mount /dev/sda1 /mnt/u/
aria2c --conf-path=/mnt/a/aria2c.conf ctrl+z bg disown 前台 fg
nohup command &
sync umount /mnt/u/ shutdowm -h now
ssh-keygen -R xxx.xxx.xxx.xxx
cd ~/BaiduPCS-Go-3.7.0-linux-arm/ nohup sudo ./BaiduPCS-Go web --access & tail -fn 50 nohup.out cp /dev/null nohup.out
先cd 到对应的文件夹,不要有random文件(夹),然后注意用全,不能用.和~ ln -s /var/www/html/wp-content/themes/Sakura/manifest/gallary random
|
你可以在来启动nohup命令时,用追加模式来指定。
比如一般的命令是:
nohup /opt/aa.sh > aa.log 2>&1 &
追加模式是:
nohup /opt/aa.sh >> aa.log 2>&1 &
也就是多了一个右尖括号。
最后 cat /dev/null > aa.log
就可以清除aa.log的内容,包括aa.log文件大小也重置了。
这种方法用于动态清除日志,优点是不需要停服务
1 2 3 4 5
| #!/bin/bash cd BaiduPCS-Go-3.7.0-linux-arm/ killall BaiduPCS-Go cp /dev/null nohup.out nohup sudo ./BaiduPCS-Go web --access &
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| nano /etc/systemd/system/aria2.service
[Unit] Description=aria2c After=network.target
[Service] ExecStart=/usr/bin/aria2c --conf-path=/media/d/aria2c.conf
[Install] WantedBy=multi-user.target
systemctl start aria2
systemctl status aria2
systemctl enable aria2
|
1 2 3 4 5 6 7 8 9 10 11 12
| nano /etc/init.d/ossfs
ossfs limourfile /media/oss -ourl=http://oss-cn-shanghai-internal.aliyuncs.com -o allow_other
chmod a+x /etc/init.d/ossfs chkconfig ossfs on
|