The following link is how to use CentOS5 Installation DVD as YUM Repository to install packages locally.
http://netlynker.blogspot.sg/2012/01/centos5-installing-softwares-from.html
For CentOS version 6, you can follow above link except that you have to use "c6-media" instead of "c5-media" as below -
yum --disablerepo=\* --enablerepo=c6-media update
yum --disablerepo=\* --enablerepo=c6-media search <package name>
yum --disablerepo=\* --enablerepo=c6-media install <package name>
:D
Some of my experiences related to Opensources such as Linux, Python programming, Bash Shell Scripting.....
Tuesday, September 25, 2012
Monday, September 24, 2012
Office 2007(Word/Powerpoint/Excel/Visio) On Ubuntu 12.04 with PlayOnLinux
Finally, I can use Visio on my notebook that is running Ubuntu 12.04. I use a wine wrapper called PlayOnLinux to install Office 2007 and Visio. You can download PlayOnLinux from http://www.playonlinux.com/en/download.html
Here are some screenshots for your appetite -
May the source be with you!!!
Here are some screenshots for your appetite -
May the source be with you!!!
Sunday, September 2, 2012
Saturday, January 21, 2012
ClusterSSH : Working With Multiple SSH Sessions Concurrently.
Requirement -
- General Purpose Linux OS (Mine is Fedora 16)
- Internet Connection
- Brain
Lately when I am doing testing with multiple Linux Servers, I need to ssh into a few servers and manage them simultaneously. And I get tired of typing same commands on the servers one after another. For example, If I want to change gateway on all servers. I have to ssh to server , edit the config and restart network service on all servers.
I use a program called "ClusterSSH" to do that. It let you manage multiple servers via SSH concurrently.
Install ClusterSSH
sudo yum install clustersshNow ClusterSSH is ready on your system. Connect to multiple systems.
cssh server1 server2Congrat! Now you can be lazy like me too. :P. I attached the screenshot to poke your interest.
Friday, January 20, 2012
CentOS5 - Installing Softwares From Installation Media
Requirement :
Update YUM database
Oops! I almost forget. Here is how to unmount the media
- Installation Media (DVD or ISO)
- Brain
Mounting Media DVD or ISO
Create the directory to mount.
mkdir -p /media/CentOSMount DVD to created directory, if you are using DVD.
mount -t auto /dev/cdrom /media/CentOSMount ISO to created directory, if you are using ISO.(assuming ISO file is in /root/ directory)
mount -t iso9660 -o loop /root/CentOS-5.7-i386-bin-DVD-1of2.iso /media/CentOSInstalling softwares from mounted DVD or ISO
Update YUM database
yum --disablerepo=\* --enablerepo=c5-media updateSearch and Install Software
yum --disablerepo=\* --enablerepo=c5-media search nmap
yum --disablerepo=\* --enablerepo=c5-media install nmap -yCONGRATULATION!
Oops! I almost forget. Here is how to unmount the media
umount /media/CentOS
Subscribe to:
Posts (Atom)