15 Aralık 2011 Perşembe

Extending disk in a virtual machine running Red Hat or OEL


Purpose

This article provides steps for extending the root partition residing in a logical volume created with Logical Volume Manager (LVM) in a virtual machine running Red Hat/Oracle Enterprise Linux.

Resolution

To extend the logical volume:

Note: These steps only apply to EXT3 file systems.
 
Caution: VMware recommends having a complete backup of the virtual machine prior making these changes.
  1. Power off the virtual machine.
  2. Edit the virtual machine settings and extend the virtual disk size. For more information, see Increasing the size of a virtual disk (1004047).
  3. Power on the virtual machine.
  4. Identify the device name, which is by default /dev/sda, and confirm the new size by running the command:
    fdisk -l
  5. Create a new primary partition:
    1. Run the command:
      fdisk /dev/sda (depending the results of the step 4)
       
    2. Press p to print the partition table to identify the number of partitions. By default there are 2: sda1 and sda2.
    3. Press n to create a new primary partition. 
    4. Press p for primary.
    5. Press 3 for the partition number, depending the output of the partition table print.
    6. Press Enter two times.
    7. Press w to write the changes to the partition table.
  6. Restart the virtual machine.
  7. Run this command to verify that the changes were saved to the partition table and that the new partition has an 83 type:

    fdisk -l
  8. Run this command to convert the new partition to a physical volume:

    pvcreate /dev/sda3
  9. Run this command to extend the physical volume:

    vgextend VolGroup00 /dev/sda3
  10. Run this command to verify how many physical extents are available to the Volume Group:
    vgdisplay VolGroup00 | grep "Free"
  11. Run the following command to extend the Logical Volume:

    lvextend -L+#G /dev/VolGroup00/LogVol00

    Where # is the number of Free space in GB available as per the previous command.
  12. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:

    ext2online /dev/VolGroup00/LogVol00
    Note: Use resize2fs instead of ext2online if it is not a Red Hat virtual machine.
  13. Run the following command to verify that the / filesystem has the new space available:

    df -h /

21 Temmuz 2011 Perşembe

yum server

Oracle Linux 4
Oracle Linux 5
Oracle Linux 6
http://public-yum.oracle.com/
OEL5 için örnek kurulum;
# cd /etc/yum.repos.d
# wget http://public-yum.oracle.com/public-yum-el5.repo
# yum list
# yum install firefox

9 Kasım 2010 Salı

SVN yedek

Öncelikle svn i daha önceden anlattığım winscp scripti ile linux sunucu üzerine windows task manager ile belirli aralıklarla yedekliyorum.sonra arşivlemek için
linux un crontab ını ve tar komutunu kullanıyorum

crontab -e
vi ile crontabı editlemek için

crontab -l
crontab dosyasını görüntülemek için kullanıyoruz.

önce arşivleme yapacak sh dosyamızı hazırlıyoruz.
içeriği aşağıdaki gibi oluyor.
cd /home/oracle/svn_yedek
tar -zcvf /home/oracle/svn_yedek_arsiv/$(date +%Y%m%d_saat_%H_%M).tar.gz .



burada $(date +%Y%m%d_saat_%H_%M) kısmı dosyaya dinamik isim vererek birbirini ezmemesini sağlamıştır.


daha sonra bu sh komut dosyasını crontab -e ile açtığımız dosyaya
aşağıdaki gibi ekliyoruz
* * * * * /home/oracle/svn_yedek_arsiv/backup.sh

bu her dakika çalış demek

ayrıntılı scheduling için aşağıdaki linklere bakabilirsiniz
http://www.netadmintools.com/art9.html
http://kevin.vanzonneveld.net/techblog/article/schedule_tasks_on_linux_using_crontab/



daha sonra