Operating Systems > Linux and UNIX
Old Linux and GUI for Old laptop
Calum:
it probably can, but i think you are supposed to have at least 16MB, and optimally 32MB. i have a feeling 4MB will take a bit of tweaking to run X.
you might be interested in this link:
http://gd.tuwien.ac.at/opsys/linux/baslinux/
BasicLinux is a linux which is based on slackware. it is optimised for old computers with limited hardware resources. They provide really pared down slackware packages that work, but do not provide anything like the functionality of a full slack linux. also, their use of busybox, excellent though it is makes it very hit and miss installing extra software on your system, since it is always possible you could wipe out your main system utilities (like cd, rm et cetera). If i were you i would install a minimal text only slackware 9.0 and then go and thoroughly read up about basiclinux until you are confident you can follow their instructions to get X working (i am not 100% sure of what these instructions are at the moment i haven't used basiclinux since version 1.7 which was very different to its current version).
edit:
here are the instructions for adding X. I suggest as i said that you install a small slack installation with only the components you require and nothing else, then follow the X installation instructions i linked to here and see how you go. those instructions worked for me, but i was using basiclinux 1.7 (based on slack 3.5 but not as versatile) and i had 32MB.
further edit: if you are using the installation instructions for how to install X on basiclinux, but you are using slackware, use "installpkg" instead of "pkg". i would recommend using "installpkg -warn" before you actually install them too, just in case, see man installpkg for more details.
[ May 09, 2003: Message edited by: Calum: hopelessly outnumbered ]
LordWiccara:
Hello, i tried a small Linux called, ironically, Small Linux. After about an hour of trying to get the boot disk to work on a thinkpad, i used the command Linux Root=/dev/fd0 floppy=thinkpad, and it worked! Then i spent about another hour on formatting the drive into ext2, but i can now do that without any problems. Now im having trouble mounting the hard drive. i type in mount/dev/hda1/mnt and it does not work, and im confused. ive tried about a million other things, but i WILL NOT give up...im too determined
Calum:
you have missed out the spaces.
do "mount /dev/hda1 /mnt/" and it should work. use "man mount" for more information. or perhaps you might need to do "info mount" or "mount --help" if you are using a stripped down linux with less man pages than usual.
Copperhead:
You need to define the filesystem type you are trying to mount. Plenty of ways to do this:
This is all from the man mount page:
What the mount man page will not tell you is that you need to create "mount points" so you can cd into a filesystem after you have mounted it.
As Root:
$ mkdir /mnt/harddrive
then:
$ mount -t vfat /dev/hda1 /mnt/harddrive
$ cd /mnt/harddrive
$ ls -la
You should see all of your files on that harddrive, as well as have full read, write, and execute permissions to them.
Of course, it is easier to edit /etc/fstab to define your filesystems on your harddrives, removeable media, and their mount points. Then you can just use the command:
mount -a
if you've defined them all correctly. This is all explained in the FAQ at the top of the page.
Calum:
that's a nice little tutorial, i was assuming that the filesystem type would be autodetected by mount, but it may not be on some versions and with some filetypes (i know from experience! )
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version