侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

Debian下常用的命令

2023-11-28 星期二 / 0 评论 / 0 点赞 / 59 阅读 / 1171 字

1.刷新DNS缓存: user@user-pc:~$ sudo /etc/init.d/networking restart[sudo] user 的密码:[ ok ] Restarting netw

1.刷新DNS缓存:

user@user-pc:~$ sudo /etc/init.d/networking restart[sudo] user 的密码:[ ok ] Restarting networking (via systemctl): networking.service.

2.清楚缓存:

sudo apt-get autoclean              清理旧版本的软件缓存sudo apt-get clean                  清理所有软件缓存sudo apt-get autoremove             删除系统不再使用的孤立软件

3.软件升级:

sudo apt-get update                更新软件源sudo apt-get upgrade                更新已经安装的软件

4.linux中ctrl+z,ctrl+d和ctrl+c的区别

ctrl-c 发送 SIGINT 信号给前台进程组中的所有进程。常用于终止正在运行的程序。ctrl-z 发送 SIGTSTP 信号给前台进程组中的所有进程,常用于挂起一个进程。

 

广告 广告

评论区