Archive for January, 2011

How to use Linux dd with USB drive

The USB Drive needs to be unmounted. If the USB Drive is automatically mounted, unmount it.

Type dmesg to see what device to use to access the USB Drive.
Example: … [sdc] Attached SCSI removable device
This mean the USB drive is /dev/sdc

Erase the USB drive by running the following command:
dd if=/dev/zero of=/dev/sdc bs=65536 count=10000

Extract the Name_Of_The_File.dd to the USB Drive:
dd if=Name_Of_The_File.dd of=/dev/sdc

Be the first to comment  Posted by Ferdy - January 12, 2011

Categories: Linux   Tags: ,

VMware Abbreviations

VMware Abbreviations and Terminologies:

vSphere – Virtualtizes the entire IT infrastructure.
ESX / ESXi – Virtualization layer on physical servers. ESX contains a built-in service console.
vCenter Server – Central point for configuring and managing virtualized environments.
vShere Client – Interface to vCenter Server or ESX\ESXi from Windows PC.
vSphere Web Access – Web interface access to remote consoles.
VMFS – VMware Virtual Machine File System.
HA – VMware Hight Availability.
DRS – VMware Distributed Resource Scheduler.
vDS – vNetwork Distributed Switch.
PSA – Pluggable Storage Architecture.
database – vCenter Server database.
datastore – Storage for the managed host.
dsk# – Storage disk for the managed host.
hostn –  vCenter Server managed hosts.
SAN – Storage area network type datastore shared between managed hosts.
tmplt – Template.
user# – User with access permissions.
VC – vCenter Server.
VM# – Virtual machines on a managed host.
.vmdk – Virtual Disk file.

1 comment  Posted by Ferdy - January 4, 2011

Categories: VMware   Tags: , ,

FCoE Configuration RHEL 6

Process of installing FCoE on RHEL 6, post install.

1. Add package fcoe-util.x86_64, this package is included in the RHEL6 GA DVD.

2. Configure FCoE ( I used eth4).
#cd /etc/fcoe/
#cp cfg-ethx cfg-eth4

3. Start lldpad
#service lldpad start

4. Configure DCB
#dcbtool sc eth4 dcb on
#dcbtool sc eth4 app:fcoe e:1

5. Start FCoE
#service fcoe start

6. Assign an IP address to eth4 (optional for FCoE)

7. Check FCoE status
fcoeadm –i

8.Setup lldpad and fcoe to start when booting
# chkconfig lldpad on
# chkconfig fcoe on

Be the first to comment  Posted by Ferdy - January 3, 2011

Categories: Data Storage, Linux, RHEL   Tags: , , , , ,

Next Page »