AlanB66
May 8th, 2008, 07:04 PM
This is a how-to with regards to the long-threaded post "So has anybody successfully installed Ubuntu or Kubuntu on a Compaq F700 #f750us ? (http://ubuntuforums.org/showthread.php?t=687833)"
What you'll need:
* Compaq F750US
* Ubuntu 8.04 i386 ISO burned to CD (do NOT use AMD64 unless you have patience to iron other things out)
What versions are covered:
* Ubuntu 8.04 Kernel 2.6.24-16-generic
* NDisWrapper 1.52
What you'll have:
At the end of these steps, you will have a Ubuntu installation that:
Has wired and wireless LAN access
Has the Wireless LAN supporting non-broadcasting SSID's
Has the i386 OS to support Canon MP520 (for MX700) drivers
Has the capability for other i386 apps that are otherwise hard to come by in AMD64-bit mode
Steps:
Download and Burn CD for i386 Ubuntu 8.04
Install from CD
Reboot
Open Hardware Manger
Enable Nvidia Display adapter
DISABLE HAL & Atheros Wireless
Open linux-restricted-modules-common:
sudo gedit /etc/default/linux-restricted-modules-common )
Disable both ath_hal and ath_pci ( DISABLE_MODULES="ath_hal ath_pci" )
Reboot
Run Update Manager and update EVERYTHING
Run "Software Sources" Manager and uncheck/re-check "Universe". During "close" allow "Reload" of sources.
Run Update Manager, kick of a "Check", and now all updates are now available to download/install.
Using Firefox, download to /tmp:
xp32-5.3.0.56-whql.zip (available here: http://www.atheros.cz/download.php?atheros=AR5007EG&system=1 (http://www.atheros.cz/download.php?atheros=AR5007EG&system=1))
ndiswrapper-1.52.tar.gz (available here: http://sourceforge.net/project/showfiles.php?group_id=93482&package_id=99148&release_id=573476 (http://sourceforge.net/project/showfiles.php?group_id=93482&package_id=99148&release_id=573476))
Unravel packages
cd /tmp
unzip xp32-5.3.0.56-whql.zip
tar xvfz ndiswrapper-1.52.tar.gz
Get "Make" capabilities updated:
sudo apt-get update && sudo aptitude install build-essential
sudo apt-get install subversion
(Picking up from Step #4 on http://ubuntuforums.org/showpost.php?p=2801168&postcount=86 ...)
Make and Install ndiswrapper
cd /tmp/ndiswrapper-1.52
sudo make all
sudo make install
Do NOT Update /etc/network/interfaces with these lines:
auto eth0
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
Install xp32-5.3.0.56-whql drivers
cd /tmp
sudo ndiswrapper -i net5211.inf
sudo ndiswrapper -l (see item was installed)
Load ndiswrapper and check if it worked.
sudo modprobe ndiswrapper
sudo dmesg (shows that the card is installed (hopefully))
Do NOT run "ndiswrapper -m"
At this point, you should be able to use the Network Manager to configure your connection. :guitar:
Enable ndiswrapper at startup:
sudo gedit /etc/init.d/ndiswrapper
add these lines:
#!/bin/sh
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
case "$1" in
start)
modprobe ndiswrapper
;;
*)
echo "Usage: /etc/init.d/ndiswrapper {start}"
exit 1
;;
esac
exit 0
sudo chmod 755 /etc/init.d/ndiswrapper
Create link in /etc/rc2.d/S41ndiswrapper --> /etc/init.d/ndiswrapper: sudo ln -s /etc/init.d/ndiswrapper /etc/rc2.d/S41ndiswrapper
Reboot and see if you get on wireless automatically
(Resubmitted from archived post http://ubuntuforums.org/showthread.php?t=749481)
What you'll need:
* Compaq F750US
* Ubuntu 8.04 i386 ISO burned to CD (do NOT use AMD64 unless you have patience to iron other things out)
What versions are covered:
* Ubuntu 8.04 Kernel 2.6.24-16-generic
* NDisWrapper 1.52
What you'll have:
At the end of these steps, you will have a Ubuntu installation that:
Has wired and wireless LAN access
Has the Wireless LAN supporting non-broadcasting SSID's
Has the i386 OS to support Canon MP520 (for MX700) drivers
Has the capability for other i386 apps that are otherwise hard to come by in AMD64-bit mode
Steps:
Download and Burn CD for i386 Ubuntu 8.04
Install from CD
Reboot
Open Hardware Manger
Enable Nvidia Display adapter
DISABLE HAL & Atheros Wireless
Open linux-restricted-modules-common:
sudo gedit /etc/default/linux-restricted-modules-common )
Disable both ath_hal and ath_pci ( DISABLE_MODULES="ath_hal ath_pci" )
Reboot
Run Update Manager and update EVERYTHING
Run "Software Sources" Manager and uncheck/re-check "Universe". During "close" allow "Reload" of sources.
Run Update Manager, kick of a "Check", and now all updates are now available to download/install.
Using Firefox, download to /tmp:
xp32-5.3.0.56-whql.zip (available here: http://www.atheros.cz/download.php?atheros=AR5007EG&system=1 (http://www.atheros.cz/download.php?atheros=AR5007EG&system=1))
ndiswrapper-1.52.tar.gz (available here: http://sourceforge.net/project/showfiles.php?group_id=93482&package_id=99148&release_id=573476 (http://sourceforge.net/project/showfiles.php?group_id=93482&package_id=99148&release_id=573476))
Unravel packages
cd /tmp
unzip xp32-5.3.0.56-whql.zip
tar xvfz ndiswrapper-1.52.tar.gz
Get "Make" capabilities updated:
sudo apt-get update && sudo aptitude install build-essential
sudo apt-get install subversion
(Picking up from Step #4 on http://ubuntuforums.org/showpost.php?p=2801168&postcount=86 ...)
Make and Install ndiswrapper
cd /tmp/ndiswrapper-1.52
sudo make all
sudo make install
Do NOT Update /etc/network/interfaces with these lines:
auto eth0
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet dhcp
Install xp32-5.3.0.56-whql drivers
cd /tmp
sudo ndiswrapper -i net5211.inf
sudo ndiswrapper -l (see item was installed)
Load ndiswrapper and check if it worked.
sudo modprobe ndiswrapper
sudo dmesg (shows that the card is installed (hopefully))
Do NOT run "ndiswrapper -m"
At this point, you should be able to use the Network Manager to configure your connection. :guitar:
Enable ndiswrapper at startup:
sudo gedit /etc/init.d/ndiswrapper
add these lines:
#!/bin/sh
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
case "$1" in
start)
modprobe ndiswrapper
;;
*)
echo "Usage: /etc/init.d/ndiswrapper {start}"
exit 1
;;
esac
exit 0
sudo chmod 755 /etc/init.d/ndiswrapper
Create link in /etc/rc2.d/S41ndiswrapper --> /etc/init.d/ndiswrapper: sudo ln -s /etc/init.d/ndiswrapper /etc/rc2.d/S41ndiswrapper
Reboot and see if you get on wireless automatically
(Resubmitted from archived post http://ubuntuforums.org/showthread.php?t=749481)