Linux软件安装及卸载
查询软件完整名称
格式:rpm -qa 部分文件名
例如:shell>rpm -qa firefox
firefox-3.0.5-l.e15.centos
会列出火狐浏览器的全称。一般安装包都会包含版本号。
查询软件安装目录
格式:rpm -ql 完整软件名
例如:rpm -ql firefox-3.0.5-l.e15.centos
安装rpm包
格式:rpm -ivh 软件包
例如:rpm -ivh firefox-3.0.5-l.e15.centos.tar.gz
卸载rpm包
格式:rpm -e 软件名称
例如:rpm -e firefox-3.0.5-l.e15.centos
更新rpm包
格式:rpm -U 软件名称
例如:rpm -U firefox-3.0.5-l.e15.centos.rpm
如果已经安装就更新,否则安装
相关文档:
vi -r filename :在上次正用vi编辑时发生系统崩溃,恢复filename
移动光标命令
h:光标左移一个字符
l :光标右移一个字符
j :光标下移一行
k:光标上移一行
^ :行开始处
$
:行结束处
gg:移动到文件的开头
G :移动到文件的末端
[Ctrl] f : 翻页。
[Ctrl]
b:往回翻页。
修 ......
=================文件操作==================
不使用find直接使用通配符对文件操作:
cp ./*/*attch* /testout_attch/
文件内容显示
head/tail:
## (1) displays the first 6 lines of a file
head -6 readme.txt
## (2) displays the last 25 lines of a file
tail -25 mail.txt
# ......
dns
/etc/resolv.conf
主机名
1)#hostname tt.com
2)/etc/sysconfig/network中的hostname
3)修改/etc/hosts文件
=>sendmail->/etc/mail/local-host-names
gateway
etc/sysconfig/network
ip
/etc/sysconfig/network-scripts/ifcfg-eth0
1. 变更当前主机名
两种方法: echo new-hostname > /proc/s ......
理论上,本文适用于boost的各个版本,尤其是最新版本1.39.0;适用于各种C++编译器,如VC6.0(部分库不支持),VS2003,VS2005,VS2008,gcc,C++ Builder等。先总结一下Windows系统。
一、下载
首先从boost官方主页http://www.boost.org/下载最新版boost安装包(目前最新版是1.39.0)。因为boost一部分类是需要编译成库才 ......