- 介绍
本文介绍Ubuntu下的一些好用的工具。
- 编辑器
apt-get install nano
- 远程桌面
- 连接Windows
apt-get install rdesktop
如果您要通过Windows来连接Linux可以安装下面的服务:
sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon
sudo apt-get install xrdp vnc4server
echo mate-session >~/.xsession
vim /etc/xrdp/startwm.sh
/etc/init.d/xrdp restart
- 截图工具
apt-get install shutter
- 屏幕录制
kazam
sudo add-apt-repository ppa:maarten-baert/simplescreenrecorder
sudo apt-get update
sudo apt-get install simplescreenrecorder
- 网络拓扑图
apt-get install dia
- UML
- 输入法
sudo apt-get install ibus-pinyin
im-config -s ibus
ibus-setup
sudo apt-get install fcitx fcitx-config-gtk fcitx-sunpinyin fcitx-googlepinyin fcitx-module-cloudpinyin
sudo apt-get install fcitx-table-all
- 字体
apt-get remove fonts-arphic-ukai fonts-arphic-uming
- theme
sudo apt-get install unity-tweak-tool
unity-tweak-tool
- flash
sudo apt install adobe-flashplugin
http://www.ubuntukylin.com/application/show.php?lang=cn&id=279
- 字符集
默认情况下,Ubuntu可能对GBK等中文字符集会不支持。例如,从Windows拷贝过来的文本文件中发现有乱码,可以通过下面的步骤来修改字符集的支持。执行下面的命令添加字符集:
sudo vim /var/lib/locales/supported.d/local
增加内容:
zh_CN.GBK GBK
zh_CN.GB2312 GB2312
最后,执行命令来更新配置:sudo dpkg-reconfigure locales