See kb104011 You can modify user environment variables by editing the following Registry key: HKEY_CURRENT_USER \ Environment You can modify system environment variables by editing the following Registry key: HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ Session Manager \ Environment Note that any environment variable that needs to be expanded (for example, when you use %SYSTEM%) must be stored in the registry as a REG_EXPAND_SZ registry value. Any values of type REG_SZ will not be expanded when read from the registry. Note that RegEdit.exe does not have a way to add REG_EXPAND_SZ. Use RegEdt32.exe when editing these values manually. However, note that modifications to the environment variables do not result in immediate change. For example, if you start another Command Prompt after making the changes, the environment variables will reflect the previous (not the current) values. The chan...
I've recently signed up with Singtel's mobile broadband, which uses a BandLuxe C179 HSDPA USB modem. Hers's how I set it up on Ubuntu 9.10: Download Linux driver from http://www.bandrich.com. The file name of the download "C270-Eee-PC_Linux-driver.zip" suggests it's intended for C270. The product id in bandluxe.fdi is wrong, change it to: <match key="usb.vendor_id" int="0x1a8d"> <match key="usb.product_id" int="0x1009"> The kernel module option.ko that comes with the driver doesn't work with 2.6.31 kernel. And we don't need it anyway, so comment out its installation from eeepc3g.sh: #echo "Backup file option.ko" #cp -v ${MODDIR}/kernel/drivers/usb/serial/option.ko ./option-eeepc.ko #echo "Add support of Bandluxe Data Card" #cp -v option-bandluxe.ko ${MODDIR}/kernel/drivers/usb/serial/option.ko Install the driver: $ sudo ./eeepc3g.sh $ sudo modprobe option Plug in the modem. $ lsusb...
Comments