basic setup enterprise iscsi target centos
- No Comments
- Nov, 26, 2009
- Angelo Schalley
- Linux
first of all : yum update -y
reboot
yum install kernel-devel openssl-devel gcc rpm-build
mkdir /usr/src/iscsitarget
mkdir /data/iscsidisks
cd /usr/src/iscsitarget
wget “http://downloads.sourceforge.net/project/iscsitarget/iscsitarget/1.4.19/iscsitarget-1.4.19.tar.gz?use_mirror=kent” or get the latest on sourceforge
tar xfz iscsitarget-1.4.19.tar.gz
Read more on basic setup enterprise iscsi target centos…
How do I use dd command to create an ISO image?
- No Comments
- Nov, 17, 2009
- Angelo Schalley
- Linux
Put CD into CDROM
Do not mount CD. Verify if cd is mounted or not with mount command:
# mount
If cd was mouted automatically unmout it with umount command:
# umount /dev/cdrom
Read more on How do I use dd command to create an ISO image?…
default network config redhat centos ifcfg-eth0
- No Comments
- Oct, 26, 2009
- Angelo Schalley
- Linux
#!/bin/sh
#>>>Device type: ethernet
#>>>Variable declarations:
DEVICE=eth0
IPADDR=192.168.0.2
NETMASK=255.255.255.0
NETWORK=192.168.0.0
BROADCAST=255.255.255.255
GATEWAY=192.168.0.1
ONBOOT=no
#>>>End variable declarations