Aimy

走向linux之必备软件

首先说明我用的是Ubuntu 12.04 STL
-----------------
gcc c编译器 
用linux的没有不知道gcc的
-----------------
g++ c++编译器 (同上)
vi 编辑器(没用过)

vim 这个编辑器号称“编辑器之神”,不要用普通编辑器的思维来看他,他有他的强大之处,不过比较难上手,上手后据说就放不下手了(看不上别的编辑器了),我也是使用vim不久
ibus 输入法管理器
pinyin 我用的拼音输入法
Wireshark 网络抓包工具 
Chromium 浏览器chrome的祖先
------------------
Codelite 比较好用的IDE 
linux下要学会放弃IDE,vim + gcc / g++ ,linux下确实没有windows 下vs那么好用的IDE,不过这个确实不错了,自动完成什么的都有。。。
------------------
SMPlayer 一款视频播放器 
我没用过,不看视频
------------------
vlc 一款音乐播放器 
这个倒是用过, 还不错
------------------
goldenDict 辞典
stardict 一款开源辞典 
这个好多人说他很强大,是开源的,但是没有windows下的那个有道辞典方便,好吧,linux要是像windows那么方便易上手,哪里还有微软的立足之地。。
不过上手后,效率就不是windows点鼠标能比的了
------------------
chmsee 一款chm查看工具 
这个挺不错
------------------
unrar 解压工具 
unzip 解压工具
------------------
LibreOffice 开源office办公套件(自带) 
不用说,windows版本也有,这个office你反正不能用微软的吧,再说了,尽量少用盗版吧,谁让自己也是开发软件的呢(未来),自己都发扬盗版
还指望谁用正版。(自我检讨中。。。),不过谁让咱穷呢, 现在物价上升,地球就要生存不下去了。。。

wine 模拟器软件

刚刚步入Linux,难免要有时利用一下Windows的程序资源,Wine提供了一个用来运行Windows程序的平台。

------------------一些命令---------------
apt-get update 升级软件列表;
apt-get install 安装新软件包

安装软件吗sudo apt-get install (软件名)

安装软件之前最好修改一下源,默认源在欧洲吧?反正很慢(-_-)
注:路径/etc/apt/sources.list的文件是存放源地址的文件
备份原来的源:sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 
修改源: sudo gedit /etc/apt/sources.list
然后将:
#----------我是分割线-------
#网易的源(速度很快)
deb http://mirrors.163.com/ubuntu/ precise main universe restricted multiverse
deb-src http://mirrors.163.com/ubuntu/ precise main universe restricted multiverse
deb http://mirrors.163.com/ubuntu/ precise-security universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/ precise-security universe main multiverse restricted
deb http://mirrors.163.com/ubuntu/ precise-updates universe main multiverse restricted
deb http://mirrors.163.com/ubuntu/ precise-proposed universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/ precise-proposed universe main multiverse restricted
deb http://mirrors.163.com/ubuntu/ precise-backports universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/ precise-backports universe main multiverse restricted
deb-src http://mirrors.163.com/ubuntu/ precise-updates universe main multiverse restricted
#ubuntu.cn99.com源(推荐):
deb http://ubuntu.cn99.com/ubuntu/ precise main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ precise-updates main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ precise-security main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu/ precise-backports main restricted universe multiverse
deb http://ubuntu.cn99.com/ubuntu-cn/ precise main restricted universe multiverse
#----------我是分割线-------
复制到里面替换原来的保存即可。。

sudo 是以管理员权限运行,很多命令需要管理员权限,需要输入密码。
------------------
sudo apt-get autoclean
sudo apt-get clean 清理系统,不影响安装的软件使用
sudo apt-get autoremove

这三个命令主要清理升级缓存以及无用包的。
------------------
apt-get remove 卸载已安装的软件包(保留配置文档)
apt-get –purge remove 卸载已安装的软件包(删除配置文档)
apt-get clean 清理系统,不影响安装的软件使用
apt-get upgrade 更新任何已安装的软件包
apt-get dist-upgrade 将系统升级到新版本
apt-cache search 查找软件包
------------------
dpkg -i xxx.deb 安装deb软件包 
dpkg -r xxx.deb 删除软件包 
dpkg -r --purge xxx.deb 连同配置文件一起删除 
dpkg -info xxx.deb 查看软件包信息 
dpkg -L xxx.deb 查看文件拷贝详情 
dpkg -l 查看系统中已安装软件包信息 
dpkg-reconfigure xxx 重新配置软件包

posted @ 2012-11-25 16:38  一只小小的菜鸟1  阅读(812)  评论(0编辑  收藏  举报