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 - Distributions
User Name
Password
Linux - Distributions This forum is for Distribution specific questions.
Red Hat, Slackware, Debian, Novell, LFS, Mandriva, Ubuntu, Fedora - the list goes on and on... Note: An (*) indicates there is no official participation from that distribution here at LQ.

Notices


Reply
  Search this Thread
Old 11-06-2005, 07:38 PM   #1
bsmntbombdood
LQ Newbie
 
Registered: Oct 2005
Posts: 10

Rep: Reputation: 0
another "which distribution for an old computer" thread


I'm sure you have all seen posts like this before, but I havn't been able to find what I need. I have an old Hewlett Packard computer with a 500 MHz Celeron processor and 192 megabytes of ram. Right now I'm running Red Hat 9 with KDE (yes, I need a GUI) and it's mighty slow. I would like a lightweight and fast distribution, but it needs to come with packages, libraries etc. Disk space is not a problem (120GB hdd). What distro should I use?
 
Old 11-06-2005, 07:57 PM   #2
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
RH should be fine, it's your GUI that's weighing you down. Try something lighter like Fluxbox.

Or you could always go with Slackware and see if it has a feel you like, contrary to popular belief, it too has a packaging system that works great (pkgtool).

Cool
 
Old 11-06-2005, 07:58 PM   #3
2damncommon
Senior Member
 
Registered: Feb 2003
Location: Calif, USA
Distribution: PCLINUXOS
Posts: 2,918

Rep: Reputation: 103Reputation: 103
Before I upgraded at the first of the year I was running a Celeron 500 with 256 RAM.
Using Debian Woody I could run MPlayer and very rarely receive a "your computer is too slow to play this" message. Using Suse 9.1 I could not run MPlayer at all while in KDE. If I switched to ICEWM I could use MPLayer just fine. To me this was a great example of what was using my computer resources.
It is more important that you consider using ICE or Blackbox or such to be able to use the programs you want. A switch to Slackware or Debian should give you a faster base at the price you need to do more configuration.
You may want to check out something like Vector Linux for a low resource system or get radical with a Damn Small Linux hard drive install.
Good Luck
 
Old 11-06-2005, 08:05 PM   #4
uberNUT69
Member
 
Registered: Jan 2005
Location: Tasmania
Distribution: Xen Debian Lenny/Sid
Posts: 578

Rep: Reputation: 30
OLD? lol
Try Debian sarge
Easy to install, use, customise and maintain.
http://www.debian.org/distrib/
 
Old 11-06-2005, 09:42 PM   #5
bsmntbombdood
LQ Newbie
 
Registered: Oct 2005
Posts: 10

Original Poster
Rep: Reputation: 0
I've started to install Debian before, but I had trouble partitioning and gave up. I could try Slackware though.
 
Old 11-06-2005, 11:01 PM   #6
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
I tried to install Debian a while back (a bit before what I would consider my "understanding" point) and really got lost. I've heard it's installer has improved, and would love to give it a try again, but I've been happy with the other things I've tried since and have no reason to look back. But, if you are just getting your feet wet, it may be worth your time to give it another shot. It's well supported, and has literally thousands of packages for it.

Just a thought, depending on what you plan on doing long term, it may be worth your while.

Cool
 
Old 11-06-2005, 11:47 PM   #7
uberNUT69
Member
 
Registered: Jan 2005
Location: Tasmania
Distribution: Xen Debian Lenny/Sid
Posts: 578

Rep: Reputation: 30
As the other posters have suggested, it probably doesn't matter which distro
you choose... it's the Window Manager that 'weighs more' in a lot of cases

My personal preference for a reasonably light Window Manager is XFCE4

For Debian:
# apt-get install xfce4

Have fun ... experiment!
With a drive that size you should be able to leave enough space for other
distros when you want to try something different (and when your experience
increases to that stage), or even choose different window managers when
you log in.
 
Old 11-07-2005, 12:00 AM   #8
hackerarchangel
Member
 
Registered: Jan 2005
Distribution: Suse 9.3
Posts: 119

Rep: Reputation: 15
hey friend, is the drive formatted as fat32? If it is, try out Amigo Linux 2.0, as it takes up little space (200 megs) and is based on slackware 9.1, so all slackware 9.1 packages will work with it. The creator has a forum here as well, and will help you if you have the info handy. Trust me, the GUI is also simple to use.
 
Old 11-07-2005, 04:38 PM   #9
bsmntbombdood
LQ Newbie
 
Registered: Oct 2005
Posts: 10

Original Poster
Rep: Reputation: 0
No, it's ext3. If one of you guys could explain how to resize partitions, i would appreciate it. Here is the output of parted for my drive-

Code:
(parted) p                                                                
Disk geometry for /dev/hda: 0.000-114473.460 megabytes
Disk label type: msdos
Minor    Start       End     Type      Filesystem  Flags
1          0.031     99.914  primary   ext3        boot
2         99.914 113449.218  primary   ext3        
3     113449.219 114472.968  primary   linux-swap  boot
I would like to make partition 2 smaller.

thanks

Last edited by bsmntbombdood; 11-07-2005 at 06:54 PM.
 
Old 11-07-2005, 05:42 PM   #10
uberNUT69
Member
 
Registered: Jan 2005
Location: Tasmania
Distribution: Xen Debian Lenny/Sid
Posts: 578

Rep: Reputation: 30
1. If it's only the swap you want resized, you need to either turn swap off
or boot a LiveCD. Turn that swap off with:
# swapoff /dev/hda3
Then use fdisk to delete the partition:
# fdisk /dev/hda
: d
: 3
Create a new partition:
:n

:3
:<ENTER> (start sectors)
:+512M (new size)
Create another partition:
:n

:4
:<ENTER>
:<ENTER>
Write and quit
:w
Then make your partition into a swap and turn it on:
# mkswap /dev/hda3
# swapon /dev/hda3
Do something useful with your new partition:
# mke2fs -j /dev/hda4
# mkdir /mnt/newpart
# mount /dev/hda4 /mnt/newpart

2. If, however you wanted to resize your root (hda2) you would need to
boot using a CD that has ext2resize (your guess is as good as mine).
I suspect Knoppix might have it.
You then resize the filesystem, resize the partition, dummy resize for
sanity, and then do a filesystem check.

3. To create more than 4 partitions you will need to learn about extended
partitions (no big deal)
 
Old 11-07-2005, 06:55 PM   #11
bsmntbombdood
LQ Newbie
 
Registered: Oct 2005
Posts: 10

Original Poster
Rep: Reputation: 0
Thanks UBERnut, i'll try a live cd
 
  


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
[thread control suggestion] add a "solved" button that the thread starter can click atom LQ Suggestions & Feedback 3 03-24-2005 11:55 AM
Take all posts from "Website Suggestions & Feedback" out of the "0 Reply Thread&q t3gah LQ Suggestions & Feedback 7 03-21-2005 07:27 PM
Lost DHCP Lease when putting computer in "Standby" mode for a "long" time pnellesen Linux - Networking 1 01-06-2005 11:44 PM
Starting Java from shell script (Exception in thread "main") rolf_mueller Linux - Software 5 10-30-2004 02:11 AM
Java error "Exception in thread "main" java.lang.StackOverflowError" nro Programming 1 09-04-2004 03:47 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions

All times are GMT -5. The time now is 03:28 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