Thursday, May 17, 2012

The Oracle Public Yum Site

I needed to access to latest oracle public yum site recently...here it is
http://public-yum.oracle.com/

Tuesday, May 15, 2012

mounting an ISO image on FreeNAS 8.0.4


mkdir /mnt/backup1/cdrom
mdconfig -a -t vnode -o readonly -f /mnt/backup1/my.iso
mount -t cd9660 /dev/md? /mnt/backup1/cdrom
To Remove:
umount [mount destination]
mdconfig -d -u /dev/md?

Sunday, May 13, 2012

To mount an NFS share on OEL5/6


I use this to mount my FreeNAS 8.0.4 NFS share onto my OVM hypervisor for backups:


mount -t nfs 192.168.1.3:/mnt/backup1 /nfsshare