Quick Ubuntu Install Question

Soldato
Joined
5 Dec 2003
Posts
2,716
Location
Glasgow
Hey I went to install Ubuntu there and it came to the partitioning bit and asked me whethere I wanted two options

Guided - use entire disk

or

Manual

I tried manual as I want to keep my Vista install for now but it was showing up 4 partitions, 2 NTFS, 1 fat 32 and 1 fat something else. I don't know what to do at this stage.
 
You need to shrink one of the NTFS partitions, or, assuming that they're big enough and you're OK with losing whatever data they contain, nuke one or more of the others. When you have space you can then partition as ext3 and a small (about 1-2 GiB) area formatted as swap.
 
If I use the Ubuntu installer to shrink the NTFS partition I have Vista on it wont lose me any data? I try to shrink it in Vista but it becomes unresponsive (possibly due to a couple of bad sectors on the disk).
 
That's the way it's supposed to work, but nothing in life is certain. If you've got a bad disk the risk is greater, methinks. If you have any irreplaceable data I suggest you backup before doing anything.
 
I've googled about and think this is what I'm going to do -

First disable the current driver, which won't work with this card :

echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist

Then install ndiswrapper:

sudo apt-get install ndiswrapper-utils

Then insert my Windows driver:

sudo ndiswrapper -i windows_driver_INF_file

Verify that it worked :

sudo ndiswrapper -l

Then configure ndiswrapper :

sudo ndiswrapper -m

Verify everything went well :

dmesg | tail
 
1. echo 'blacklist bcm43xx' | sudo tee -a /etc/modprobe.d/blacklist
2. sudo apt-get install ndiswrapper-utils
3. sudo ndiswrapper -i windows_driver_INF_file
4. sudo ndiswrapper -l
5. sudo ndiswrapper -m
6. dmesg | tail

Okay, done the above, first 4 steps went fine.

Step 5 it says: module config already contains alias directive.
 
My guess is that ndiswrapper has already put a module in the kernel which you need to remove. I'll be more helpful in the morning when I won't be quite so full of cheer and 18-year-old Scotch whisky. ;)
 
My guess is that ndiswrapper has already put a module in the kernel which you need to remove. I'll be more helpful in the morning when I won't be quite so full of cheer and 18-year-old Scotch whisky. ;)

Appreciated. How do I go about removing that?

I googled about a bit and tried this

sudo depmod -a
sudo modprobe ndiswrapper

changed nothing lol.
 
Back
Top Bottom