PC Help Forum - Free Computer Help, Windows, Hardware, Software and more!
 
Become a Member Today!
Search PC Help Forum for Answers
 
Go Back   PC Help Forum - Free Computer Help, Windows, Hardware, Software and more! > Operating Systems > Other OS > Linux
Linux - [Answered] I need a Linux Distro posted in the Other OS forums; I need a free Linux Distro capable of running on the following system: AMD K2 150Mhz, 64Mb SD Ram 4gb HDD AGP Graphics card CDRom. Any suggestions apreciated. Thanks Tom....

REGISTER NOW to remove these Ads

Reply
 
LinkBack Thread Tools Display Modes Language
  #1  
Old 12-27-2007
FatFool's Avatar
Bronze Member
My PC
 
Posts: 36
FatFool - See this Members User comments on their Profile page
Default [Answered] I need a Linux Distro

I need a free Linux Distro capable of running on the following system:


AMD K2 150Mhz,
64Mb SD Ram
4gb HDD
AGP Graphics card
CDRom.

Any suggestions apreciated.

Thanks
Tom.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #2  
Old 12-28-2007
tractordriver88's Avatar
Gold Member
My PC
 
Posts: 337
PC Experience: Experienced
Location: United States of America
tractordriver88 - See this Members User comments on their Profile page
Default Re: I need a Linux Distro

Check out this site if you want. Linux.com :: Linux distros for older hardware
DSL is pretty nice.

__________________
Prework
Do the Prework to help us solve your problems!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old 12-28-2007
FatFool's Avatar
Bronze Member
My PC
 
Posts: 36
FatFool - See this Members User comments on their Profile page
Default Re: I need a Linux Distro

Thanks.

I downloaded a DSL iso file put it on disc with Alcohol 120%, it boots up to a DSL splash screen type thing and asks me to hit enter, after that the little penguin appears and thats it, nothing else happens.

What am I doing wrong?
Thanks again
Tom.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old 12-28-2007
FatFool's Avatar
Bronze Member
My PC
 
Posts: 36
FatFool - See this Members User comments on their Profile page
Default Re: I need a Linux Distro

Added more RAM and it works fine,
Thanks

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old 12-28-2007
Pgh's Avatar
Pgh Pgh is offline
Moderator
My PC
 
Posts: 519
PC Experience: Experienced
Location: Hertfordshire, UK
Pgh - See this Members User comments on their Profile page Pgh - See this Members User comments on their Profile page
Send a message via AIM to Pgh Send a message via MSN to Pgh
Default Re: I need a Linux Distro

Will mark as answered for now, anything else be sure to post back.

Thanks

__________________
I'm not Geek, I'm quarter Geek...



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old 12-28-2007
FatFool's Avatar
Bronze Member
My PC
 
Posts: 36
FatFool - See this Members User comments on their Profile page
Default Re: [Answered] I need a Linux Distro

I need help again, lol.

How the heck do I install DSL to Hard Drive?

I've looked around and seen somewhere it says open up cfdisk to make partitions but how do i find or use cfdisk? And how do i set up the partitions. And then how do I install Linux onto one of them? And whats a swap partition?

Uhh, sorry for all the questions.

Thanks

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #7  
Old 12-29-2007
tractordriver88's Avatar
Gold Member
My PC
 
Posts: 337
PC Experience: Experienced
Location: United States of America
tractordriver88 - See this Members User comments on their Profile page
Default Re: [Answered] I need a Linux Distro

1) Boot up the DSL livecd. If your computer does not support booting from CDROM drive, then download the boot floppy image from the DSL website and get the RAWRITE32.exe program and create a boot floppy disk. Then use the boot floppy + liveCD to start up DSL.
2) Open up an xterminal window (click on the A:Terminal icon or right-click on the desktop and choose a terminal) and type:


sudo -s
cfdisk /dev/hda

Assuming that you are ready to blow away all of your existing data storage (you might want to back up any special drivers and other important stuff in case you want to re-install the original OS), create 2 new partitions:
  • hda1 Linux Swap Type 82 Size (at least 128mb)
  • hda2 Linux Type 83 Size (the rest of the disk space, I recommend at least 2gb). Flag this partition as bootable.
Before you leave cfdisk, write the changes to the partition table with the Write option. If your hard disk is really big, try leaving some unpartitioned space for future use.
  • Your DSL installation will go to partition hda2.
  • Your DSL swap partition will be hda1.
3) Next, you will need to reboot your system, again with the DSL livecd ...
4) Then type:
sudo -s
mkswap /dev/hda1
swapon /dev/hda1 [If you get "device or resource busy" here, ignore it.]
5) Then follow the hd install script. The FAQ is at Notes on doing a **** Small Linux install .
So you type:
dsl-hdinstall
and follow the instructions EXACTLY. In other words, if it tells you to type (for example) "hda1" then you type in "hda1". But if it tells you to type in "/dev/hda1" then you type in "/dev/hda1". If you are given a choice like "(y/..)", and your answer is yes, type in y and hit Enter -- don't just hit Enter, and don't type the full word "yes".
You will also be prompted to choose your loader, either GRUB or LILO.
6) Your system will need to reboot again. Remove the CD, and this time boot to the hard drive and continue following the instructions.
Note: There have been many reported problems with networking disappearing after installing DSL 3.2.
Note: If you are attempting to install to a hard drive from within VMWare, you need to define your hard drive as an IDE, NOT the recommended SCSI.




A swap drive is like virtual memory on PC, you are assigning an entire partition to virtual memory. The general rule is to have the same amount of swap as you have physical RAM. I have 2GB RAM, so I would need 2 GB of SWAP.

__________________
Prework
Do the Prework to help us solve your problems!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #8  
Old 12-29-2007
FatFool's Avatar
Bronze Member
My PC
 
Posts: 36
FatFool - See this Members User comments on their Profile page
Default Re: [Answered] I need a Linux Distro

Ok thanks for that.
So hda1 (type 82) is 256mb
hda2 (type 83) is 3.75Gb (roughly)

Which partition do I actually install DSL on? (Im guessing hda2?)

Thanks
Tom.


Last edited by FatFool : 12-29-2007 at 02:34 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #9  
Old 03-08-2008
kayan's Avatar
Bronze Member
 
Posts: 13
PC Experience: Some Experience
kayan - See this Members User comments on their Profile page
Default Re: [Answered] I need a Linux Distro

Try Puppy Linux, smooth install, can run in usb disk,can run only in ram

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply


Go Back   PC Help Forum - Free Computer Help, Windows, Hardware, Software and more! > Operating Systems > Other OS > Linux




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Answered] want dual OS MS and LINUX help.... FREN Windows XP/2000 6 09-14-2007 09:32 PM
[Answered] Oops... cant boot linux anymore because I changed GRUB!!! saphead Linux 3 07-31-2007 02:21 PM
[Answered] Ubuntu Linux magisticalpimp Linux 15 05-06-2007 10:39 PM
[Answered] Which Linux Distro? bdude Linux 10 12-23-2006 01:58 PM
[Answered] Linux itszztom Linux 9 12-22-2006 11:33 AM


All times are GMT +1. The time now is 04:57 PM.