摘要:
挂载到你的目标目录目录下: sudo ln -s /你的原始目录 /你的目标目录 挂载到你的当前目录下: sodu ln -s /你的原始目录 . 阅读全文
posted @ 2024-08-15 14:29
stone9693
阅读(30)
评论(0)
推荐(0)
摘要:
比如查看进程显示表头: ps -aux | head -n 1;ps -aux | grep runserver 阅读全文
posted @ 2024-08-15 14:27
stone9693
阅读(58)
评论(0)
推荐(0)
摘要:
挂载: mount -t cifs //你的共享目录/你的次级目录 /你的挂载点 -o username=你的共享账户,password=你的共享密码 打开/etc/fstab文件,在最后一行添加,注意用空格分开,保持列对其,具体如下: //你的共享目录/你的次级目录 /你的挂载点 cifs aut 阅读全文
posted @ 2024-08-15 14:23
stone9693
阅读(98)
评论(0)
推荐(0)
摘要:
vim /etc/sysconfig/network-scripts/ifcfg-ens33 修改以下配置: BOOTPROTO="static" ONBOOT="yes" 修改之后重启网卡: systemctl restart network 阅读全文
posted @ 2024-08-15 14:22
stone9693
阅读(9)
评论(0)
推荐(0)