- openoffice.org-core
- openoffice.org-calc
- openoffice.org-base
- openoffice.org-draw
- openoffice.org-impress
- openoffice.org-langpack-es
- openoffice.org-writer
- hunspell-es
- openoffice.org-extendedPDF
Tuesday, August 2, 2011
Installing Open office
Monday, August 1, 2011
Installing VLC player
Saturday, July 16, 2011
Automatic installation using kickstart method
Thursday, July 7, 2011
Yum Configuration
1) check the vsftpd is intalled or not
# rpm -qa | grep vsftpd
If vsftpd not installed then install it
# rpm -ivh ftp://192.168.0.254/pub/Server/vsftpd* --force
2) check the createrepo is intalled or not
# rpm -qa | grep createrepo
If createrepo not installed then install
# rpm -ivh ftp://192.168.0.254/pub/Server/createrepo* --force
3) If you Linux OS software package is avaliable at remote location(192.168.0.254:/var/ftp/pub/) then mount to /mnt:
# mount 192.168.0.254:/var/ftp/pub/ /mnt/
# cp -avf /mnt/* /var/ftp/pub/
# umount /mnt
If you have Linux OS cd/dvd then type:
# mount /dev/cdrom /mnt
# cp -avf /mnt/* /var/ftp/pub/
# umount /mnt
For display the size of /var/ftp/pub continuously:
# watch du -h /var/ftp/pub
4)Copy grouping files:
# cp /var/ftp/pub/Server/repodata/comps-rhel5-server-core.xml /root
# cp /var/ftp/pub/VT/repodata/comps-rhel5-vt.xml /root
5)Clear the old repos:
# rm -rf /var/ftp/pub/Server/repodata
# rm -rf /var/ftp/pub/VT/repodata
6)Repo creation :
# createrepo -g /root/comps-rhel5-server-core.xml -v /var/ftp/pub/Server
# createrepo -g /root/comps-rhel5-vt.xml -v /var/ftp/pub/VT
7) Create a file called server1.repo at /etc/yum.repos.d
For server:
-----------
vi /etc/yum.repos.d/server1.repo
[Server]
name=Server1 Server Repository
baseurl=file:///var/ftp/pub/Server
gpgcheck=0
# This one is needed for xen packages
[VT]
name=Server1 VT Repository
baseurl=file:///var/ftp/pub/VT
gpgcheck=0
8) Create a file called client.repo at /etc/yum.repos.d
For client:
-----------
# vi /etc/yum.repos.d/client.repo
[Server]
name=Server1 Server Repository
baseurl=ftp://192.168.0.254/pub/Server
gpgcheck=0
# This one is needed for xen packages
[VT]
name=Server1 VT Repository
baseurl=ftp://192.168.0.254/pub/VT
gpgcheck=0
9) checking the list of packages
# yum clean all
# yum list
Please feel free to comment to make it more useful to everyone.
Read more...
Friday, May 6, 2011
How to setup a public YUM server for Oracle RPMs
It is very useful to install this public YUM server in our Oracle installations, either if they are Enterprise Linux, RedHat or just use RPMs.
# wget http://public-yum.oracle.com/public-yum-el5.repo
vi public-yum-el5.repo
Change enabled=0 to enabled=1 from the repository you need.
yum list
yum install firefox