Linux on LaptopsSponsored by LinuxCertified Inc.
|
![]() |
Last updated: 04 May 2005
General Hardware Specifications of ASUS V6800V:
|
Hardware Components
|
Status under Linux
|
Notes
|
| Centrino Processor, 2.13 GHz | Works | No special procedure required during installation. |
| 15" SXGA+ Display | Works | Select Generic LCD Display in Installer |
| Dedicated ATI 64MB Video ( ATI Radeon M X600) | Works | Upgrade XOrg to 6.8.2 (Had to recompile) |
| 1GB, DDRII, 2DIMMs | Works | No special procedure required during installation |
| 80 GB, 5400rpm Hard Drive | Works | No special procedure required during installation |
| Integrated Gigabit Network Card | Works | No special procedure required during installation |
| Integrated IntelPRO Wireless Network Card | Works | Required upgrade of ipw2200 module and firmware |
| Integrated Bluetooth | Works | No special procedure required during installation |
| Internal 56k Modem | Unknown | Don't use dialup so haven't tested |
| 4xDVD+/-Dual Format R/RW burner | Works | No special procedure required during installation |
| Stereo 4-way Surround Sound | Works | No special procedure required during installation |
| Synaptics TouchPad | Works | No special procedure required during installation |
| Firewire Controller | Works I think | Seems to be supported based on log output. I don't have any devices to test though |
| Ricoh MultiCard Reader | Doesn't Work | I gave up |
| Ricoh PCMCIA | Works | No special procedure required during installation |
| Battery | Works | Lasts between 2-3 hours |
This laptop is operating under Kernel version 2.6.8.1-12mdk
# Don't startup eth0 if commandline says not to.
if strstr "$cmdline" noeth0; then
interfaces="`echo $interfaces | sed -e 's/eth0//g'`"
fi
# Don't startup eth1 if commandline says not to.
if strstr "$cmdline" noeth1; then
interfaces="`echo $interfaces | sed -e 's/eth1//g'`"
fi
image=/boot/vmlinuz
label="linux"
root=/dev/hda6
initrd=/boot/initrd.img
append="acpi=on resume=/dev/hda5 splash=silent mem=1024M"
vga=788
read-only
image=/boot/vmlinuz
label="linux-ethonly"
root=/dev/hda6
initrd=/boot/initrd.img
append="acpi=on resume=/dev/hda5 splash=silent mem=1024M noeth1"
vga=788
read-only
image=/boot/vmlinuz
label="linux-wlanonly"
root=/dev/hda6
initrd=/boot/initrd.img
append="acpi=on resume=/dev/hda5 splash=silent mem=1024M noeth0"
vga=788
read-only
image=/boot/vmlinuz
label="linux-nonet"
root=/dev/hda6
initrd=/boot/initrd.img
append="acpi=on resume=/dev/hda5 splash=silent mem=1024M noeth0 noeth1"
vga=788
read-only
#!/usr/bin/perl
$voldata="/etc/acpi/vol.data";
$vol = `aumix -q | grep vol | cut -d " " -f 3`;
chomp($vol);
if($vol =~ /^0/) {
open(VOL,"<$voldata") || die "Can not read vol.data!\n";
$old_vol = ;
close(VOL);
system("aumix -v $old_vol");
system("rm $voldata");
} else {
open(VOL,">$voldata") || die "Can not write vol.data!\n";
print VOL "$vol";
close(VOL);
system("aumix -v 0 ");
}
#!/bin/sh
#/etc/acpi/network.sh
# This script toggles the state of the given interface.
# If it's up, it will bring it down.
# If it's down, it will bring it up.
DEVICE=$1
if ifconfig $DEVICE | grep "inet addr:" >/dev/null 2>&1; then
ifdown $DEVICE
else
ifup $DEVICE
fi
# /etc/acpid/events/eth # This is called when the user presses the network hotkey (4th key on top left) # It requires /etc/acpi/actions/network.sh event=hotkey.*51[[:space:]].* action=/etc/acpi/actions/network.sh eth0
# /etc/acpid/events/wlan # This is called when the user presses the wireless hotkey (5th key on top left) # It requires /etc/acpi/actions/network.sh event=hotkey.*5d[[:space:]].* action=/etc/acpi/actions/network.sh eth1
# /etc/acpid/events/power # This is called when the user presses the power button event=button/power (PWR.|PBTN) action=/sbin/poweroff
# /etc/acpid/events/mute # This is called when the user presses the Fn+F10 button to toggle mute # It requires /etc/acpi/actions/mute.pl and aumix installed. event=hotkey.*32[[:space:]].* action=/etc/acpi/actions/mute.pl
# /etc/acpid/events/vol_down # This is called when the user presses the Fn+F11 button to lower volume # It requires aumix installed event=hotkey.*31[[:space:]].* action=/usr/bin/aumix -v -5
# /etc/acpid/events/vol_up # This is called when the user presses the Fn+F12 button to increase volume # It requires aumix installed event=hotkey.*30[[:space:]].* action=/usr/bin/aumix -v +5
#!/bin/sh
#/etc/sysconfig/network-scripts/ifup.d/wledoff
. /etc/sysconfig/network-scripts/network-functions
DEVICE=$1
if is_wireless_device $DEVICE; then
echo 0 > /proc/acpi/asus/wled
fi
#!/bin/sh
#/etc/sysconfig/network-scripts/ifup.d/wledon
. /etc/sysconfig/network-scripts/network-functions
DEVICE=$1
if is_wireless_device $DEVICE; then
echo 1 > /proc/acpi/asus/wled
fi
# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************
Section "Files"
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.
FontPath "unix/:-1"
EndSection
Section "ServerFlags"
#DontZap # disable (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
#DontZoom # disable / (resolution switching)
EndSection
Section "Module"
Load "dbe" # Double-Buffering Extension
Load "v4l" # Video for Linux
Load "extmod"
Load "type1"
Load "freetype"
Load "synaptics"
Load "dri"
Load "glx" # 3D layer
#Load "/usr/X11R6/lib/modules/extensions/libglx.a"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "en_US"
Option "XkbOptions" ""
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "6 7"
EndSection
Section "InputDevice"
Identifier "SynapticsMouse0"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "Device" "/dev/input/mice"
Option "MaxSpeed" "0.12"
Option "MinSpeed" "0.06"
Option "BottomEdge" "4200"
Option "SHMConfig" "on"
Option "LeftEdge" "1700"
Option "FingerLow" "25"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "FingerHigh" "30"
Option "VertScrollDelta" "100"
Option "TopEdge" "1700"
Option "RightEdge" "5300"
Option "AccelFactor" "0.0010"
EndSection
Section "Monitor"
VendorName "Generic"
ModelName "Flat Panel 1400x1050"
Identifier "monitor0"
HorizSync 31.5-90
VertRefresh 59-75
Option "DPMS"
EndSection
Section "Monitor"
VendorName "Generic"
ModelName "Flat Panel 1280x1024"
Identifier "Monitor1"
HorizSync 31-81
VertRefresh 56-75
Option "DPMS"
EndSection
Section "Device"
Identifier "device0"
Driver "radeon"
Option "DPMS"
Option "DDCMode" "True"
Option "MonitorLayout" "LVDS, TMDS"
Option "CRT2HSync" "31-81"
Option "CRT2VRefresh" "56-75"
BusID "PCI:1:0:0"
Screen 0
EndSection
Section "Device"
Identifier "device1"
Driver "radeon"
BusID "PCI:1:0:0"
Screen 1
EndSection
Section "Screen"
Identifier "screen0"
Device "device0"
Monitor "monitor0"
DefaultColorDepth 24
Subsection "Display"
Depth 24
Modes "1400x1050" "1280x1024" "1280x960" "1024x768"
ViewPort 0 0
#Virtual 2680 1050
EndSubsection
EndSection
Section "Screen"
Identifier "screen1"
Device "device1"
Monitor "monitor1"
DefaultColorDepth 24
Subsection "Display"
Depth 24
Modes "1400x1050" "1280x1024" "1280x960" "1024x768"
ViewPort 0 26
#Virtual 2680 1050
EndSubsection
EndSection
Section "ServerLayout"
Identifier "layout0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
InputDevice "SynapticsMouse0" "AlwaysCore"
Screen "screen0"
Screen "screen1" RightOf "screen0"
EndSection
| Cheap Laptop | Rugged Laptop Case | Gaming Laptop | Lenovo Linux Laptop |
|
Linux on Laptops is copyright © linux-on-laptops.com
Privacy Statement Contact us at linuxonlaptops (at) gmail.com | Advertise on linux-on-laptops.com |
No Warranties: This information is provided "as is" without any warranty, condition, or representation of any kind, either express or implied, including but not limited to, any warranty respecting non-infringement, and the implied warranties of conditions of merchantability and fitness for a particular purpose. All logos or trademarks on this site are the property of their respective owner. In no event shall linux-laptop.net, linux-on-laptops.com, or any directors, trustees, associates, or employees thereof be liable for any direct, indirect, special, incidental, consequential or other damages howsoever caused whether arising in contract, tort, or otherwise, arising out of or in connection with the use or performance of the information contained on this web site.