标签:
一些安装软件及配置的笔记,备忘用,随时更新。
Ctrl+H 可以在GUI文件管理器中查看隐藏文件\目录。
华硕笔记本无线WIFI问题:
sudo rmmod -f acer-wmi
可以将其加入模块加载黑名单中 避免每次重启都需要卸载
用root权限将"blacklist acer-wmi"写入/etc/modprobe.d/blacklist.conf文件中
源的选择
校内网好像要用edu的源
sjtu和tsinghua的源都可以
iBus输入法全拼不好用
可以先更新语言包 然后重启一般可以解决。
火狐浏览器选择文字被删除解决方法:
在终端中输入命令: ibus-setup
将 “在应用程序窗口中启用内嵌编辑模式“ 选项取消
方便安装deb包
可以用gdebi,可以自动解决依赖问题,用来安装搜狗输入法比较方便。
必装软件:
1.插件
Flash插件及额外的版权受限程序:
sudo apt-get install ubuntu-restricted-extras
2.语言支持
系统设置中更新语言包支持
3.sublime text3
添加仓库:
sudo add-apt-repository ppa:webupd8team/sublime-text-3
更新软件库:
sudo apt-get update
安装sublime:
sudo apt-get install sublime-text-installer
修复Sublime Text3中文输入BUG:
参考 https://github.com/lyfeyaj/sublime-text-imfix
修复中文输入法不跟随BUG:
4.字体
字体管理器:
sudo apt-get install font-manager
5.音乐播放器
酷我音乐(推荐):
参考 https://github.com/LiuLang/kwplayer-packages
网易云音乐:
git clone https://github.com/cosven/FeelUOwn.gitcd FeelUOwn./install.sh
深度音乐:
参考 http://tieba.baidu.com/p/3350327342
6.安装vim
在默认VI中输入方向键会变成ABCD,这是因为Ubuntu预装的是vim-tiny版本,安装vim-full版本即可解决。
安装方法:
卸载vim-tiny:
sudo apt-get remove vim-common
安装vim-full:
sudo apt-get install vim
7.Codeblocks
参考 http://m.blog.csdn.net/blog/doublemark/29602199
安装完可能在dash中搜不到,可以输入命令codeblocks打开 (换了清华的源后从软件中心直接安装就好了,以前用的是sjtu的源)
换源即可,tsinghua的源的Codeblocks可以用,直接从软件中心下载。
如果提示"需要安装不能信任的软件包",则
sudo apt-get update
一下即可。
修改codeblocks默认使用的控制台:
Settings->Environment->"Terminal to launch console programs" = "gnome-terminal --geometry 80x20+100+100 --hide-menubar -t $TITLE -x"(不包含引号)。
改字体:
Settings->Editor->General settings->font
取消使用自动括号匹配(括号补全):
Settings->Editor->General settings->Indent options->Brace completion
修复缩进异常BUG:
sudo apt-get install codeblocks-contrib
重启codeblocks即可
修改TAB:
在
Setings -> Editor -> General setings -> Font
中将“TAB size in space”增大到8即可。
8.新立得软件包管理器
从软件中心即可下载或者用
sudo apt-get install synaptic
9.锐捷的替代品
MentoHUST
10.使用apt-fast
apt-fast是apt-get和aptitude的快速版本。
11.WIFI
可以使用ap-hotspot
12.QQ国际版
下载地址:http://www.ubuntukylin.com/applications/showimg.php?lang=cn&id=23
直接安装即可
13.关闭显示器:
gnome-screensaver-command –a
可以做成alias
14.火狐浏览器相关
使搜索栏打开新标签页设置:
在about:config网址中将browser.search.openintab 改为 true 重启即可
15.解决update时Hash Sum Mismatch问题
参考: http://blog.csdn.net/xjwjava/article/details/8543768
16.删除bash中残余图标:
删除以下文件即可
~/.local/share/application *.desktop
.config
17.卸载自带的LibreOffice并换成WPS
sudo apt-get remove --purge libreoffice* sudo apt-get autoremove
安装WPS Office
下载地址: http://community.wps.cn/download/
系统缺失字体下载地址: http://download.csdn.net/download/wl1524520/6333049
放到.fonts文件夹即可解决
18.如何把系统文件夹名从中文改为英文
export LANG=en_US xdg-user-dirs-gtk-update #update export LANG=zh_CN.UTF-8
19.如何开启显示桌面:
系统设置-外观-行为-添加显示桌面
20.安装Eclipse
直接到软件中心下载安装
21.配置gedit为简易的C++IDE
参考 http://www.th7.cn/Program/cp/201408/259444.shtml
参考 http://www.lainme.com/doku.php/blog/2010/07/%E9%85%8D%E7%BD%AEgedit%E7%9A%84_%E5%A4%96%E9%83%A8%E5%B7%A5%E5%85%B7_%E6%9D%A5%E7%BC%96%E8%AF%91%E5%92%8C%E8%BF%90%E8%A1%8C%E7%A8%8B%E5%BA%8F
安装插件
sudo apt-get install gedit-plugins sudo apt-get dconf-editor
last update:
2015年11月07日22:46:18
标签:
原文地址:http://www.cnblogs.com/sonack/p/sonack_linux.html