ubuntu server日常
文章目录
#系统信息
lsb_release -a
:发行版信息uname
uname -a
:Unix/kernel 信息
#支持中文
|
|
#设置fish为默认的shell
|
|
#使用mosh连接远程服务器 想在mac下使用mosh连接服务器(服务器端也需要安装mosh),两边的语言环境最好相同(可都做以上「支持中文」设置),否则可能因为LANG的问题报错
#IP vim /etc/network/interfaces
###以DHCP方式配置网卡
|
|
重启使网络生效:sudo /etc/init.d/networking restart
###配置静态IP
|
|
重启生效:sudo /etc/init.d/networking restart
#配置DNS sudo vim /etc/resolvconf/resolv.conf.d/tail
添加内容格式和/etc/resolv.conf
相同:nameserver 8.8.8.8
重启使网络生效:sudo /etc/init.d/resolvconf restart
#查看端口
sudo lsof -i:8000
:查看8000端口被什么占用
###永久生效
sudo vim /etc/resolvconf/resolv.conf.d/base
sudo resolvconf -u
#交换分区
|
|
#设置ssh免登陆 ssh-copy-id ~/.ssh/id_rsa.pub wwj@192.168。1.100
#z jump look at startMyUbuntu.sh
删除
sudo apt-get remove –purge xxx
systemctl
Systemctl是一个systemd工具,主要负责控制systemd系统和服务管理器。
Systemd是一个系统管理守护进程、工具和库的集合
进程管理推荐用supervisor,这里介绍些 systemctl
- 分析启动时各个进程花费的时间:
systemd-analyze blame
- 如何激活服务并在启动时启用或禁用服务
- systemctl is-active ajenti.service
- systemctl enable ajenti.service
- systemctl disable ajenti.service
#资料
- Linux工具快速教程:已经按用途做了分类,方便参考
文章作者 种瓜
上次更新 2015-08-15