You are not logged in.
Has anyone successfully installed Ubunto 8.04 on the eeepc 900 and had the wireless working? I followed the instructions on the ubuntu forums ( https://help.ubuntu.com/community/EeePC/Fixes ) trying both madwifi and Ndiswrapper. Neither worked. Has anyone any idea what I'm doing wrong? TIA
Offline
Yes, I have.
I just used this script after the regular Ubuntu install, and all was working. Make sure wifi is switched on. Turning the eee off, disconnecting power and battery, and leaving it for a minute is reported to cure odd network problems when everything should work, but somehow doesn't.
/Zilver
Last edited by ZilverZurfarn (2008-05-26 3:20:42 am)
Offline
Thanks for that. There seem to be a few scripts in this folder, which do I use - or do I use all of them?
thanks!
Rob
Offline
I've used the latest for 900; ftp://ftp.samiux.com/public/eeepc/ubunt … 900-1.3.sh
/Zilver
Offline
Brilliant! Thanks!
Now - as an absolute Ubuntu Noob, how do I run a script?
Thanks
Rob
Offline
If you downloaded it to your home folder, open a terminal, and enter
sudo ./ubuntu-8.04-eeetweak-eeepc900-1.3.sh
/Zilver
Offline
what fixes are included in this script? im trying to decide between a straight ubuntu install versus eeexubuntu.
Offline
Why don't you dl the script and read it? It's well commented.
To sum it up:
Configures Gnome Settings (yes, this works for both Ubunty and Xubuntu - font sizes and stuff)
Installs ACPI modules
Installs MadWiFi WLAN driver
Installs OSD
Fixes the shutdown problem
Fine tunes the file system (temp files in ram)
Installs CPU Speed Scaling
What does not work after this is web cam and mic - Web cam is solved in another thread. Mic seems like noone has figured out yet. And I doubt neither works with eeeXubuntu too.
/Zilver
Offline
Thanks for your help - I'm back at my computer now - and have tried entering
sudo ./ubuntu-8.04-eeetweak-eeepc900-1.3.sh
but I get the message
sudo: unable to execute ./ubuntu-8.04-eeetweak-eeepc900-1.3.sh: no such file or directory
I am definitely in the correct directory - if I enter
sudo gedit ubuntu-8.04-eeetweak-eeepc900-1.3.sh
I can edit the file.
Any ideas. Sorry about this- absolute noob!
Offline
First, make sure it's executable with
chmod +x ubuntu-8.04-eeetweak-eeepc900-1.3.sh
Still no joy?
Try
sudo xterm
and then in the new (root) terminal window execute ubuntu-8.04-eeetweak-eeepc900-1.3.sh (without sudo).
/Zilver
Last edited by ZilverZurfarn (2008-05-29 3:40:01 am)
Offline
ZilverZurfarn wrote:
What does not work after this is web cam and mic - Web cam is solved in another thread. Mic seems like noone has figured out yet. And I doubt neither works with eeeXubuntu too.
/Zilver
I have a working mic. It's solved here:
http://forum.eeeuser.com/viewtopic.php?id=30029
and with these settings it works:
http://www.bilder-hochladen.net/files/6u3i-1.png
Aufnahme = Capture
Digital = Digital
Mic must be muted:
http://www.bilder-hochladen.net/files/6u3i-2.png
have fun
Duckman
Last edited by Duckman (2008-05-29 5:06:05 am)
Offline
Sorry to be a nuisance but I've tried chmod ing and using xterm and neither work.
Last edited by robives (2008-05-29 2:15:19 pm)
Offline
Then I really don't know what's wrong.
Can you run any shell script?
/Zilver
Offline
I haven't got one to try. I originally downloaded the eeetweak file onto my mac and thought that I might have changed it when I looked at it in my text editor. I tried redownloading from my eeepc but he file seems to be unavailable.
Do you have a suggestion for a shell script I could try?
Thanks :-)
Offline
Open the scrip in MousePad or GEdit and make sure it's saved in UNIX format with just LF as line terminator - not cr/lf
/Zilver
Offline
ZilverZurfarn wrote:
I've used the latest for 900; ftp://ftp.samiux.com/public/eeepc/ubunt … 900-1.3.sh
Hi Zilver,
it seems that the link is broken, can you post the content of the "ubuntu-8.04-eeetweak-eeepc900-1.3.sh" file?
Thanks!
Sergio
Offline
Hi Guys,
I had a problem with that script, specifically with the wireless install. I made the following changes
ORIGINAL LINE: cd madwifi-nr-r3366+ar5007
CHANGES TO : cd madwifi-ng-r3366+ar5007
ORIGINAL LINE: sudo rm -R ~/madwifi-nr*
CHANGES TO: sudo rm -R ~/madwifi-ng*
It looks like the directory that the wifi drivers get extracted to is different then the one referenced.
Hope this helps some people.
Offline
Good catch digitalhysteria!!!!
Mine was doing the same thing. That solved it.
Offline
Here's the code for the shell script
#!/bin/sh echo "" echo "*** Ubuntu 8.04 LTS Tweak ***" echo "*** version 0.0.1 ***" echo "*** www.x2on.de ***" echo "*** for ASUS Eeepc 900 ***" echo "" echo "** Gnome settings" echo "* Setting smaller font sizes" gconftool-2 --set /apps/nautilus/preferences/desktop_font --type string "Sans 8" gconftool-2 --set /desktop/gnome/interface/document_font_name --type string "Sans 8" gconftool-2 --set /desktop/gnome/interface/font_name --type string "Sans 8" gconftool-2 --set /apps/metacity/general/titlebar_font --type string "Sans Bold 8" gconftool-2 --set /desktop/gnome/interface/monospace_font_name --type string "Monospace 9" echo "* Smaller toolbars icons only" gconftool-2 --set /desktop/gnome/interface/toolbar_style --type string "icons" echo "* Disabling UI sounds" gconftool-2 --set /desktop/gnome/sound/event_sounds --type bool 0 echo "* Fixing mute key" gconftool-2 --set /desktop/gnome/sound/default_mixer_tracks --type list --list-type string "[PCM]" echo "* Fullscreen with <Alt>-F11" gconftool-2 --set /apps/metacity/window_keybindings/toggle_fullscreen --type string "<Alt>F11" echo "* Setting suspend when closing lid, blank screen" gconftool-2 --set /apps/gnome-power-manager/actions/sleep_type_battery --type string "suspend" gconftool-2 --set /apps/gnome-power-manager/actions/sleep_type_ac --type string "suspend" gconftool-2 --set /apps/gnome-power-manager/buttons/lid_battery --type string "suspend" gconftool-2 --set /apps/gnome-power-manager/buttons/lid_ac --type string "blank" gconftool-2 --set /apps/gnome-power-manager/timeout/sleep_computer_ac --type int 0 gconftool-2 --set /apps/gnome-power-manager/timeout/sleep_computer_battery --type int 300 gconftool-2 --set /apps/gnome-power-manager/timeout/sleep_display_ac --type int 300 gconftool-2 --set /apps/gnome-power-manager/timeout/sleep_display_battery --type int 60 echo "* Don't display battery warning" gconftool-2 --set /apps/gnome-power-manager/notify/low_capacity --type bool 0 echo "* Unconstraining windows to the top of the screen" gconftool-2 --type bool --set /apps/compiz/plugins/move/allscreens/options/constrain_y 0 echo "Gnome-settings done." echo "** Installing ACPI modules" sudo apt-get update sudo apt-get install -y -f build-essential module-assistant linux-headers-$(uname -r) --force-yes #sudo apt-get install -y -f build-essential module-assistant eeepc-acpi-source --force-yes #sudo m-a a-i eeepc-acpi wget http://ivtc.org/eeepc/modules/eeepc-acpi-modules-2.6.24-16-generic_1.0-1+2.6.24-16.30_all.deb sudo dpkg -i eeepc-acpi-modules-2.6.24-16-generic_1.0-1+2.6.24-16.30_all.deb sudo cp /etc/modules ~/modules.tmp sudo chmod 777 ~/modules.tmp echo "eeepc-acpi" >> ~/modules.tmp sudo chmod 644 ~/modules.tmp sudo mv ~/modules.tmp /etc/modules sudo rm eeepc-acpi-modules* echo "** Installing WLAN" wget 'http://snapshots.madwifi.org/special/madwifi-nr-r3366+ar5007.tar.gz' tar zxvf madwifi-nr-r3366+ar5007.tar.gz cd madwifi-ng-r3366+ar5007 make clean make sudo make install cd .. sudo rm -R ~/madwifi-ng* echo "** Installing OSD" wget http://eee-osd.googlecode.com/files/eee-osd_2.1-0eeeXubuntu1_i386.deb sudo dpkg -i eee-osd_2.1-0eeeXubuntu1_i386.deb sudo rm ~/eee-osd* #echo "** Configuring Sound" #echo "options snd-hda-intel model=3stack-dig" > ~/snd-hda-intel.tmp #sudo mv ~/snd-hda-intel.tmp /etc/modprobe.d/snd-hda-intel echo "** Fix shutdown problem" sudo cp /etc/default/halt ~/halt.tmp sudo chmod 777 ~/halt.tmp echo "rmmod snd_hda_intel" >> ~/halt.tmp sudo chmod 644 ~/halt.tmp sudo mv ~/halt.tmp /etc/default/halt echo "** Fine tune the system" sudo cp /proc/sys/vm/dirty_writeback_centisecs ~/dirty_writeback_centisecs.tmp sudo chmod 777 ~/dirty_writeback_centisecs.tmp echo "1500" > ~/dirty_writeback_centisecs.tmp sudo chmod 644 ~/dirty_writeback_centisecs.tmp sudo mv ~/dirty_writeback_centisecs.tmp /proc/sys/vm/dirty_writeback_centisecs sudo cp /etc/fstab ~/fstab.tmp sudo chmod 777 ~/fstab.tmp echo "tmpfs /var/log tmpfs defaults,noatime 0 0" >> ~/fstab.tmp echo "tmpfs /var/tmp tmpfs defaults,noatime 0 0" >> ~/fstab.tmp echo "tmpfs /tmp tmpfs defaults,noatime 0 0" >> ~/fstab.tmp sudo chmod 644 ~/fstab.tmp sudo mv ~/fstab.tmp /etc/fstab echo "** Enable CPU speed scabling" sudo apt-get remove powernowd sudo apt-get install cpufrequtils sysfsutils sudo modprobe p4_clockmod sudo cp /etc/sysfs.conf ~/sysfs.conf.tmp sudo chmod 777 ~/sysfs.conf.tmp echo "devices/system/cpu/cpu0/cpufreq/scaling_governor = ondemand" >> ~/sysfs.conf.tmp sudo chmod 644 ~/sysfs.conf.tmp sudo mv ~/sysfs.conf.tmp /etc/sysfs.conf sudo cp /etc/modules ~/modules.tmp sudo chmod 777 ~/modules.tmp echo "p4_clockmod" >> ~/modules.tmp echo "cpufreq_ondemand" >> ~/modules.tmp sudo chmod 644 ~/modules.tmp sudo mv ~/modules.tmp /etc/modules echo "" echo "" beep echo "Done! Please reboot now"
Offline
Thanks for your help - I'll finally got this script to run. Problem is I still can't connect through wifi. What exactly am I supposed to do to get connected?
Thanks
Offline