Tech Resources
Monday, July 5, 2010
Thursday, July 1, 2010
Dowloading source RPM in fedora
Some time we need source rpm to build custom rpm. You can download source rpm via yum in fedora.
To download source rpm of firefox in tmp folder.
#cd /tmp
#yum install yum-utils -y
#yumdownloader --enablerepo=rpmfusion-free-rawhide --source firefox
#ls
firefox-3.6.4-1.fc13.src.rpm
Labels: downloading source rpm via yum, downloading source rpm via yum fedora13, fedora 13, rpm, source rpm, yum
Tuesday, June 1, 2010
VNC Server on Fedora 13
We have covered installation of Real VNC server on CentOS. Now we are going to setup VNC server on Fedora 13.
Note: commands run by root user are denoted by #
commands run by normal user are denoted by $
Installing VNC Server:
#yum install -y tigervnc tigervnc-server
Configuring VNC Server for user vidyadhar:
#echo 'VNCSERVERS="1:vidyadhar"' >> /etc/sysconfig/vncservers
Before starting vncserver as a service, let's create a vnc password with vncpasswd command.
[vidyadhar@vidyadhar ~]$vncpasswd
Password:
Verify:
Now let's start vncserver as a service.
#service vncserver start
So how do I connect to vncserver? Use vncviewer command in vnc client as following.
[vidyadhar@vidyadhar ~]$ vncviewer localhost:1
Labels: fedora 13, installing vnc on fedora 13, tiger vnc, tiger vnc on linux, vnc server on fedora 13