VMWare 7.1 – no /dev/vmnet0
Aug 11
Linux System Administration No Comments
A frustrating error with VMWare:
“Ethernet0: can’t open vmnet device /dev/vmnet0″
Solution is to run ‘vmware-netcfg’ and save, then the problem is fixed until next reboot.
Software Development and Linux Systems
Aug 11
Linux System Administration No Comments
A frustrating error with VMWare:
“Ethernet0: can’t open vmnet device /dev/vmnet0″
Solution is to run ‘vmware-netcfg’ and save, then the problem is fixed until next reboot.
Jul 16
Linux General, Linux System Administration, Useful Utilities No Comments
When reading/writing a disk image using Linux tool ‘dd’ launch as follows:
dd if=/dev/sdb of=filename.img & pid=$!
this will run ‘dd’ in the background.
To see the progress:
kill -USR1 $pid
Notes:
Thanks to Cian.
Jul 16
Linux General, Linux System Administration No Comments
Shutdown and remove the hard disk, then connect to a separate PC with VirtualBox (virtualbox-ose) installed.
The virtual machine should now be ready to run in VirtualBox.
To import into VMWare, create a new virtual machine and virtual hard disk. Overwrite the new Virtual Hard disk by copying the VMDK file created earlier, into its place.
May 04
Linux System Administration No Comments
A warning to all: audio does not work full-duplex when calling from a VPoint (VCON Emblaze) H323 client -> GNUGK -> Asterisk-oh323 -> SIP client. Tested with versions 8 and 10.
However audio works perfectly in the other direction.
The solution would appear to be to use OOH323. However the audio is again half duplex in the scenario where SIP clients are calling H323 clients.
Therefore calls originating from Asterisk to H323 clients use the ‘OH323′ module, and calls from GNUGK into Asterisk use the ‘OOH323′ module.
Apr 27
Linux System Administration No Comments
With some bash scripts it can be useful to have them exit as soon as a command fails. To accomplish this have the following just after the “#!/bin/bash” line:
set -o errexit
This will cause the script to exit as soon as any command or program returns an exit status not equal to zero.
Thanks to Rory.