mini_banner

Wednesday, November 5, 2008

This is Why I Love Microsoft's OS

Screenshot-The page at http:--live-antivirus-scan.com says:
I don't like it when my PC creahes.

Screenshot-The page at http:--live-antivirus-scan.com says:-1
The file has been digitally signed and independently certified as 100% free of spyware, adware and viruses.

Screenshot-Antivirus 2009 - Mozilla Firefox-2
After scanning my C:/ drive and my Window files, it reported that I had an IEMonster, Porn Advertiser & Trojan Banker InfoStealer.
I didn't even know I had a C:/ drive or that Microsoft issued Security Warnings to Linux Users.

Screenshot-Opening A9installer_880147.exe
I feel sorry for people who hit install.

Trust me, that Microsoft certification course you took at the community college/high school only certifies that you can attend a class.

edited by pHreaksYcle

Monday, November 3, 2008

Go Vote, Pretty Please

This morning I received a email from nin.com that sums up what I wanted to write today.

This Tuesday, we will elect the next President of the United States. The result will have great consequences for the nation.

This election offers a choice between two men with dramatically different visions of the future. We have strong feelings about this choice. But we feel even more strongly that all Americans, regardless of political preference, have a stake in the outcome and should vote in this critical election.

This is likely to be a close election. Your vote matters. Please use it and make a difference.


-----
So dust off your Cheeto stained hands, stop watching internet porn and go vote. I know the sun is a harsh beast, but sacrifices must be made.


edited by pHreaksYcle

Sunday, November 2, 2008

Ubuntu 8.10 Intrepid Ibex Starter Guide

If you decided to run Ubuntu 8.10 Intrepid Ibex on your Dell Inspiron 1501 you came to the right place. This blog is a great starter guide for getting things to work.

Every piece of hardware on the Dell 1501 works in Ubuntu, wireless requires setup but it is much less work then a fresh install of Windows XP/Vista. It's not as hard as it looks and everything here is tested and confirmed to work.

Overview of Ubuntu 8.10 on the Dell Inspiron 1501

Using NDISwrapper for wireless
NDISwrapper uses a wireless devices' Windows driver in Linux.

Installing restricted media codecs
This guide will allowing you to play Flash, Java mp3, aac, DVDs ,mp4, avi, wmv and many more formats. It also installs the Microsoft true type fonts for better compatibility with Word documents.

Installing the Medibuntu repository
Medibuntu is a repository of packages that cannot be included into the Ubuntu distribution for legal reasons like copyright, license or patent restrictions. It also includes many popular .debs for ffmpeg encoding, w32codes, skype and google earth.

Installing Wine
Wine is a compatibility layer for running Windows applications on Linux.

Mandx that's the point, everyone should check out our new Blog about running Ubuntu on the Dell Inspiron Mini 9

NDISwrapper in Ubuntu 8.10 Intrepid Ibex

NDISwrapper uses a wireless devices' Windows driver in Linux. If you are using the Broadcom STA wireless driver via the Driver Manager and it's working for all your day to day needs, I wouldn't recommend taking the time to change drivers. NDISwrapper used to work better then the Broadcom driver but in Intrepid Ibex, I haven't noticed a substantial difference.

If you have already enabled the Broadcom restricted driver, uninstall it before attempting this guide.

Step 1: Stop ssb From Loading Before NDISwrapper
Make a script for NDISwrapper's fix
In a terminal type:
sudo gedit /etc/init.d/wirelessfix.sh

Paste this into the file:
#!/bin/bash

modprobe -r b44
modprobe -r b43
modprobe -r ssb
modprobe -r ndiswrapper
modprobe ndiswrapper
modprobe b44

Point the terminal to your init.d file and make your script exectuable:
In a terminal type:
cd /etc/init.d/ && sudo chmod 755 wirelessfix.sh

Update and make it stick:
In a terminal type:
sudo update-rc.d wirelessfix.sh defaults

Then reboot
In a terminal type:
sudo reboot


Step 2: Get Needed Packages
To install ndiswrapper
In a terminal type:
sudo apt-get install ndiswrapper-utils-1.9 ndiswrapper-common

or you can also try:
sudo apt-get install ndiswrapper-utils-1.9* ndiswrapper-common

***If the terminal outputs an error message, telling you NDISwrapper could not be found, insert the Ubuntu disc you used to install Intrepid Ibex and manually search for the file.



Get the Windows driver for your Dell 1501.
This is for the Broadcom 1395 chipset. if yours is different you will need to find the correct windows driver for your chipset to make this guide work.
In a terminal type:
wget http://ftp.us.dell.com/network/R140747.EXE


Step 3: Get Everything Ready
Now we will make a folder.
In a terminal type:
mkdir ~/.drivers

Now we will move R140747.EXE (the Dell driver), to the folder we just made.
In a terminal type:
mv ~/R140747.EXE ~/.drivers


STEP 4: Driver Setup
In order for us to unzip the R140747.EXE driver we need to point your terminal to the /.driver folder.
In a terminal type:
cd ~/.drivers

Unzip the R140747.EXE driver
In a terminal type:
unzip -a R140747.EXE

We need to point your terminal to the DRIVER folder we just unzipped
In a terminal type:
cd ~/.drivers/DRIVER


Step 5: Configure The Windows driver With NDISwrapper
Now install the Windows driver
In a terminal type:
sudo ndiswrapper -i bcmwl5.inf

* bcmwl5.inf is for my chipset, if you are using another driver you will have to use a different .inf file.

Then:
sudo ndiswrapper -l (that is a lowercase L)

You should see a message that says driver present, hardware detected.

Now finish installing the driver
In a terminal type:
sudo ndiswrapper -m
Then:
sudo modprobe ndiswrapper

YOU MUST REBOOT NOW!
In a terminal type:
sudo reboot

STEP 6: TEST WIRELESS
Your wifi light on your laptop should be illuminated. If not, you can always turn it on and off with the Fn+F2 (Function & F2 Key) and you're all set! Try running this to see if your wireless card is functioning properly.)

In a terminal type:
sudo iwlist scanning
edited by pHreaksYcle