วันจันทร์ที่ 23 สิงหาคม พ.ศ. 2553

How to : Mount ISO file by RHEL 5

How to : Mount ISO file by RHEL5


root# mkdir -p /mnt/iso
root# mount -o loop /dir/rhel5u4.iso /mnt/iso
root# cd /mnt/iso
root# ls -l

วันอังคารที่ 18 พฤษภาคม พ.ศ. 2553

Convert .VCE file to printable format

Many people have a question in .vce file about , Can it print. Easy way capture screen and paste to word,it not smart way.I recommend smart way to convert , so easily.In virtual suite exam has
a designer tool for print .vce . Step in below line

1.Click designer icon (or in program file > Virtual suite exam > designer)
2.Go to file>import
3.Choose .vce and import it to program
4.Done! you can print it , go to file>print

If you had any problem , please tell me

วันพุธที่ 13 มกราคม พ.ศ. 2553

Local yum repository

Local yum repository

If you need to use rpm package in DVD redhat instead of RHN you must use yum local technic as below

1.Create folder below /mnt for mount dvd
#mkdir /mnt/dvd

2.Create folder for keep content from dvd
#mkdir /software/Server

3. Insert DVD redhat and mount it
#mount /dev/dvd /mnt/dvd

4.copy all rpm file in /mnt/dvd/Server path to specific folder
#cp -rv /mnt/dvd/Server /software/Server

5.Install createrepo.rpm package from /software/Server
#rpm -ivh createrepo.0.4.11-3.el5.noarch.rpm

6.run command creatrepo with rpm local directory
#createrepo /software/Server

7.Edit .repo file in yum directory
#vi /etc/yum.repos.d/rhel-debuginfo.repo

[rhel-debuginfo]
baseurl=file:///software/Server
enabled=1

8.Clean yum
#yum clean all

Finally please test for successfull
9.Test with yum command
#yum list wc -l
may be up to 2300 package

If you have any comment and feedback please give it to me for next better article ^3^