LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-02-2010, 01:34 PM   #1
gtamplin
LQ Newbie
 
Registered: Jun 2009
Posts: 1

Rep: Reputation: 0
Gave up on UBUNTU/LINUX due to no support for my "legacy" hardware


I finally had to give up on UBUNTU/LINUX because I cannot afford to buy a new PC, and so far the "supported" and "new" versions do not recognize my external hard drive, or my Dell Latitude Wireless NIC.

Sadly disappointed, if I want to use a Wireless connection, or use my external hard drive, I HAVE to return to Microsoft Windows XP.

It seems apparent that the volunteer programmers are either unable or unwilling to support at least some "legacy" (my Dell laptop is about 5 years old) hardware.

I tried 3 different UBUNTU versions, but they didn't accept new version installs for some new "add-on" proprietary on-line media files (especially Adobe and Apple). And none of them support my wireless NIC or my 100GB external backup drive.

I don't understand why there appears to be powerful motivation to continually bring out new UBUNTU/LINUX versions, rather than improve current tried and true versions so all hardware is supported. But I am not a programmer, just a used-to-be UBUNTU/LINUX newby.

Perhaps when I can afford a new PC, I will try UBUNTU/LINUX again, but it seems unlikely any future versions will support older hardware.

Hopefully, by that time, Adobe and the other proprietary software companies will provide LINUX drivers and LINUX-compatible versions.

Last edited by gtamplin; 11-02-2010 at 01:36 PM. Reason: grammar & syntax
 
Old 11-02-2010, 01:45 PM   #2
cojo
Member
 
Registered: Feb 2003
Location: St. Louis
Distribution: RedHat 8
Posts: 262

Rep: Reputation: 31
5 years old laptop is not really that old. I am not an Ubuntu user, but I am able to get my old Dell Latitude to work with Fedora 13 without any special driver setup require. I doubt Ubuntu is any different.
 
Old 11-02-2010, 01:46 PM   #3
pljvaldez
LQ Guru
 
Registered: Dec 2005
Location: Somewhere on the String
Distribution: Debian Wheezy (x86)
Posts: 6,094

Rep: Reputation: 281Reputation: 281Reputation: 281
Sorry to hear that you've given up. I'm surprised by these two things (well, maybe not the wireless). But as this is your first post, maybe we could have helped you if you had posted some information about the errors you received or things from the log files. Some of the older wireless cards require a bit of a hack called ndiswrapper to get working. As for the hard disk, it's possible you just need to tweak the mount command to mount it up. Other than failed or encrypted drives (of which I didn't have the encryption key), I've not found a hard disk that I couldn't mount under linux.
 
Old 11-02-2010, 01:49 PM   #4
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
You haven't really given any information about your system which makes commenting on your claims rather difficult. Your remarks are limited to Ubuntu but you must bear in mind that there are many many other distributions around. Linux has an excellent record for dealing with hardware no longer supported by Windows. It's a pity you didn't take the trouble to tell us about your own system. Oh well.
jdk
 
Old 11-02-2010, 03:07 PM   #5
0rwell
LQ Newbie
 
Registered: Sep 2009
Posts: 18

Rep: Reputation: 2
Dude.

ndiswrapper FTW.

http://sourceforge.net/apps/mediawik...itle=Main_Page

And by "does not support my external hard drive" do you mean that it does not automatically pop up when you plug it in? Do the following to remedy this:

1. Let's create a place to mount your external hard drive
you@ubuntu:$ cd /mnt
you@ubuntu:$ sudo mkdir external

2. Plug in your hard drive, and then do
you@ubuntu:$ dmesg |tail
You will see some stuff here, but you should at the bottom see "blah blah blah detected. mounted to /dev/sdc" or something along these lines.

Let's assume it's /dev/sdc

3. Let's put this in your /etc/fstab so it will automount
you@ubuntu:$ sudo nano /etc/fstab

Now you will get an output like this:

udev /dev tmpfs rw,mode=0755 $
tmpfs /var/cache/apt tmpfs rw,noexec,nosuid $
tmpfs /dev/shm tmpfs rw,nosuid,nodev $
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,$
sysfs /sys sysfs rw,noexec,nosuid,nodev $
proc /proc proc rw,noexec,nosuid,nodev $

NOTE: My fstab is a little wonky because this is installed on a plug pc

You now need to add a line which will identify said drive. For me, my external drive is /dev/sdc3. We take the reference point from dmesg for proper mounting.

So add a line at the bottom like so:

udev /dev tmpfs rw,mode=0755 $
tmpfs /var/cache/apt tmpfs rw,noexec,nosuid $
tmpfs /dev/shm tmpfs rw,nosuid,nodev $
devpts /dev/pts devpts rw,noexec,nosuid,gid=5,$
sysfs /sys sysfs rw,noexec,nosuid,nodev $
proc /proc proc rw,noexec,nosuid,nodev $

#mounts the USB drive
/dev/sdc3 /mnt/external reiserfs rw,user,auto 0 0

Dissected: /dev/sdc3 is my drive, /mnt/external is where I'm mounting it too, reiserfs is the filesystem, rw,user,auto means we're automounting read/write for the drive

Another note here, is that my filesystem type is reiserfs on my HDD, you may be using ext3/ext4/etc. Identify what it is prior to doing this

4. Mount your drive
you@ubuntu:$ sudo mount -a

And that's all there is to it.

Now, if you don't know what the filesystem type is, you can do the following prior to the above steps

you@ubuntu:$ cd /mnt
you@ubuntu:$ sudo mkdir temp
you@ubuntu:$ sudo mount /dev/sdc3 /mnt/temp
you@ubuntu:$ df -HTv
Filesystem Type Size Used Avail Use% Mounted on
tmpfs tmpfs 264M 0 264M 0% /lib/init/rw
udev tmpfs 11M 775k 9.8M 8% /dev
tmpfs tmpfs 264M 4.1k 264M 1% /dev/shm
rootfs rootfs 485M 182M 303M 38% /
tmpfs tmpfs 264M 40M 224M 15% /var/cache/apt
/dev/sdc3 reiserfs 499G 355G 145G 72% /mnt/tmp
you@ubuntu:$ sudo umount /mnt/temp

Let me know if you have any questions.

_O_
 
Old 11-02-2010, 03:14 PM   #6
Soadyheid
Senior Member
 
Registered: Aug 2010
Location: Near Edinburgh, Scotland
Distribution: Cinnamon Mint 20.1 (Laptop) and 20.2 (Desktop)
Posts: 1,672

Rep: Reputation: 486Reputation: 486Reputation: 486Reputation: 486Reputation: 486
Dear me, First post and all you can do is greet and girn. When your Windows system doesn't recognise a bit of hardware what do you do? You go out and look for it on the Web! To slate Linux because you have to do the same thing is a bit off.
I'm sure I've read somewhere that Linux has more drivers than Windows 7!

Give us some details and we can help. Linux is NOT Windows, you can make it do what YOU want, you're not restricted to someone else's interpretation of how something should work.

Go on... Give it a go, don't give up before you've started!

Play Bonny!

(I only use old systems - Ten and counting...)
 
Old 11-02-2010, 03:17 PM   #7
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
Why not post your issue and let us try to fix it?
 
Old 11-02-2010, 03:41 PM   #8
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,112
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
And as a side note. I have 2.6.35 Liqourix kernel working. All my sound,external mic, external camera,skype,latest browsers, java jre6u22, Shockwave 10.1 r85, Icewm and Fluxbox Desktops, using Sid repos on a IBM A22m , pentium 1000, 256MB ram, 20gig Hardrive, Dualboot with Puppy Dingo 4 with all the above plugins and applications and Hardware working also. Oh yeah, External Hardrive auto-mounts in AntiX and Puppy also.

So if Unhappy with Ubuntu Gnome or KDE install. Go for a

https://help.ubuntu.com/community/In...tion/MinimalCD

and build it to suit. Unless you are happy running Windows XP. I can't afford a new PC also. But I'll be horn swaggled if I'll put Windows 2000 Pro back on that Laptop.

Happy Trails, Rok
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
AMD/ATI drivers installation gave me "out of frequency" vinnie_vinodh Linux - Newbie 5 10-24-2010 05:59 AM
Boot problem - "Gave up waiting for root device.", (initramfs) for ubuntu 9.10 kumar116 Linux - Hardware 2 06-21-2010 04:10 PM
LXer: Fighting the "legacy" reputations of GNU/Linux, seventeen years later LXer Syndicated Linux News 0 10-17-2008 07:30 PM
"yum info python" gave me 2 installed items. Why? gneeot Linux - General 3 06-29-2006 01:07 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 02:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration