The following section contains frequently asked questions for Debian GNU/Linux distribution system applying to products supplied by Linuxvillage Inc in Canada. Although these information are specific to our systems, it may also work for other Linux distribution systems.
The disclosure here is made in the spirit of Free Software so that users can help themselves and their neighbours. All material presented are licensed under The GNU Free Documentation License.
Doom3 or Quake4 no sounds or terrible, metalic sounding.
In Doom3 or Quake4 switch the sound to stereo in system settings.
Use OSS rather than ALSA. Start up doom3 or quake4 with the following parameter +set s_driver oss
, the oss setting will be saved for next time.
$ doom3 +set s_driver oss
Updated: 2007-04-04
Tried running dos from GNOME menu but it won't start.
Start Applications->Accessories->Terminal, then enter xdosemu. When prompted for license acceptance type yes
and press enter. Type exit when finished.
Try again from GNOME menu.
$ xdosemu
For additional information, check out freedos.org.
Updated: 2007-04-04
I want Firestarter firewall to launch automatically when I login to my session, how do I do that?
firestarter, add users to the group. e.g.
$ su # addgroup firestarter # adduser johnny firestarter
# visudoThen append the file with the following line and press Ctrl-x to exit visudo. Type
exitagain to leave the terminal session.
%firestarter ALL=NOPASSWD: /usr/sbin/firestarter
Startup Programstab. Press the <+Add> button and insert the following command. Press <Close> when finished, logout and login to test.
sudo /usr/sbin/firestarter
Updated: 2007-04-23
How do I update the BIOS without a floppy disk or MS Windows?
The following instruction will create a bootable DOS CD with bios flash tool and image for updating. The draw back of this method vs. a floppy disk is the inability to save the current BIOS image prior to updating.
|
| Warning: BIOS update is a risky procedure and may render your machine unusable. Make sure you have the correct BIOS version for your machine. Use with Care. |
Prerequisite: BIOS update tool for DOS and BIOS image from manufacturer website., CD writer, loop back device support in kernel module and FDOEM.144.gz.
Download FDOEM.144.gz from FREEDOS Ripcord BootDisk and uncompress into working directory.
$ gunzip FDOEM.144.gz
Go into the Root Terminal and create a temporary directory in /mnt
. Load the loopback module and mount the dos file system in /mnt/temp
.
# mkdir /mnt/temp # modprobe loop # mount -o loop -t vfat FDOEM.144 /mnt/temp
Copy the BIOS Flash tools and new BIOS image into /mnt/temp
# cp ...
Finally, umount the image and write to a blank CD.
# umount /mnt/temp # mkisofs -o Bootable-CD-image.iso -b FDOEM.144 FDOEM.144
Please read references for further details.
Updated: 2007-04-04
While reloading in Synaptic Package Manager a message appears: W: GPG error: http://... Release:
The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 946AA6E18722E71E
.
# getpubkey.sh 8722e71eMake sure to replace the 8 digit pubkey from your message.
gpg: directory `/root/.gnupg' created ... gpg: requesting key 8722E71E from hkp server pgp.mit.edu gpg: key 8722E71E: duplicated user ID detected - merged gpg: /root/.gnupg/trustdb.gpg: trustdb created gpg: key 8722E71E: public key "Christian Marillat" imported gpg: no ultimately trusted keys found gpg: Total number processed: 1 gpg: imported: 1 OK
exitto leave terminal. Restart Synaptic Package Manger and reload to check.
note: getpubkey.sh is hack from linuxvillage and is available from the download section.
Updated: 2007-04-04
Bootsplash Progress Bar won't work, how do I fix it?
--dry-run.
# cat rc.patch | patch -p0 /etc/init.d/rc --dry-run
note: this patch depends on sysv-rc
, the applied patch can be overwritten by an update in sysv-rc
and the user may have to re-apply the patch subsequently.
Updated: 2007-05-30
Logitech's diNovo Edge keyboard touchpad don't work in Debian Etch, how do I fix it?
--dry-run.
$ cd /usr/src/linux/drivers/usb/input $ cat /usr/src/hid.h.diff | patch -p0 --dry-run $ cat /usr/src/hid-input.c.diff | patch -p0 --dry-run $ cat /usr/src/hid-core.c.diff | patch -p0 --dry-run
credit: skylark in linux-usb-users.
Updated: 2008-01-01