fedora19安装tigervnc、wireshark的过程总结

时间:2021-08-21 20:32:28

公司用代理上外网,一开始yum源都用不了。

后来把163、sohu的源也加了,也用ccproxy代理出去了,但是yum就是不能用,郁闷...

干脆下了一个fedora19的安装盘,DVD,4个G

下载链接在这:http://pan.baidu.com/share/link?shareid=906660876&uk=3994249334&fid=1800937106

下完之后将iso光盘里面的文件拷到home/fedora下面,

cd /home/fedora19/Packages/c/

rpm -ivh createrepo

会要求安装pythonxx和deltaxx的依赖包,按其要求安装,如果有冲突,那么卸载之前的版本,安装光盘里面的版本;

然后到/home/fedora19/Packages/下面,执行createrepo -v .建立索引

然后cd /etc/yum.repos.d/目录下面,创建你自己的repo,比如local.repo

[local]
name=Local Yum repo
baseurl=file:///home/fedora19/Packages
enabled=1
gpgcheck=0

 

好了,接下来可以用yum安装了;

yum install tigervnc -y

yum install tigervnc-sever -y

tigervnc的配置,见链接:http://www.tuicool.com/articles/2AV7VjA

 

安装wireshark,注意光盘里面没有这个包,到pbone.net搜索下载:

http://rpm.pbone.net/

wireshark-1.8.6-4.fc19.x86_64.rpm
wireshark-gnome-1.8.6-4.fc19.x86_64.rpm

放到/home/fedora19/Packages下面,然后刷新一下repo就可以安装了

yum install wireshark -y

yum install wireshark-gnome -y