Distributions/Configurations For Specific Uses? 192
Page writes "My college (UMPI) is currently reviewing a proposal to collect old hardware from small businesses and assemble machines for those who do not have a PC. The issue came up as to what linux distro to use that will allow us ease of both setup and ability to lock down the machine so once they are out in the field, they cant be tinkered with by accident (thus preventing problems later). These will be used solely for the purpose of web activities (surfing/mail), and word processing and *THATS IT*. Does anyone have suggestions and an idea about how to go about a standardized (or a sort of embedded) configuration across variable hardware?"
Client/Server (Score:3, Insightful)
Whether a machine is a P166 or AMD 2000+ it'll be pretty much the same. Most colleges have networked dorms and such anyhow.
You might as well go with RedHat or your favorite distro, but when you're piecing computers together you can't do much about standards. Just hope for the best!
Too much bandwidth/effort (Score:3, Interesting)
Re:Client/Server (Score:3, Informative)
If you layer the network it should work fine.
first off 100mbit switches are not expensive, and 100mb suposedly can support upto 30 machines (the terminals them selves can have 10mb NICs). So use one Server per 30 terminals, and the Servers have two network cards w/o hard drives allowing them access to a central Boot Server. Maintenance should ammount to replacing dumb terminals, rebooting "servers". All administration can be done on the central boot server.
Pentium one class PCs with monitors are running less than $60 now. And they do pretty well at drawing pretty pictures on the screen. You can buy them up my the dozens and replace them just as easily. Especialy good when your dealing with college kids that tend to be rough on public equipment. (Imagine the faces of some moron who tries to steal one!!)
Re:Client/Server (Score:2, Informative)
Switches, on the other hand, are smart and direct traffic only to the machine that's receiving it. This frees a lot of network resources and means there can be much more than 100Mbps passing through a switch. A hub won't let you have 5 computers talking to 5 other computers at 100Mbps, but a switch will. The 100Mbps ones are also able to handle different speeds. In a home network that means that if you have 5 computers at 100Mbps and an ADSL/cable router at 10Mbps your network won't slow down, and you'll be able to transfer data at 100Mbps between your computers.
In this case what it means is that the server computer can have a fast network card because it sends data to everybody, but since the clients don't need so much bandwidth they can use a 10Mbps card. It's also even somewhat safer because a single client can't saturate the server's connection due to bugs or mischevous students.
Re:Not possible I'm afraid [Was Re:Client/Server] (Score:3, Insightful)
Mozilla is just bearable on my K6-200 with 96Mb of ram. OpenOffice just crawls.
As much as i hate to use MS products, on p100 class machines win95+IE5.5+Office95 really is considerably more usable than the linux alternatives.
Newer versions of MS Office might be OK too, i dunno i haven't used windows much for many years.
Re:Not possible I'm afraid [Was Re:Client/Server] (Score:3, Insightful)
as far as internet, you really can't configure that on a CD, so you would nead a small hard drive and an easy internet configuration tool. I would imagine a clean GUI over wvdial would work great, and be easily chopped together with expect and any random
We did this once... (Score:5, Informative)
(and for an industrial application...)
Using DHCP and BOOTP, we loaded the OS and the applications across the network.
The PC had no hard disk, no drives.
The boot server was itself booted from a CDROM.
So there was nothing to break or mess with.
For word processing you'd have to use a network drive but that makes sense for backups anyhow.
Modern Linuxes are pretty good at detecting existing and especially legacy hardware.
So this approach would work for your problem.
I've done this too (Score:1)
Pee Wee Linux!!! (Score:1, Informative)
I can't believe no one has mentioned Pee Wee Linux.
It rocks!
Everything is run in a ramdisk, so you can really tell the hardware "hands off" of the permanent storage. With the addition of a simple watchdog timer you can have a system that resets itself in the event of any mucking.
Here's the link:
the perfect OS... (Score:1, Flamebait)
*ducks*
No, no no. (Score:1, Funny)
I don't want to help you, because I think everyone should be able to play Xkobo.
Comment removed (Score:5, Informative)
Re:LiveCD a-la Gentoo setup? (Score:2, Informative)
You have to configure your partitions and the soundcard and any pretty much any other hardware yourself....and I doubt that the IT department is going to want to do that. They would have to develop a different CD for each system. It seems to me that the way things are going these days is to standardize software for both maintainability and security reasons.
To contradict myself, I could be wrong about all of this though :). I am not sure how it works, and have not used it, but Gentoo has produced a self-booting UT2003 demo disk that supposedly takes care of everything. If you could figure out how they managed to whip this up, maybe this would be the solution to your problem.
Re: (Score:2)
But what about printing? (Score:4, Insightful)
Re:But what about printing? (Score:3, Insightful)
Ghost (Score:1)
Re:Ghost (Score:2, Informative)
http://systemimager.org/
We've successfully cloned hundreds of linux boxes with it, and it supports reiserfs and ext3
the guys on the mailing list are extrememly helpful as well.
Re:Ghost - HELL NO! (Score:1, Informative)
First, make your image(s):
dd if=/dev/hda bs=512 of=/somepath/bootsector
dd if=/dev/hda1 of=/somepath/diskimage
Then copy it to a machine:
(format you fiel system using mkfs)
dd of=/dev/hda bs=512 if=/somepath/bootsector
dd of=/dev/hda1 if=/somepath/diskimage
Re:Ghost (Score:1, Informative)
Think Nic and Gentoo (Score:2, Insightful)
If you can download the software for the ThinkNic computers. This is basically a scaled back machine for internet browsing. You can use this as a model for scaling back services. Or you can get a distro like Gentoo, install the base system and include the services you want. Set up a user account and don't give the root password. This should lock the system enough that you can fix problems as root if needed but limits the users ability to install.
I would take the Gentoo option so that you compile optimised for the refurb machines you are using. This will help in performance over a generic installation. Then I would add the x servers and desktop, web browser, email, news client, and maybe open office, depending on your aims. Set up the user accounts. Give them access to those programs and space to save their documents in. Create xinit scripts to log them directly into x windows and they should be happy. If you focus on the process to do that you can make it an install procedure instead of a distribution and your machines will be optimised and the setup time in the end will be about the same.
*THATS IT* ? (Score:1)
I know administrators love locked-down machines, but sooner or later (most probably sooner) it will become an unnecessary limitation on some of the users.
Re:*THATS IT* ? (Score:2)
Even if a machine gets blown out by inadvised tinkering, how hard is it to swap in another, or re-image, etc. I'm sure you'd end up with a range of skill and ability levels, but the smart ones can do all the hard stuff and make cookbook proceedures for everyone else to start from.
Yep Thats It [was Re:*THATS IT* ?] (Score:2, Insightful)
These are people who have never used a PC before, or if they have, never learned how to use windows. These aren't college students, but people who live in poor areas and dont have access to a machine currently. Thats why its just for web surfing and email (the word processing bit was thrown in in case we need to give some to students here, but I think the term idea up at the top which I replied to may fit that, but anyway).
These arent people who will develop, or need the terminal (or ever install anything). People like someone's grandmother, or an aunt who has never used a PC. 10;1 says that if I did a background that had a fake startbar at the bottom, it would never register that they werent using Windows9x. Not stupid people, just technically illiterate.
FireCast Linux (Score:4, Informative)
You don't need to provide downloads of Linux (Score:3, Informative)
There is absolutely no requirement to make a distro of Linux downloadable -- as a matter of fact, I believe SuSE does *not* let people download CD images (or at least they have a major lag time between shelf releases and ISO releases).
The *only* requirement is that if someone purchases a copy of your Linux distro *and* if they ask for a copy of the source, you have to get them a copy of your source at a low price. That's it. You can sell source CDs instead of allowing downloads if you want.
Remember, Linux is free as in speech. Any beer freeness is incidental.
Knoppix -- bootable CD with Moz, Open Office, etc. (Score:5, Informative)
I second Knoppix (Score:2, Interesting)
Re:Knoppix -- bootable CD with Moz, Open Office, e (Score:4, Informative)
Re:Knoppix -- bootable CD with Moz, Open Office, e (Score:1)
Re:Knoppix -- bootable CD with Moz, Open Office, e (Score:2)
LTSP, but in the home? (Score:2, Insightful)
A machine that's locked down today.... (Score:2, Informative)
It is for this very reason I recommend SuSE on the desktop, as they offer free and easy updates via YaST, and SuSE boxen are extrememely easy to set up. The SuSE personal firewall is fairly nice and intuitive for the average user as well. Additionally, it comes bundled with Open Office and a slew of browsers and email apps.
Re:A machine that's locked down today.... (Score:1)
Anything should work. (Score:3, Insightful)
PCI hardware is rarely a problem with newer kernels/distros, but if you're talking P100s and 486s with isa cards you may run into problems requiring custom setups (might be fun.)
Linux distros are by default (I'm going to regret saying this) locked down, but (I'm regretting) should be tweaked with boot passwords, firewalls (and updates.)
If possible running the machines as thin clients is a option to considere. (Although you would need to add a few strong servers which will add to your sofar 0$ budget.)
LTSP / K12LTSP (Score:4, Insightful)
Word of warning, do not try and place the LTSP servers in a "server farm", spread them out over the network.
By having the computers as diskless workstations you can greatly simplify the long-term IT overhead of these systems, while at the same time accomplishing your goals.
For LTSP See:
k12ltsp.org
ltsp.org
For the modified DHCPd to do Mac NetBooting:
staff.harrisonburg.k12.va.us/~rlinew
Re:LTSP / K12LTSP (Score:1)
kiosk mode (Score:3, Informative)
I would suggest using icewm as a window manager. It runs fast on slower machines and the configuration files are easy to read and understand even before your read the fine manuals. I would also suggest mozilla as your web browser. You can really restrict it by changing lines in the
Well... LindowsOS is out of the question (Score:1)
Re:Well... LindowsOS is out of the question (Score:3, Informative)
And that's it. Every device correctly detected, network and a firewall correctly installed, and the OS updated via Debian's apt and the network.
It is almost as fast to install from scratch as to boot a normal PC.
So, you can 'lock down' the PC simply by reinstalling at will. Say every Monday morning, at 6am. I'm sure this could be automated.
Depends (Score:3, Informative)
What kind of people will be using them? the guy who wrote the slapper worm while he is in jail, college students, or members of staff who you can slap on the wrist???
the point is:
any machine you can fysically access can be tampered with. period. If you make it a thin client you'll still be able to remove the bootP, put in a harddisk and make it your own.
So de level of security and effort you put into this depends more on the public thats going to use them than on the distribution you use.
thin clients are very easy to maintain, have few rotating parts, are not very attractive for theft and can be replaced pretty quick.
Two solutions to the problem (Score:2)
1. Establish a BOOTP and DHCP server.
2. Set your computer's BIOS configuration to boot off the network.
3. Install the applications you need onto the server.
4. When the workstation is turned on, it will load the operating system from the server, and work off the server.
Any system would work for this, but if you're looking for cost efficiency, this configuration should work nicely:
- Any old Socket 7 motherboard.
- A Pentium 200, maybe 233.
- 64mb ram, maybe 128.
- Standard network card (it would be best if this was onboard)
- 15" Monitor
Option 2:
Install a base distribution of Linux, something that would be simple and easy to understand (i.e. Redhat, mandrake or suse). Base config would be the same for this, except you would need a 1.6gb hard drive.
Sounds like you need JWZ's kiosk. (Score:2, Informative)
Try Redhat 8 (Score:2)
I am in the process of setting up a old pc for a bud to use as a home pc with just dialup, web, email, (MOZILLA!), Open Office, and a couple of games on it and I am setting up a Kickstart file to save for future use. You can tinker with the setting and save it to a floppy and use it to clone systems with a similar configuration.
I am assuming these PC's will be off-site, and so remote X sessions would be out of the question as posters above have sugested... Bummer.
Redhat 8 is real nice for me so far, looks good, works good, is less filling, and AFAIK, you can make it fairly idiot-proof.
Good Luck.
Re No don't (Score:1)
There are several (Score:3, Informative)
QNX web demo and Yahoo mail services. (Score:3, Insightful)
Community Service for Geeks (Score:3, Interesting)
Not having tech skills can be a real blow to class mobility. There's reasons why geeks are frequently thought of as elitist. We're not known as the most socially or financially generous group. We don't tend to help others up, just people within our own community. The hardware races we engage in seem like a flagrant waste to people that can't pay their power bills as we whine for more RAM. Contributing refurbished machines to needy families could go a long ways towards improving our social stigmas. It could also help to ensure that struggling families can add some valuable skills to their resumes without investing money they don't have; giving them skills gives them better earning potential, and a way to improve their situation.
Even aside from that, it's just cool to watch a 6-year-old learn how to work a computer. It's undeniably cute.
Is there a counrty-wide group that does this that we could hook into? It'd be nice if we could get requests and need lists from more than just the university community.
Re:Community Service for Geeks (Score:1)
I would love to help with something like this. I have a couple of old boxes sitting around,
Re:Community Service for Geeks (Score:2, Insightful)
Speak for yourself, I personaly built and gave away 14 computers to deserving families last year.
How do I decide who is deserving?
1 or more children, no computer. Note: a 486 or less counts as no computer.
How do I get parts?
1. I am a geek, this stuff is attracted to me.
2. My customers give me old hardware, that I have replaced for them.
3. My own preloved parts.
4. Once in a while I even kick in a few bucks of my own.
Why do I do it?
1. It feels good.
2. I am greedy, and want to have that feeling all the time.
Just mount /dev/hd1 ro (Score:1, Insightful)
Mount your
Mount
Don't give out the root password.
Done!
Maybe a live CD.. (Score:1, Insightful)
Several Live CD distro's exist, such as demolinux, which has a version that comes with OpenOffice..
A plethora of options (Score:2, Informative)
Kawaii Linux (Score:3, Informative)
The target for Kawaii Linux is people who are refurbishing old computers for distribution to charities and underprivileged kids. A secondary target is those who want to play with Debian but are intimidated by the usual install process, although Xandros and the Progeny Installer address those issues too.
This will be a K.I.S.S. distro in the tradition of Lycoris. The goal is a fast install with the best of breed amongst lightweight applications. If you are interested in the project, email me.
Re:Kawaii Linux (Score:2)
Re:Kawaii Linux URL? (Score:2)
It's not quite at that stage yet...I will keep everyone posted. When the website's up there will be an announcement in my journal.
Call it vaporware if you must, but "trial balloon" is a more accurate word for my post. And my evil plan is working...I got two offers to alpha test in my email box this afternoon. ;-)
But this is VERY serious. The stories about computer waste being dumped on the 3rd World [usatoday.com] makes this very, very necessary.
Again, you can email me if you are interested in the project.
Normal install + cleanup login script (Score:4, Insightful)
You will need to probably run a very lightweight desktop such as Xfce, if your hardware is very old. If you use Mandrake, you can play around choosing a minimal set of packages in the install, and then save the packages list on a floppy so that you only need to do the selection once. Installing in the rest of the machines will be much faster. Probably half an hour or so per machine if you do a light install.
Good luck, and thank you for choosing GNU/Linux :-)
The right tool ... (Score:1)
... directly from previous news [slashdot.org].
I asked this once. (Score:2)
But, if you're working in the 200-300Mhz range instead of the 1-200 range, or have decent hardware... Bah. It's a very hard call to make. I tried three different distributions and two OS options before settling on handing over my old Windows 98.
Not to look a gift horse in the mouth, but... (Score:2, Interesting)
Basically you'll just be giving these people glorified word processors instead of real computers. While I applaud this effort, it's really a very short sighted (imho) goal. It reminds me of the parable about giving a man a fish and teaching a man to fish. You are very much just giving away fish and locking out the possibility of learning to fish.
I understand that if you give them out with root passwords you'd probably just end up with mostly unworking boxes in a short time. You'd probably also have a support nightmare, with people expecting help with their free computer. I'm just wondering if there isn't some middle road where you can leave things semi-open to change and configuration without leaving it completely vulnerable.
As for advice, I dunno, I've always been better with questions than answers.
HomeBase desktop (Score:2)
Screenshots [oeone.com]
Desktop, Try OEone Homebase (Score:1)
Not too difficult... (Score:2)
I'd say that using a recent redhat version with a properly configured kickstart floppy disk (NFS-mount the installation media, lock down the GRUB password, only install a certain package set, etc), you should be in good shape.
I've done kickstarts before, and they are really slick...
I was thinking about doing this... (Score:2, Insightful)
If you donate a linux box to someone who doesn't own a computer, what are the chances that they will be able to operate it? How will they keep up on all of the patches? What will they do if they have problems operating linux? Generally they can't get just anyone to help them out because linux users are a minority (granted, this isn't so much of a problem in a university setting). Typically someone who doesn't own a computer isn't exactly computer literate. How can we expect someone who doesn't even know how to use windows correctly navigate linux? Let's face it, they aren't going to spend their time pouring over technical books. Overall though, I guess it's better to have a computer and not know how to really use it than to have nothing at all. Just my 2 cents..
Oeone (Score:2)
We're doing this as well (Score:3, Informative)
Several of the people here have made itneresting suggestions, but I doubt they really read the question. There are several things that can be inferred from your statement.
1) These machines are going out into "the field", meaning network will be, at best, occasionally dial up.
2) You are getting hardware dicarded by businesses. My guess is that this is pentium 2 hardware at best, and probably mostly pentiums. and probably less than 128 megs of ram...likely 32 and 64.
We have this exact problem. We have a mess of older hardware and want to get as many machines as we can out to the people.
So what's our solution? We are still exploring, Currently, though, the front runner is gentoo compiled on another faster box (but with optimizations for the target platform, a pentium) and then image the discs with mondo-rescue. mandrake is also in there, as well as (of all things) corel.
What are we currently running for software?
1) abiword
2) opera (static, free download version)
3) gnumeric
4) gnucash
5) icewm (with the Pure95/Windows 95 theme)
6) rox (with the pinboard enabled for desktop control)
7) sylpheed
8) tuxtype (need for a typing tutor)
9) gaim (I am a firm believer in instant messaging)
And there are several "support" programs as well.
Currently, it's taking up nearly 1.5 gigs, but I compiled it rather fat...with all the library support. We lefted 1/2 a gig for home and 128 meg for swap.
And so I tested it out on my athlon, but I turned myself down to 32 megs of ram, and it's still pretty damn fast on my desktop. Probably be just fine when i get it imaged out there. My intention will be to configure it with standard svga drivers in some lower resolution that almost any card will support (800x600, 16 bit color) and try to be as standard as I can with the sound. I compiled the kernel fat as hell (1.4M, 90% of everything actually compiled in, not as modules
email me (musashi@owt.com) or contact our lug (3clug@3clug.org) and we'll swap notes.
done this - chroot (Score:5, Informative)
Anyway, I'm a coder, not admin, at heart, so I ended up doing a lot of custom code (custom window manager, SSH front-end, stuff to get netscape to start up chrooted, etc) and it was a big time sink for the little benefit that it provided (people didn't like using the kiosks). Have fun.
Multiple Options (Score:1)
You could also load a full distro on the HD. With utils like kudzu, Linux handles multiple hardware from one image alot more gracefully then other OS's. Choose a smaller distro like Vector Linux [ibiblio.org]. It was designed to be used on older hardware and has version even for 486 machines. Others have suggested IceWM. That is a good choice as it is liteweight and has similiar interface to Windows. For Browsers, I suggest Galeon (GTK+) if you have room for the GNOME libraries and Mozilla to be installed, another decent choice is Pheonix, though that is kinda new. For email, something lite like Sylpheed (GTK+ again) or Kmail (QT) is good. For Office, Abiword adn Gnumeric (GTK+) is excellent for the Lite stuff. If table support is necessary, then use OpenOffice (and maybe still use gnumeric). A normal install for Vector runs about 300mb, so most any machine should have the space for it.
Killer configuration (Score:1)
My usual 2cents (Score:1)
may be helpful as restricted usage environments.
OEone HomeBase Desktop (Score:2)
Re: OEone (Score:2)
Really, I'd love OEone on this type of system, but it's just a little much I think.
any distro should work (Score:2, Insightful)
- how will these people access the net once they have the machines at their final destination? ethernet? modem? how will
they get network information? static? dhcp?
- how do you want to assure that the machines are not 'tinkered with'? no root? no sudo?
- how do you want to arrange for security / functionality updates / upgrades? will the people need to come in with their equipment to you? will the updates take place after the user is done surfing (a la AOL)? will they be automatic (you run 'current' on a central server with updates, they run a cron job as root to check for updates once a day, say)? will a pop-up ask them if they want to download updates now? schedule for later?
Questions abound. I can say for certain that most of the questions just posed are solvable with RedHat, because I've done it here (albeit for a more less unified platform hardware-wise). You can set up a kickstart server, auto-partition drives, throw in a set of custom packages + dependencies, configure various subsystems etc etc. You should try to determine the ranges of hardware configurations you're likely to expect (e.g. IDE harddrives between 500 and 4000MB; video cards with no more than 4MB RAM) and set up your kickstarts accordingly. You could also set up a central file server (with quota) so that any document the end users wants preserved in case of a hardware failure on their end, will be. A central server with software updates, available to a pre-determined ranges of IP addresses, would provide your users with an easy way of keeping their machines up-to-date on all the latest ssl/ssh patches.
How many machines total are you talking about here? 100? 1,000? 10,000?
If you'd like to think about the RedHat path, I can point you to some pretty decent documentation which will take you through more details.
Sherloqq
One word - Knoppix (Score:2)
locking down pcs (Score:2)
(emphasis mine)
It seems like your reason for locking these machines down is to prevent calls for technical assistance, but another possibility occurred to me. Some schools have policies saying that school computers and internet access are to be used for educational purposes only, and I thought yours might be trying to extend this to these school-manufactured computers. If this is the case, be aware (if you're not already, which you probably are) that there is no way to lock down a PC when someone else has unrestriced physical access no it (i.e. it is in their dorm room). You can't prevent someone from unplugging it, taking out the cmos battery for a few minutes, putting it back together, and installing their own linux distro (or windows 95) so they can play quake [II] with their buddies on the lan.
Other than that, just try out any of the excellent distros/configurations posted above, and make sure they have enough ram
Old Hardware = FreeGeek (Score:1)
Choose Easy Restores (Score:2)
Create a prototype system with all the software packages necessary installed and configured. Then, dd the partition into an image file and burn it onto a CD.
Make sure that the user's home drive is network mounted via NFS.
If the user inadvertently breaks something, tell him to pop the restore CD in and reboot. Have a script dd the image back onto his hard disk partition. Ta-da!
This may be your path of least resistance.
Computer Angels (Score:1)
Take a look at our website for more info.
Pro Bono (Score:2, Interesting)
Three cheers for your enlightened college. May I ask where you go to school?
That's it huh? (Score:1)
Liar.
I don't know how many times I've heard someone say that a computer will only used for a particular purpose and then see it eventually be used for all sorts of things. When deciding which configuration you are going to use, I would keep this in mind.
If hardware changes than it's difficult (Score:1)
good idea, not so good requirement. (Score:2)
ps. This'll also let 'em tinker, which is how we all got where we are today. Ok, don't tell them that...it could be discouraging.
My suggestion is... (Score:2)
If you put the hardware in the physical posession of the students, it's going to have all sorts of things done to it, no matter what you try to do to stop it.
I understand that the reason for this is to limit the support overhead, but you are not going to win, and if you go in with the assumption you are, you are going to get hurt much worse than if you don't.
-- Terry
Easy and hard (Score:2)
But the problem becomes your wide range of hardware. Making a single custom distribution CD or a single network boot image that will work on all donated computers will be extremely difficult and time-consuming. At some point you'd probably decide to buy all-the-same $199 Wal-Mart PC's [slashdot.org].
Spreadsheet? (Score:2, Informative)
Old hardware rules out OpenOffice, but maybe something a little slimmer. Anybody know of a good "lightweight" spreadsheet? I guess it depends on what "old hardware" means too. PII's are probably "old" to some companies, and gnumeric or kspread would work fine.
Linux is wrong way to go. (Score:3, Funny)
Linux is horrible for centralized administration and locking down the desktop. My way you don't have to network anything which saves time and money. You don't have to worry about someone stealing the CD you are booting from. And since you are pirating the software Microsoft doesn't get any money.
Despite the naysayers, Windows 2000 runs great on a P133 with 64 megs o' ram, especially when all you are doing is word processing or surfing the Internet.
NIST has a great guide for securely configuring a Windows 2000 workstation. It takes you step by step through each of the items you will need to configure. If you want to get a bit more jiggy than my 6 point solution above, check this out: http://csrc.nist.gov/itsec/download_W2Kpro.html [nist.gov]
Re:Yes (Score:2)
All hail AC!
Why exactly would these people want to spend money on a win95 licence for each machine?
Otherwise it be great except for the security holes and virus propagation.
Why did you recommend 95 again?
Re:Yes (Score:1)
Re:Use something stable (Score:1)
Re:Use something stable (Score:1)
Re:Important: (Score:1)
You would be better off giving them a "rescue" CD that reformats their drive and puts the OS back to where it was, painful, but users remember that kind of pain and think "...hmmm last time I tried something I was not quite sure about, I lost everything."
Cuts down on support costs too
User: My computer won't start?
Support: Insert your "rescue" CD and restart your system, have a nice day.
It won't stop them all, but it will stop some.
Re:Important: (Score:1, Interesting)
This kind of attitude really bugs me. I work in an IT department, and the attitude here is that the average worker's data is worthless. If the user messes up one little thing they just do a restore and wipe out everything. Thanks but no thanks.
You have to respect the data of the user. Remember, they trust what you say about computers like they would trust a doctor. Don't tell them it can't be done if it can, that's just wrong.
Re:Important: (Score:2)
Re:Important: (Score:2)
Re:Important: (Score:2)
A useful variant of this for home users, or college students like myself, is to create a large files partition to go along with your OS partition. Put all your work, homework, MP3, etc. files on it. Also, have an 'installfiles' folder on it in which you archive the installers for the programs that you use. This makes rescuing and/or reinstalling Windows much less painful; you lose very little data, if any, and you don't have to download everything again.
wiping PCs (Score:2)
>IT department, and the attitude here is that the
>average worker's data is worthless. If the user
>messes up one little thing they just do a restore
>and wipe out everything. Thanks but no thanks.
That's why the IT department provides a server that users are supposed to save their data to.
Saving data to the server has several advantages, i.e. the data is backed up, and nothing is lost when something (inevitably) happens to the workstations.
You work in the IT department? Are you doing desktop support? Do you realize that troubleshooting a workstation can take days, but you could Ghost the same workstation and have the user back to work in less then an hour?
Re:Red Hat (Score:1)
I'd install NetBSD (Score:2, Informative)
Re:I'd install NetBSD (Score:2)
If you stick to old i386 PC and want to keep Linux on all machines, I suggest Slackware, or something like Tiny Linux [seul.org], which is based on an old version of Slackware.
Re:What was that about FreeBSD? (Score:2)
It's minimum install is 60Mb.