1 运维 2024-07-27 screen后台运行任意终端 1.系统安装screencentosyum install screen debianapt install screen 2.创建一个新的窗口screen -S test 3.进入窗口后 执行文件python test.py 4.退出当前窗口ctrl+a+d (方... 阅读全文
2 运维 2024-07-16 linux 进程守护 linux创建service文件 /usr/lib/systemd/system/*.service文件内容为[Unit] Description=xxx After=network.target [Service] Type=simple WorkingDirec... 阅读全文
5 运维 2024-07-08 linux pip/pip3/pipx常用命令相关 debian 12 安装pip/pip3 apt install Python3-pippip/pip3直接install会报错推荐使用虚拟环境安装可以使用 pip/pip3 install package-name --break-system-packages pack... 阅读全文