How to choose which Linux?
Moderator: General Moderators
-
fractalvibes
- Forum Contributor
- Posts: 335
- Joined: Thu Sep 26, 2002 6:14 pm
- Location: Waco, Texas
How to choose which Linux?
I am going to have an old compaq 333 mhz pc to play with soon, wondering what 'flavor" of Linux might work on it. I know zero about the pros and cons and differences between the various varieties.
Any recommendations? Debian? SUSE? Red hat?
thanks,
fv
Any recommendations? Debian? SUSE? Red hat?
thanks,
fv
-
fractalvibes
- Forum Contributor
- Posts: 335
- Joined: Thu Sep 26, 2002 6:14 pm
- Location: Waco, Texas
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
all you need is enough time and courage to read all those manuals, howtos and sometimes rfcs...
but as time goes by you will probably discover/learn things that where a real pita i a windows environment. But there will be also things that are easier to accomplish in windows than in *nix. Just as a programming language, choose the right tool for the right job
but as time goes by you will probably discover/learn things that where a real pita i a windows environment. But there will be also things that are easier to accomplish in windows than in *nix. Just as a programming language, choose the right tool for the right job
something i did 15 minutes ago.
i have a text file (+300k lines) and i need to remove all those with ,"Picture", in it.
i know you can install cygwin or gnu-win32 things to do this, but it just doesn't feel natural (for example: screen doesn't work (well) in a win32 console)
i have a text file (+300k lines) and i need to remove all those with ,"Picture", in it.
Code: Select all
grep -Ev "e;,\"e;Picture\"e;,"e; old.txt > new.txt- Pyrite
- Forum Regular
- Posts: 769
- Joined: Tue Sep 23, 2003 11:07 pm
- Location: The Republic of Texas
- Contact:
I use grep everyday in windows xp. please tell me something about Linux though (not some OSS software) that makes it easier to do something than in Windows (I currently can't think of a single one).
*I mean I'm not trying to preach and stuff, or start a debate, but you can't use grep as an example. You might say, oh but you had to install it on windows, but I could say, well technically you had to install it on Linux too. I've just found that actually using Linux as an OS takes more time to get stuff done than in Windows. Abeit, Linux is much prettier and fun to get stuff done with, just slower. It's not what one can do that the other can't. I'm just asking if you can give a real good example of something that is easy to do in Linux than it would be in Windows.
*I mean I'm not trying to preach and stuff, or start a debate, but you can't use grep as an example. You might say, oh but you had to install it on windows, but I could say, well technically you had to install it on Linux too. I've just found that actually using Linux as an OS takes more time to get stuff done than in Windows. Abeit, Linux is much prettier and fun to get stuff done with, just slower. It's not what one can do that the other can't. I'm just asking if you can give a real good example of something that is easy to do in Linux than it would be in Windows.
- andre_c
- Forum Contributor
- Posts: 412
- Joined: Sun Feb 29, 2004 6:49 pm
- Location: Salt Lake City, Utah
most linux distributions come with package managers...
for example on fedora i can do
and have apache installed automatically
or in debian do
and have all my software upgraded to the latest available version
that's one of the reasons i like linux
for example on fedora i can do
Code: Select all
$ yum install apache2or in debian do
Code: Select all
$ apt-get dist-upgradethat's one of the reasons i like linux
imho it's all about the available tools and libraries. for example i like the documentation for glibc much more than the win32 docs you find on msdn.Pyrite wrote:I use grep everyday in windows xp. please tell me something about Linux though (not some OSS software) that makes it easier to do something than in Windows (I currently can't think of a single one).
But a lot of tools simply don't have a win32 port. So there is no way to instal them on a windows machine. (Btw, that is also (meaby even more) true for win32 applications that are not available for linux).Pyrite wrote: *I mean I'm not trying to preach and stuff, or start a debate, but you can't use grep as an example. You might say, oh but you had to install it on windows, but I could say, well technically you had to install it on Linux too.
It would be nice if you could give us an example of what takes less time to get it done in windows.Pyrite wrote: I've just found that actually using Linux as an OS takes more time to get stuff done than in Windows. Abeit, Linux is much prettier and fun to get stuff done with, just slower.
- I can easily choose on which display (even a remoteone) i want an application to be displayed (using the DISPLAY var). Afaik, windows only has "remote desktop connection" and "vnc".Pyrite wrote: It's not what one can do that the other can't. I'm just asking if you can give a real good example of something that is easy to do in Linux than it would be in Windows.
- Try to find out what an installer did. Easily with a .deb package, a major pita to find out in a installer.exe (and yes, there are still programs that prefer to overwrite whateverlib.dll in your windows directory)
- Backup/restore/resize a filesystem. And you're not limited to ntfs/fat32
- (un)load kernel modules. without having to reboot.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
I have to admit, I love linux (the only flavour I have ever used is SuSE).
I couldn't libe w/out windows though.
I must get around to reinstalling linux on my machine... wiped my HDD a while back and have just lived with windows since. Besides, linux is like ermm £0.00 if you download it from their ftp.
EDIT| I really sure cure my fat-finger syndrome. I make so many typos
I couldn't libe w/out windows though.
I must get around to reinstalling linux on my machine... wiped my HDD a while back and have just lived with windows since. Besides, linux is like ermm £0.00 if you download it from their ftp.
EDIT| I really sure cure my fat-finger syndrome. I make so many typos
- Pyrite
- Forum Regular
- Posts: 769
- Joined: Tue Sep 23, 2003 11:07 pm
- Location: The Republic of Texas
- Contact:
You know what, just forget it. I think all of you are missing my point. I was asking to name things that both Windows and Linux CAN do, but can easier be done on Linux. Not what one can do that the other can't.
andre_c probably hit on it closest though. Although I am sure that there is probably some type of package manager for Windows that could download and install software. Although for system updates, Windows-Update can be run automatically to download and install the latest updates.
A reverse example would be: both have a clearscreen command, but it is easier in Windows to type "cls" than to type the full "clear" in Linux.
And you can't say something like, on Windows you are restricted to fat32/ntfs. Well technically on Linux you are restricted to Linux filesystems though. Last I checked, you can't run Linux natively on NTFS anymore than I could run Windows on ReiserFS.
andre_c probably hit on it closest though. Although I am sure that there is probably some type of package manager for Windows that could download and install software. Although for system updates, Windows-Update can be run automatically to download and install the latest updates.
A reverse example would be: both have a clearscreen command, but it is easier in Windows to type "cls" than to type the full "clear" in Linux.
And you can't say something like, on Windows you are restricted to fat32/ntfs. Well technically on Linux you are restricted to Linux filesystems though. Last I checked, you can't run Linux natively on NTFS anymore than I could run Windows on ReiserFS.
Oh, in that case downloading and install applications is much easier on Linux. With apt-get you download and install in one proceedure as opposed to downloading, unzipping and then installing. Minor difference. But both install applications. Linux just does it better. I think timvw was trying to say that in Linux after you install an app. there are specific list of modules/libraries and where they were installed available to you. But in windows you have the "registry" a bottomless undescribeable mess where viruses and spyware can hide out and you'd never know it. So for running applications - Linux does it better.