VMware Cloud Community
UsusalSuspect
Contributor
Contributor
Jump to solution

How to install additional driver on ESXi 4.0 U1

Hi there...

i got a lil problem with my ESXi 4.0.0 build-219382. I implemented a new NIC "Intel E1G44ET"

This NIC shoud be supported. If i understand it right, i have to install additional drivers on my ESXi Server.

I found a "how to" on the vmware webpage:

1. Power on the ESX or ESXi host.

2. Place the driver CD in the CD-ROM drive of the host where either the vSphere CLI package is installed or vMA is hosted.

3. Mount the driver CD.

4. Navigate to <cd mount point>/offline-bundle/ and locate the INT-intel-lad-ddk-igb-1.3.19.12-offline_bundle-166506.zip file.

5. Run the vihostupdate command to install drivers using the offline bundle.

vihostupdate <conn_options> --install --bundle INT-intel-lad-ddk-igb-1.3.19.12-offline_bundle-166506.zip

My Problem is, i dont know how to do Step. 3 "Mount the driver CD" in shell.

Is there a how-to you may link, or tell me a easy way how to bring the nic "online"?

thanks a lot 4 ur help!

0 Kudos
1 Solution

Accepted Solutions
Yann77
Enthusiast
Enthusiast
Jump to solution

Hi,

(just edited the message, the cdrom can be mounted from both /dev/cdrom and /dev/cdrom-hda in my vma)

Here is what I had to do to mount the iso and install the driver on my vSphere Management Assistant console:

First, I attach the iso using vSphere client on my VMA vm. then:

sudo mkdir /media/cdrom

sudo mount /dev/cdrom-hda /media/cdrom

vihostupdate --server <ipaddress.or.fqdn> --install --bundle /media/cdrom/offline-bundle/INT-intel-lad-ddk-igb-1.3.9.19.12-offline_bundle-166506.zip

It will ask for the username password and install the update. Then reboot the ESXi .

If your vMA does not make available the /dev/cdrom, you could deploy the OVF in a new vm and try again.

HTH,

Yann

Message was edited by: Yann77

View solution in original post

0 Kudos
8 Replies
DSTAVERT
Immortal
Immortal
Jump to solution

From the command line on the vMA

>mount /dev/cdrom /mnt

Step 4 would then be

>cd /mnt/offline-bundle/ and locate the INT-intel-lad-ddk-igb-1.3.19.12-offline_bundle-166506.zip

-- David -- VMware Communities Moderator
0 Kudos
UsusalSuspect
Contributor
Contributor
Jump to solution

Hi,

problem is, there is no "/dev/cdrom"!! so, if i type "mount /dev/cdrom /mnt" (i created the folder "/mnt" before) iget the respons

"mount: mounting /dev/cdrom on /mnt failed: no such file or directory"

0 Kudos
DSTAVERT
Immortal
Immortal
Jump to solution

Type dmesg at the command prompt.

The last events should show you what device the cdrom is using.

-- David -- VMware Communities Moderator
0 Kudos
UsusalSuspect
Contributor
Contributor
Jump to solution

Smiley Sad

„dmesg: not found“

0 Kudos
UsusalSuspect
Contributor
Contributor
Jump to solution

i guess i found the cdrom drive on:

/vmfs/devices/genscsi/mpx.vmhba0:C0:T1 (thats the path if i mount the physic CD -Rom to a virtual machine)

i created a folder:

mkdir /mnt/cdrom

changed the attrib:

chmod 777 /mkdir/cdrom

and tryed to mount:

mount /vmfs/devices/genscsi/mpx.vmhba0:C0:T1 /mnt/cdrom

NO SUCH FILE OR DIRECTORY

0 Kudos
Yann77
Enthusiast
Enthusiast
Jump to solution

Hi,

(just edited the message, the cdrom can be mounted from both /dev/cdrom and /dev/cdrom-hda in my vma)

Here is what I had to do to mount the iso and install the driver on my vSphere Management Assistant console:

First, I attach the iso using vSphere client on my VMA vm. then:

sudo mkdir /media/cdrom

sudo mount /dev/cdrom-hda /media/cdrom

vihostupdate --server <ipaddress.or.fqdn> --install --bundle /media/cdrom/offline-bundle/INT-intel-lad-ddk-igb-1.3.9.19.12-offline_bundle-166506.zip

It will ask for the username password and install the update. Then reboot the ESXi .

If your vMA does not make available the /dev/cdrom, you could deploy the OVF in a new vm and try again.

HTH,

Yann

Message was edited by: Yann77

0 Kudos
UsusalSuspect
Contributor
Contributor
Jump to solution

jap, that works fine!

small step for u, but giant for me Smiley Wink

0 Kudos
Yann77
Enthusiast
Enthusiast
Jump to solution

Glad to help. I am learning too Smiley Happy .

0 Kudos