Popular Guides
View more guides at Linux Wiki Guides
This is a compatibility guide to running Linux with the Asus N90Sv laptop.
This page is just for discussing using Linux on the Asus N90Sv. For a general discussion about this laptop you can visit the Asus N90Sv page on LapWik.
If you would like to edit this page please first view our Editing Guidelines.
For full specifications see the Asus N90Sv specifications page.
| Name | Asus N90Sv |
| Processor | Intel® Core™2 Duo Processor T9550/P8700/P8600/P8400/P7350/T6600/T6400/T5850 : 2.66 GHz - 2.16 GHz, Intel® Pentium® Dual Core Processor T4200/T3400 : 2.16 GHz - 2 GHz, Intel® Celeron® Processor 575 : 2.0 GHz |
| Screen | 18.4” 1920×1080 Widescreen |
| RAM | Up to 4GB |
| HDD | 500GB |
| Optical Drive | DVD+-RW Blueray |
| Graphics | NVIDIA® GeForce® GT 130M |
| Network | 10/100/1000 Ethernet Integrated 802.11 b/g/n or 802.11b/g |
| Device | Compatibility | Comments |
|---|---|---|
| Processor | Works | |
| Screen | Works | |
| HDD | Works | |
| Optical Drive | Works | |
| Graphics | Works | Required NVIDIA driver |
| Sound | Works | |
| Ethernet | Works | reqired ifconfig eth0 mtu 1492 |
| Wireless | Works | required wicd (in Network Manager system is frezee |
| Bluetooth | Works | |
| Modem | Not Tested | |
| USB | Works | |
| Firewire | Not Tested | |
| Card Reader | Works | Tested on PCLinuxOS |
| ExpressCard Slot | Not Tested | |
| Webcam | Not Working | Image is upside-down |
This laptop was tested with Ubuntu 9.10 (beta).
To get the display working properly you need to install the latest NVIDIA drivers. See the guides section here for instructions.
The Asus N90Sv works well when used with an up to date Linux distributions.
Discussion
I have to edit post above a little bit:
Processor: Working fine Out of box
Screen: 1920×1080
HDD: Working fine Out of box
Optical Drive: Working fine Out of box
Graphics: Working fine with nVidia drivers
Sound: Some issues with Intel HD, but working good
Ethernet: Working fine
Out of boxaftersudo ifconfig eth0 mtu 1492Wireless: Working fine
Out of boxwith wicd network manager (Atheros chipset)Bluetooth: Working fine Out of box
Modem: Not Tested
USB: Working fine Out of box
Firewire: Not Tested
Card Reader: Working fine Out of box
ExpressCard Slot: Working fine Out of box
Webcam: Image is upside-down, don't know how to fix this
My Ubuntu is 9.10 Karmic Koala Final Release
Processor: Working fine Out of box
Screen: 1920×1080
HDD: Working fine Out of box
Optical Drive: Working fine Out of box
Graphics: Working fine with nVidia drivers
Sound: Some issues with Intel HD, but working good
Ethernet: Working fine Out of box
Wireless: Working fine Out of box (Atheros chipset)
Bluetooth: Working fine Out of box
Modem: Not Tested
USB: Working fine Out of box
Firewire: Not Tested
Card Reader: Not Tested
ExpressCard Slot: Not Tested
Webcam: Image is upside-down, don't know how to fix this
My Ubuntu is 9.10 Karmic Koala Beta 1 (upgraded from 9.10 Alpha 5)
For your webcam use the latest libv4l, you can find it at http://people.fedoraproject.org/~jwrdegoede/
Here the mail from Hans who maintain the lib
Hi,
Thanks for providing the requested information. I've just made
a new (test) release of libv4l which contains your laptop info
in its upside down table, and as such should fix (work around)
the upside down issue for you.
You can download this new version here:
http://people.fedoraproject.org/~jwrdegoede/libv4l-0.6.5-test.tar.gz
1. Install
Howto install and test libv4l depends on your system. There are
different instructions for if you have a 32 bit system or a 64 bit system.
which is using multilib. A 64 bit system without multilib is the same as
a 32 bit system.
To find out what you have do:
ls -d /usr/lib64
If this command gives a “No such file or directory” error, use the
Non multilib instructions, if the second command is successfull, you have multilib,
to find out which version (dubbed Fedora and Ubuntu multilib, because those are
the most well known examples, do):
ls -d /usr/lib32
If this command gives a “No such file or directory” error, use the Fedora multilib
instructions. If this command succeeds use the Ubuntu multilib instructions. Note
the ubuntu multilib instructions also apply to gentoo.
Non multilib instructions:
tar xvfz libv4l-<version>.tar.gz
cd libv4l-<version>
make PREFIX=/usr
sudo make install PREFIX=/usr
Fedora Multilib instructions:
Basic 64 bit install:
tar xvfz libv4l-<version>.tar.gz
cd libv4l-<version>
make PREFIX=/usr LIBDIR=/usr/lib64
sudo make install PREFIX=/usr LIBDIR=/usr/lib64
If you also want to use 32 bit apps (such as skype), you
will need to have the 32 bit libc headers installed, on Fedora
this can be done like this:
Fedora 10-: “sudo yum install glibc-devel.i386”
Fedora 11: “sudo yum install glibc-devel.i586”
Fedora 12+: “sudo yum install glibc-devel.i686”
Then do:
make clean
make PREFIX=/usr CFLAGS=-m32 LDFLAGS=-m32
sudo make install PREFIX=/usr
Ubuntu Multilib instructions:
tar xvfz libv4l-<version>.tar.gz
cd libv4l-<version>
make PREFIX=/usr
sudo make install PREFIX=/usr
If you also want to use 32 bit apps (such as skype), you
will need to have the 32 bit libc headers installed, on Ubuntu
this can be done like this:
sudo apt-get install libc6-dev-i386
On gentoo this can be done like this:
sudo emerge -v app-emulation/emul-linux-x86-compat
Then do:
make clean
make PREFIX=/usr CFLAGS=-m32 LDFLAGS=-m32 LIBDIR=/usr/lib32
sudo make install PREFIX=/usr LIBDIR=/usr/lib32
2. Testing
You have a chance that your webcam app use libv4l or have an appropriate
script starting it. In that case you don't have to do anything. Just run
the application. This is the most common situation with Ubuntu and Fedora
packages. If your problem remains unsolved, then your app might not use libv4l.
In that case start the application from a terminal like this:
Non multilib:
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so <your favorite webcam app>
Note on Ubuntu sometimes skype is using a wrapper script, so if skype
does not work try:
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype.real
Fedora multilib:
For 64 bit applications (allmost all apps):
LD_PRELOAD=/usr/lib64/libv4l/v4l1compat.so <your favorite webcam app>
For 32 bit applications (you only need it for proprietary softwares, which
don't have a 64 bit version, like skype):
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
Ubuntu multilib:
For 64 bit applications (allmost all apps):
LD_PRELOAD=/usr/lib64/libv4l/v4l1compat.so skype
For 32 bit applications (you only need it for proprietary softwares, which
don't have a 64 bit version, like skype):
LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype
Note on Ubuntu sometimes skype is using a wrapper script, so if skype
does not work try:
LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype.real
Please let me know if this version of libv4l turns the image the
right way up for you.
If not, please do:
cat /sys/devices/virtual/dmi/id/board_name > name.txt
cat /sys/devices/virtual/dmi/id/board_vendor > vendor.txt
And mail the 2 created files to me. It is important to use the
”>” operator here, as I need any whitespace inside this files
exactly as is.
Thanks & Regards,
Hans