4.1.
|
How do I install the 3D Nvidia video card driver? |
|
|
4.2.
|
How do I disable the Nvidia graphics logo on startup? |
|
|
4.3.
|
How do I install the 3D ATI video card driver? |
|
-
Install the xorg-driver-fglrx package with Synaptic (See How do I use Synaptic to install packages?)
Miscellaneous - Graphical (restricted) > xorg-driver-fglrx
echo fglrx | sudo tee -a /etc/modules
sudo depmod -a ; sudo modprobe fglrx
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
sudo sed -i -e 's/"ati"/"fglrx"/' /etc/X11/xorg.conf
-
If you are using an NForce2-based motherboard you will also need to do the following:
sudo gedit /etc/X11/xorg.conf
Change “Section "Device"” add the following line:
Option "UseInternalAGPGART" "no"
Restart your machine for changes to take effect.
|
4.4.
|
How do I identify a modem chipset? |
|
|
4.5.
|
How do I install Winmodem/Linmodem Drivers? |
|
https://www.linmodems.org/
|
4.6.
|
How do I configure PalmOS devices? |
|
-
sudo gedit /etc/udev/rules.d/10-custom.rules
-
Insert the following line into the new file
BUS="usb", SYSFS{product}="Palm Handheld*", KERNEL="ttyUSB*", NAME{ignore_remove}="pilot", MODE="666"
Save the edited file (sample/10-custom.rules_configurepalmosdevices)
->->
Follow the instructions on screen
|
4.7.
|
How do I check disk space usage and view the partition table? |
|
Launch
->->
Select the Harddrive, then the Partitions tab
Each partition will be listed under Partition List, with disk space and mount point.
|
4.8.
|
How do I list mounted devices? |
|
|
4.9.
|
How do I list PCI devices? |
|
|
4.10.
|
How do I list USB devices? |
|
|
4.11.
|
How do I speed up CD/DVD-ROM access (enable DMA)? |
|
Assuming that /dev/cdrom is the location of
CD/DVD-ROM
-
sudo hdparm -d1 /dev/cdrom
sudo cp /etc/hdparm.conf /etc/hdparm.conf_backup
sudo gedit /etc/hdparm.conf
-
Append the following lines at the end of file
/dev/cdrom {
dma = on
}
Save the edited file (sample/hdparm.conf_speedupcddvdrom)
|
4.12.
|
How do I mount/unmount CD/DVD-ROMs manually, and show all
hidden and associated files/folders? |
|
Assuming that /media/cdrom0/ is the location
of CD/DVD-ROM
-
To mount CD/DVD-ROM
sudo mount /media/cdrom0/ -o unhide
-
To unmount CD/DVD-ROM
sudo umount /media/cdrom0/
|
4.13.
|
How do I forcefully unmount CD/DVD-ROMs manually? |
|
|
4.14.
|
How do I remount /etc/fstab without rebooting? |
|
|