善用/var/log
该目录存放系统日志,很多异常,比如进不了GUI、服务器连不上等问题,都可通过此目录内的log排查。
比如samba连不上,可通过cat /var/log/auth.log | grep samba
查看samba失败的原因。
服务重启
很多服务如samba、tftp如果配置文件改了之后,需要通过sudo service smbd/tftp restart
来重启服务。
硬件相关
网卡相关
以Ubuntu server 14.04为例。
没有 ifconfig 命令
sudo apt-get install net-tools
静态IP配置
配置文件:/etc/network/interfaces
,如eth0的配置。
1 | sunnogo@sunyongfeng:~/Downloads$ cat /etc/network/interfaces |
以上配置相当于命令:1
2ifconfig eth0 192.168.204.148 netmask 255.255.255.0
route add default gw 192.168.204.1
DNS配置
配置文件:/etc/resolvconf/resolv.conf.d/base
1 | sunnogo@sunyongfeng:~/Downloads$ cat /etc/resolvconf/resolv.conf.d/base |
禁用IPv6
禁用的原因:ubuntu源默认使用IPv6,详见链接。
修订文件/etc/sysctl.conf
,在该文件最后加上:1
2
3
4# IPv6 disabled
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
保存关闭,并执行1
$ sudo sysctl -p
即时生效,可通过ifconfig检查。重启有效。
显示相关
屏幕分辨率问题
处理elementary OS时的操作
1 | sudo xrandr --newmode "1440x900" 106.50 1440 1528 1672 1904 900 903 909 934 -hsync +vsync |
日常使用
apt
配置源
- 安装ubuntu的图形工具
update-manager
,通过Software & Updates
,在“Ubuntu Software”标签页,点“Download from:”旁边的复选框,选择http://mirrors.yun-idc.com/ubuntu
,这个源在福州的速度不错。 - 亦可通过更改
/etc/apt/source.list
的内容实现源配置。 - debian可以通过
apt-spy
实现类似功能。
更新cache
apt-get update
以关键字查找包
apt-cache search your-keyword
强制使用IPv4更新
默认使用IPv6源更新,不过国内目前还未全力推广IPv6。通过Software & Updates
图形界面配置中文源后,无此问题。
强制使用IPv4更新的方法,说明详见链接。
- 使用
apt-get install
时,加入选项-o Acquire::ForceIPv4=true
。 - 添加一个配置文件
/etc/apt/apt.conf.d/99force-ipv4
,在配置文件中写入Acquire::ForceIPv4 "true";
。
安装失败
出现如下错误:
1 | sunyongfeng@R04220 ~/smoking/ci $ sudo apt-get install npm |
解决,简单粗暴地删除cache,再更新一下。1
2sudo rm /var/lib/apt/lists/* -vf
sudo apt-get update
中文支持
Ubuntu server 14.04中文支持
默认使用English,之后装gdm,想在英文环境中显示中文。
安装的包:
- 中文支持
gnome中文支持包:language-pack-zh-han*
language-pack-gnome-zh-han*
- 中文字体
ttf-wqy-microhei
ttf-wqy-zenhei
ttf-ubuntu-font-family
,这个不是中文字体,只是装一下而已。fonts-arphic-uming
,个人很喜欢的一个中文字体,不过其英文显示有点难看。
输入法
使用经典的fcitx
。
Ubuntu server 14.04 fcitx
- 安装的包
fcitx
fcitx-config-gtk2
,图形配置工具fcitx-table-wbpy
,五笔拼音输出法fcitx-module-*
,有dbus
、kimpanel
等fcitx-frontend-*
,在gdm中,不需要装这个。为fbterm
准备。
- 配置
- 卸载ibus,
apt-get remove ibus
,5M多;原理不明。 - 通过
fcitx-config-gtk2
,点击“Input Method”标签页左下方的“+”号,搜索出WubiPinyin,添加即可。
- 卸载ibus,
fcitx旧安装方式记录
1 | sudo apt-get install fcitx fcitx-frontend-qt5 fcitx-table-wbpy fcitx-ui-classic fcitx-config-gtk3 |
fcitx-table-xxx,这里用的wbpy是五笔拼音,其他输入法如拼音由使用者自己选择。
执行:fcitx-autostart可开机自启动打开fcitx。
浏览器
安装的包:(安装完后,默认的中文字体意外地显示得很好AR PL UMing CN
和Monospace
)
chromium-browser
pepperflashplugin-nonfree
文件管理器(File Manager)
注意与窗口管理器(Window Manager)的概念不一样。
安装包:
- gnome,
nautilus
- kde,
dolphin
文本编辑器
安装包:
- gnome,
gdeit
- kde,
kate
引导失败
一般是先装Linux再装Windows出现。解决方法:
- 用
Docker
吧,不用再装Windows了。 - 通过Linux USB启动盘进入U盘中的Linux,通过grub一般都能修复,然后替换掉windows的引导,先通过grub引导。
update-grub
或update-grub2
grub-install
- 通过
EasyBCD
配置,重启后进入Linux,然后再进行grub修复。
键鼠
提示CapsLock键
大写提示工具:indicators-keylock
,先导入源,再安装。
1 | sudo add-apt-repository ppa:tsbarnes/indicator-keylock && sudo apt-get update |
禁用触摸板
Ubuntu配置禁用触摸板wiki。
命令:synclient touchpadoff=1
。
可以使用工具GPointingDeviceSettings
。
用户管理
Add user and add to sudoers group
From How can I add a new user as sudoer using the command line?, ændrük’s answer.
From RootSudo#Allowing_other_users_to_run_sudo:
Allowing other users to run sudo
To add a new user to sudo, open the Users and Groups tool from System->Administration menu. First click Unlock, then you can select a user from the list and hit Properties. Choose the User Privileges tab and check Administer the system.
In the terminal (for Precise Pangolin, 12.04), this would be:
sudo adduser <username> sudo
where you replace
with the name of the user (without the <>). In previous version of Ubuntu
sudo adduser <username> admin
would have been appropriate, but the admin group has been deprecated and no longer exists in Ubuntu 12.04.
添加用户
命令:
useradd
, 如果想类似 adduser 那样默认创建用户 home 目录,命令样例为useradd -m -d /home/newuser -p yourPaSsWoRd newuser
,又如useradd -G sudo,docker jeromesun -m -s /bin/bash
usermod
userdel
adduser
, user adduser can default add a /home/username directory.
批量创建大量用户:
1 |
|
修改密码
命令:passwd username
修改root密码
ubuntu的默认root密码随机,通过sudo passwd root
修改
添加sudo用户
如果用户不是sudo用户,且使用sudo命令,则会提示“xxx is not in the sudoers file. This incident will be reported”。解决方法:
- 拿到root权限,添加文件
/etc/sudoers
读权限 - 修改
/etc/sudoers
,在User privilege specification
下,类似root那样,添加一行usernamexxxx ALL=(ALL:ALL) ALL
1 | # User privilege specification |
添加 sudo 用户的另一种简易方法
详见:How To Create a Sudo User on Ubuntu [Quickstart]。
- 以 root 用户登陆你的设备
1 | ssh root@server_ip_address |
- 使用 adduser 命令创建新用户。
以下内容请替换 username 为你想创建的用户名。
1 | adduser username |
设置和确认新用户的密码。
1 | Set password prompts: |
接下来提示设置用户信息,可以全部不填,直接敲回车键。
1 | User information prompts: |
- 使用 usermod 命令添加用户到 sudo 组。
1 | usermod -aG sudo username |
Ubuntu 上 sudo 组的成员默认拥有 sudo 权限。
- 测试新用户账号的 sudo 权限。
使用 su 命令切换到新用户。
1 | su - username |
在你的命令前加 sudo 尝试新用户权限:
1 | sudo command_to_run |
例如,查看 /root 目录的内容:
1 | sudo ls -la /root |
如果是本会话中第一次使用 sudo,将系统会提示你输入密码。
1 | sunyongfeng@ubuntu:~$ sudo ls -al /root |
配置字体
- 拷贝字体
- 配置字体
- 刷新字体
1 | sudo cp -a msfonts /usr/share/fonts/msfonts |
ssh
ssh 远程登陆后很久才提示输入密码
原因:配置 GSSAPIAuthentication
为 yes
了。默认情况下该配置并未开启,详见 /etc/ssh/sshd_config
1 |