Tom's Hardware > Forum > CPU & Components > CPUs > -Linux vs Windows-
Word :    Username :           
 
- 0 +

Last message on previous page:

Quote :


Just gave a try to SUSE on a spare HDD I had and my impressions are:



Ack... SUSE?

Quote :


1-Does not appear to run blender (though it was a zipped package for Linux i386 and I don't know neither what a 64bit SUSE is nor what the i x86 means) :oops:
2-Overall reaction seems slower (but I did no tuning etc)



SUSE...

Quote :


3-SUSE recognized both of the cores and c'n'q worked, because they were both shown at 1000Mhz idle (though that app was just gambling with the multi because OC-ed as is, it should run ~1100+MHz)
4-RAM consumption was shown @ about 90% 8O , with ~40% taken my the system + few utilities I had opened and ~50% as "HD cache" :?: :!:



yes this is because portions of the hard drive are cached in memory that currently isn't used for anything else. This speeds up reads/write operations. You weren't using that memory for anything else, why not use it to make your system faster?

Quote :


5-no way I can make my modem work on that system but I knew it way before.
Overall, the interface experience was pretty pleasing and I had the impression that the 'linux alienation' myth is just that; people very used to windows find themselves a bit lost on a new system but the inverse could happen as well.



Did you use KDE or gnome? Lots of other window managers to try out too, found this link, Fluxbox, enlightenment, and IceWM seem pretty popular.

Reply to pshrk
Sponsored Links
Register or log in to remove.
- 0 +

I actually installed it with a gnome interface and was sitting on it, looks fine.
Looks like SUSE is pretty unpopular and my first experience with it gave me some anticipations of why, so I'm going to download the CD of the 64 bit ubuntu and try it out. thanks a lot for all the explanations :wink:

Reply to m25

Suse has only lost popularity because of the childish reaction of linux fanboys when Suse signed an agreement with Microsoft, essentially stating they would collaborate on "Enterprise level software." Now In the exchange Microsoft can actually recommend a linux distro to its customers, that being Suse Enterprise. This could of been a big win for linux, but as you could imagine it was seen as a stab in the back. Which obviously it isnt since the deal only adheres to Enterprise level software and not the free distros that Suse participates in.

I've used Suse and many other distros for quite some time. I always had a strong liking for Suse OpenExchange. Greatest exchange system Ive ever had the pleasure of working with.

You are pretty much going to get the same feeling with each linux distro. They will all appear slow at times, which is a fault of the modularized design of linux as a whole. Ubuntu, Debian, RedHat, Suse that feeling doesnt change much between them.

You definitely used the wrong distro for your installation. It should have been the x86-64. Could be a major role in the result of your experience.

Quote :

x86 = i386

This architecture supports the following processors:

* Intel Pentium 1-4, Pentium M, Celeron, 32bit Xeon, Celeron D, Core Solo/Duo
* AMD K6, Duron, Athlon, Athlon XP, Athlon MP, Sempron


x86-64 = i686

This architecture supports the following processors:

* AMD Opteron, Athlon 64, AMD Athlon 64 X2, Sempron 64, Turion 64
* Intel Xeon, Xeon MP, Pentium 4 Extreme Edition, Pentium D, Core 2 Duo
* Processors based on AMD's AMD64 & Intel's EM64T (Intel's implementation of AMD64)

PPC

This architecture supports the following processors:

* G5 / G4 / G3
* 604 / 603 / 601
* IBM RS/6000
* IBM pSeries
* IBM iSeries

Reply to sandmanwn

x86
i386 = Intel 386 and later
i486 = Intel 486 and later
i586 = Intel Pentium and later, AMD K5 and later
i686 = Intel Pentium Pro/Pentium II and later, AMD Athlon XP and later.

x86_64
Intel Pentium 4 and Celeron Prescott/Cedar Mill
Intel Pentium D
Intel Core 2 Duo (NOT Core Duo)
AMD Athlon 64/Opteron and X2

PPC
PowerPC 601, 603, 603e, 604
PowerPC 75x (G3)
PowerPC 74xx/75xx (G4)
PowerPC 970 series (G5)
IBM RS/6000, all POWER CPUs

Reply to MU_Engineer
- 0 +

So an i386 program does not run well on a i686 Linux?!
And what about SSE, SSE2, SSE3 and x64 optimizations; I always hear talking about these for Windows apps and never for Linux applications.

Reply to m25
- 0 +

All of those optimisations are available under Linux as well. For instance, I run Folding at Home on my 64-bit Ubuntu. This program takes advantage of SSE acceleration, as does transcode.

It is important that your kernel support the optimisations, however. Follow Mu_Engineer's table to get the right kernel for what you need. I see little reason not to use the x86_64 kernel version. You can always run 32-bit software in the 64-bit OS. The only problem I can figure is driver support, but I've had no driver support problems on my hardware with the latest distributions. I did have to get the nVidia driver separately, but that was as simple as following the instructions from a webpage and typing three commands into a console.

Reply to HotFoot

An i686 CPU will run applications compiled for generic i386 about as well as the CPU would run generic i686 code. In my experience, it's really not until higher-level optimizations and such are employed that there is much improvement over the standard "-mcpu=i386 -O2" as it's an okay optimization level already.

These things are most certainly supported in Linux as well. You can add MMX, 3DNow!, SSE, SSE2, SSE3, control the bit width, and add a *huge* of other factors in what CFLAGS/CXXFLAGS you feed to the compiler. Type in "man gcc" into the terminal to get all of the possible flags to send to the compiler. Note that on a 64-bit system, all programs are compiled by default as x86_64 and that spec includes automatic SSE support up to SSE2 as no x86_64 chip does not support SSE2. You can also make the 64-bit compiler spit out 32-bit code but you can't generate 64-bit code on a 32-bit OS unless you have a cross-compile toolchain set up. You can run 32-bit code on 64-bit Linux OSes ONLY IF your kernel and OS is set up to allow this. It's the default on just about every distribution out there, but it can be disabled, so that statement is not 100% true.

And about getting the most optimized kernel...if you really want to get the most optimized kernel, grab the source code and compile it. That way you can set things like the actual CPU you're running, as well as the I/O scheduler and other things.

Reply to MU_Engineer
- 0 +

I think one of the most important things to look for in a linux system is the package management system. In my opionion Gentoo and Ubuntu have the best package management system, but try out all the distros and find which one you like the best, your taste will probably change as you get more experience.

Reply to pshrk

I'm gonna break some news to a whole bunch of people not just on this forum but in the Linux world in general.

Ok, guys. Listen up. Kindly wake up and smell the coffee. As much as I can appreciate:

You can add MMX, 3DNow!, SSE, SSE2, SSE3, control the bit width, and add a *huge* of other factors in what CFLAGS/CXXFLAGS you feed to the compiler. Type in "man gcc" into the terminal to get all of the possible flags to send to the compiler. Note that on a 64-bit system, all programs are compiled by default as x86_64 and that spec includes automatic SSE support up to SSE2 as no x86_64 chip does not support SSE2.

Any regular Joe with kids, a mortgage and car payments who uses Win to make a living does not want to see that. You might as well try to get him to learn FORTRAN in order to balance his checkbook. Why do people use Win? Because they know how. Most people who work on Win don't give a rat's bunghole if an OS is Unix or Eunuchs, all they wanna know is that it will run the apps that they need to get through a day's work and get paid.

Please realize that THE MAJORITY of people who use Win every day DO NOT HAVE THE SLIGHTEST CLUE AS TO:

Installing the OS
What the RUN command does
What the Registry is
What System Restore does
How to Defragment or why
What DX10 is

and on and on and on.

It is very easy for those of us who have a clue to be able to determine from our ivory towers what the users need and thus go off to add a few more layers of complexity to something that's already too damn hard for Mr. Joe to grasp.

There is only one thing standing in the way of Linux taking over the world. And that is distance from the geekizoid developers.

Captain Robert April's Program (Also known as CRAP) is simple. When you buy a CRAP Linux install disk and place it in your computer you get a dialog box. It says: DO YOU WANT TO INSTALL, YES/NO. If you press YES, it then says: GO GET LUNCH. WHEN YOU COME BACK IT WILL BE INSTALLED. Then when it is installed, you can sit down and start working on it. It will have found its own drivers, it will have installed the apps you need, it will have done whatever convoluted conversions it needs to and will just leave you the f*** alone and let you WORK!

Why is it that Linuxheads just can't get that through their solid silicon skulls? They cry and wail and complain that the big mean world doesn't recognize the innate superiority of their OS and is in the grasp of Satan Gates while they keep on publishing 100 page installation manuals.

KEEP
IT
SIMPLE
STUPID

!!!!

:D

Reply to CaptRobertApril
- 0 +

Quote :



KEEP
IT
SIMPLE
STUPID

!!!!

:D




Linux seems a lot simpler to me. Maybe windows seems simpler to you cause you've used it a lot more. An example:

Take installing programs in gentoo for example. Say i want to install mozilla firefox (something the average joe might even care about). All i type is "emerge mozilla-firefox" go watch some TV and when I come back its completely installed, ready to use, and compiled specifically for my processor. What happens if you want to install firefox for windoze? first you have to find it using google, download it, double click on the download, click your way thorough a crap load of EULAs, questions, and popups. This is only one example, it is that easy to install almost anything. I don't know about you but I think typing "emerge mozilla-firefox" is a lot easier!

And guess what? If anything breaks in Linux you (or someone more knowledgeable) can actually fix it. What happens in windows if your registry gets corrupted? Your SOL, that's what happens!

Reply to pshrk

Quote :



KEEP
IT
SIMPLE
STUPID

!!!!

:D




Linux seems a lot simpler to me. Maybe windows seems simpler to you cause you've used it a lot more. An example:

Take installing programs in gentoo for example. Say i want to install mozilla firefox (something the average joe might even care about). All i type is "emerge mozilla-firefox" go watch some TV and when I come back its completely installed, ready to use, and compiled specifically for my processor. What happens if you want to install firefox for windoze? first you have to find it using google, download it, double click on the download, click your way thorough a crap load of EULAs, questions, and popups. This is only one example, it is that easy to install almost anything. I don't know about you but I think typing "emerge mozilla-firefox" is a lot easier!

And guess what? If anything breaks in Linux you (or someone more knowledgeable) can actually fix it. What happens in windows if your registry gets corrupted? Your SOL, that's what happens!

I'm not doubting that one little bit. The bottom line though is not what I think of Linux, but what Mr. Joe does. When you say the word Linux, he starts thinking command line interface and his eyes roll back in his head. Whether we hate it or not, Win is the GUI standard. IMHO the only way that Linux is going to overcome its immense handicaps in the Mr. Joe market is by turning itself into a demonstrably simpler and easier Win. Let the masterful strokes of programming virtuosity lie in the background. Mr. Joe doesn't break his Win. He just launches Excel and plugs in numbers all day. That is all he wants to do. Chances are Mr. Joe doesn't really know where his OS ends and his Excel begins.

The way for Linux to overcome Win is simple. :D

Reply to CaptRobertApril
- 0 +

True, I think more to the point though is that people have preconceived ideas about what is "simple" and "easy to use." You could come up with something vastly simpler and easy to use, but if it is not what the user is expecting then the user will give up before he/she realizes this.

Take the mouse for example, people (including me) like the mouse because they have it drilled into their heads that it is the most easy to use input device, but think about it... three (or five) buttons? It takes many mouse movements and mouse clicks to do the same thing that one keyboard shortcut can do. How inefficient is that?

It is therefore my conclusion that the average joe doesn't really care about "user friendly" or "simple" or "easy to use." The average joe will do anything to avoid using his/her brain. Why remember a single keyboard shortcut that takes less than a second to type when you can spend minutes clicking a single mouse button and not have to remember anything?

Reply to pshrk

Quote :

True, I think more to the point though is that people have preconceived ideas about what is "simple" and "easy to use." You could come up with something vastly simpler and easy to use, but if it is not what the user is expecting then the user will give up before he/she realizes this.

Take the mouse for example, people (including me) like the mouse because they have it drilled into their heads that it is the most easy to use input device, but think about it... three (or five) buttons? It takes many mouse movements and mouse clicks to do the same thing that one keyboard shortcut can do. How inefficient is that?

It is therefore my conclusion that the average joe doesn't really care about "user friendly" or "simple" or "easy to use." The average joe will do anything to avoid using his/her brain. Why remember a single keyboard shortcut that takes less than a second to type when you can spend minutes clicking a single mouse button and not have to remember anything?



Yes, again excellent points. The basic reason why mices have taken over the world is because users can still point to something and a menu will come down and give them choices of what to click next. You would be amazed at how many graphics pros, some of whom earn into 6 figures a year, still run the cursor up to the menu to Save or Copy or Paste in Photoshop. Mr. Joe looks at Ctrl C and then looks at mouse Edit / Copy and chooses the latter every single time. Most people don't want to learn anything more about their computers, even if it makes life easier for them. They learn exactly what they need to do their work and resist anything else.

Another incredibly stupid interface problem is the idiocy of having a row of F keys across the top of every keyboard that do absolutely nothing and that most users have never ever ever touched, while if I want to change Image Size in Photoshop (which is something that I do, maybe, A ZILLION TIMES EVERY FREAKIN' DAY) it's Ctrl Alt I. How about Save For Web, which is probably my second most used action? Ctrl Alt Shift S. GIMME A FRIGGIN' BREAK!!!! Who comes up with these keystrokes, Torquemada Jr.? Yeah, I know I can assign keystrokes to my F keys, but that's not the point. You pay damn near a thousand bucks for a CS suite and I want it to work logically and efficiently. They've only had twenty stinkin' years to perfect it and I'm still doing Ctrl Alt Shift S? You have to have Andres Segovia's fingers to do that at the same time!!!

Unfortunately software is still designed by geeks for geeks. And you could not ever underestimate how many millions of people out there are fed up with their crap.

Reply to CaptRobertApril
- 0 +

Thanks a lot guys; now I got a clearer understanding of Linux. Next steps will be trying to install Blender there, however, I need an SSE2/x64 optimized build; that thing adds 80-90% rendering speed, so it's useless to say that it's a MUST.
Inkscape worked well, and so did th GIMP, Yafray worked OK,.., I only need to set up an optimized blender version and get a working modem.

Reply to m25
- 0 +

Well, if you really, really want an optimized installation try out gentoo, although the installation process takes some time and has a pretty steep learning curve.

http://www.gentoo.org/
http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?full=1
http://forums.gentoo.org/
http://gentoo-wiki.com/Main_Page

Supposedly they have new GUI install cds now, but I've never given them a try. If you get too overwhelmed just use ubuntu. If you get stuck with gentoo and the forums/wiki don't help you send me a PM.

Reply to pshrk
- 0 +

Quote :


Thanks a lot guys; now I got a clearer understanding of Linux. Next steps will be trying to install Blender there, however, I need an SSE2/x64 optimized build; that thing adds 80-90% rendering speed, so it's useless to say that it's a MUST.



No mattter what distribution you are running you should be able to download the sources and compile them yourself with SSE2 support.

However, if your kerenl/libraries/etc... do not already support x64 then the only way to get this is to reinstall a 64 bit version of the distribution.

I don't know anything about modems in linux, but check out the gentoo wiki/forums links i posted above. Even if your not using gentoo it should still give you some idea of how to get your modem working.

Reply to pshrk
- 0 +

I think I'll just try Ubuntu; want the transition to be smooth and gentle because this was to be done while I also have my job, works and school projects running and I don't have the luxury of a second PC.
And what about compilation; is it that easy for me to take the Blender code and compile it with all the optimization flags; will it then run reliably on my PC?!

Reply to m25
- 0 +

Unfortunatley i don't know much about x64 in any distribuion besides gentoo. I havn't worked with blender before, although I am looking forward to doing a school project with it this semester.

However, I can tell you that your distribution (kernel/libraries/etc..) has to support x64 if you want to compile blender for x64.

Also, lots of people like fedora core (I don't but you might), And slackware might be worth looking into as well.

You don't have multiple PCs but perhaps you have multiple hard drives? Even if you don't have multiple hard drives, i have installed about 7 or 8 different installations of linux on the same hard drive before (for research).

Reply to pshrk
- 0 +

Well, separately, SSE2/SSE3 and AMD64 give you an advantage like at most 30% for SSE2/SSE3 and 17% for AMD64, but combined together, SSE3, makes good use of the 8 extra registers of AMD64, giving an incredible ~85% over a standard build.

Reply to m25
- 0 +

I see, maybe this will help

http://www.applia.fr/contents/knoppix64.html

Knoppix runs directly off of the CD with no need to install, I'm assuming knoppix 64 is the same so you might be able to try it out before dedicating any hard drive space to it.

hmmm... looks kind of old though... maybe i can find something else, i will keep looking...

Reply to pshrk
- 0 +

Quote :

I see, maybe this will help

http://www.applia.fr/contents/knoppix64.html

Knoppix runs directly off of the CD with no need to install, I'm assuming knoppix 64 is the same so you might be able to try it out before dedicating any hard drive space to it.

hmmm... looks kind of old though... maybe i can find something else, i will keep looking...


No problem about this, because even SUSE, ubuntu and gentoo have live CDs, to preview the system without installing it, however, I want to install other apps and try them, because if I only had to browse the web, burn CDs and write papers, I'd have moved to a linux distribution long ago.

Reply to m25
- 0 +

Other question;
Can I install on ubuntu software that is labeled just as 'linux software', not optimized for it?!

Reply to m25

Quote :

I'm gonna break some news to a whole bunch of people not just on this forum but in the Linux world in general.

Ok, guys. Listen up. Kindly wake up and smell the coffee. As much as I can appreciate:

You can add MMX, 3DNow!, SSE, SSE2, SSE3, control the bit width, and add a *huge* of other factors in what CFLAGS/CXXFLAGS you feed to the compiler. Type in "man gcc" into the terminal to get all of the possible flags to send to the compiler. Note that on a 64-bit system, all programs are compiled by default as x86_64 and that spec includes automatic SSE support up to SSE2 as no x86_64 chip does not support SSE2.

Any regular Joe with kids, a mortgage and car payments who uses Win to make a living does not want to see that. You might as well try to get him to learn FORTRAN in order to balance his checkbook. Why do people use Win? Because they know how. Most people who work on Win don't give a rat's bunghole if an OS is Unix or Eunuchs, all they wanna know is that it will run the apps that they need to get through a day's work and get paid.



He was asking if it was possible to support things like SSE2, and my reply stated that it certainly was. Maybe I gave a little too much information. One does not HAVE to recompile applications if they don't want to, but unlike Windows, it's generally possible to do so if you want to ensure a feature is in fact supported and try to milk a little more speed out of the program. That's what I think m25 was after.

Quote :

Please realize that THE MAJORITY of people who use Win every day DO NOT HAVE THE SLIGHTEST CLUE AS TO:

Installing the OS
What the RUN command does
What the Registry is
What System Restore does
How to Defragment or why
What DX10 is

and on and on and on.



1. Almost every Windows user has had to reinstall the OS, unless the computer is almost never used or they simply get a new machine when the old one needs to have its OS cleaned up. They might not do it themselves, but they know what is being done. One could also have somebody install and set up Linux on your computer in a similar fashion.

2. They may not know what to put in there, but my guess is that most people would know that some command typed into a box called "Run command" runs a command. It's pretty self-explanatory, kind of like pushing the green "on" button to turn something on.

3. Most people probably don't know what the Registry is. But that's just as well, as it's so fragile that even people who know how to work with it can FUBAR it easily.

4. I think System Restore is similar to the "Run" command, very self explanatory.

5. I'd wager that more people know how to defragment their hard drive than don't and that is can increase performance. It's one of those things that is said so much that it's almost on the level of "use an antivirus and firewall." They may not know exactly what's being done, but they know to do it.

6. Right now, it's vaporware as nothing uses it. The Direct3D 10 framework only works in Windows Vista and only one GPU- the NVIDIA 8800- supports it. 99.99% of computers out there can't run it, so you're right- few know what it is.

Quote :

It is very easy for those of us who have a clue to be able to determine from our ivory towers what the users need and thus go off to add a few more layers of complexity to something that's already too damn hard for Mr. Joe to grasp.



We were talking about one guy, m25, not about all users in general. I assume that he is technically adept enough to handle Linux. Mr. Joe is a completely different discussion, which I will be glad to have somewhere else.

[qupte]There is only one thing standing in the way of Linux taking over the world. And that is distance from the geekizoid developers.[/quote]

That among other things...lock-in is the one I am thinking of.

Quote :

Captain Robert April's Program (Also known as CRAP) is simple. When you buy a CRAP Linux install disk and place it in your computer you get a dialog box. It says: DO YOU WANT TO INSTALL, YES/NO. If you press YES, it then says: GO GET LUNCH. WHEN YOU COME BACK IT WILL BE INSTALLED. Then when it is installed, you can sit down and start working on it. It will have found its own drivers, it will have installed the apps you need, it will have done whatever convoluted conversions it needs to and will just leave you the f*** alone and let you WORK!



Some of the Linux installers are pretty much like that. You pop in a CD, it boots up to a nice graphical desktop, and you double-click on the "Install" icon. You answer a few things like "Name" and it's good to go.

And I wouldn't say that Windows will "leave me the f*** alone and let me WORK!" There are a bazillion popups and alerts and hoops to jump through. Yes, I have a hardware firewall- quit bugging me and telling me that I don't have a firewall at every bootup. No, I don't want to restart my computer RIGHT NOW after updates are installed. And don't restart it on me anyway if I go for 30 minutes to eat lunch. No, I am not a pirate, so quit with the "You must pass WGA certification" after EVERY app as I've passed it the other six times that I've had to validate. Yes, I want to see what's in Control Panel. And so on and so forth. It drives my nuts.

Quote :

Why is it that Linuxheads just can't get that through their solid silicon skulls? They cry and wail and complain that the big mean world doesn't recognize the innate superiority of their OS and is in the grasp of Satan Gates while they keep on publishing 100 page installation manuals.

KEEP
IT
SIMPLE
STUPID

!!!!

:D



There are some zealots out there for sure; you've probably seen from or heard from them at some point. But there certainly is a demand for an OS that does not hold your hand every single second and treat you like an idiot. So not everybody wants something designed expressly and explicitly for the absolute lowest common denominator. Microsoft has certainly done some pretty low things to the software market with lock-ins, lock-outs, DRM, and lawsuits- that's undeniable.

My point is that there needs to be more than One System To Rule Them All. That would be like there being One TV Network To Rule Them All or One Porno Mag To Rule Them All. If you want something different than what that one companyoffers...you're SOL. Choice is good.

Reply to MU_Engineer

Yes. Linux is Linux, applications that are made "generic Linux" should work on any distribution. It's the packages that are specifically made for one version of one distribution that generally can't be used on other distributions due to very strict dependencies and such.

If it's source code (.tar.gz or .tar.bz2) then you can optimize it to your liking.

Reply to MU_Engineer
- 0 +

@ CaptRobertApril & MU_Engineer

I think the discussion is getting a little off-topic, but I'd like to add my two cents. The problem here isn't to sell the concept of Linux to the average Joe. It's about whether or not m25 or people like him would see benefits from moving to Linux. This means people who know their way around a computer and have run up against the limits of what Windows has to offer. Putting this back in the context of the average Joe, I see a spectrum of people's preferences, ranging between those who are happy to have someone else do everything for them, and those who want to be able to control everything their computer does. The former crowd is certainly the larger bunch, but people here tend to be the latter crowd. Anyone who OCs is probably the latter crowd. It seems to me that this spectrum is served by various OS solutions. I'd list these as

MacOS
Windows
Linux - ubuntu then SUSE and the like, then Gentoo and the like

If you want NO control over your computer but you just want it to work, buy a Mac. If you want a little control/customisation, get a PC and run Windows. If you want to be able to do whatever you like, but you recognize you have to know what you're doing, run Gentoo. I've found a happy medium in ubuntu. Others will find their own.

Reply to HotFoot

@ MU_Engineer

Please don't misunderstand my post. I was not stating that your post was incomprehensible. It was very well written and informative. I just used it as a random example of the type of information that makes Mr. Joe's eyes roll back in his head. It's my position that he doesn't want to know any of this any more than Mr. Joe's secretary doesn't want to know that her 2005 Focus has an MTX75 manual transaxle that can exhibit a long crank condition without MIL or DTCs present. She just wants to turn the key and get to the market. Therefore, I apologize for having singled you out. I could have selected any of a zillion examples of computer technospeak.

However, I deg to biffer on some of your points.

Check this vid out!

Please explain to this lovely young lady how to reinstall her OS. Actually, try to explain to her what an OS is. These people are not just rare examples of stupidity, but they are the norm! I have spent the past 30 years in a large number of corporations, both big and small, all over the world. I can assure you that the vast majority of the people working on computers (mostly on Win OS) have a comprehension of the innards of the systems that they are working on that is somewhat equivalent to our Norwegian blonde.

I think we who have been blessed with a slightly greater grasp of what computing actually is have to truly comprehend that we are in the minority. I can give you endless kneeslapping anecdotes from my computer experiences in a corporate setting going back to the late 70s on Compugraphic 7000 series typesetters where the users literally don't know if there are circuits or hamsters inside the box.

I'll promptly admit that I'm stupid, but not overly so. And I do have three decades of experience on all kinds of OSs. And the thought of delving into Linux is chilling my blood. If I'm this terrified, what chance does Mr. Joe have?

I can certainly sympathize with your hatred of MS Naziware. Why do you think I'm refusing to go Vista? I've got my XP Pro dialed in so that it leaves me the f*** alone in the vast majority of cases. I've even gone as far as disabling some warnings and dialog boxes at the Registry level. That's also why I currently have an Office 2007 Trial only. And I despise it. I'm sticking with OpenOffice. If this is a sampling of what I can expect from MS in the future, then they can take their software and stick it right up Bill's bunghole.

I do not want any OS or other software that does things behind my back. Some of the worst offenders are MS, Adobe and McAfee. I had to uninstall the damn McAfee and force them to give me a full refund after I discovered that they have a nasty little "background" function that whenever it feels like it will take your CPU to 100% and keep it there for hours, even days. Adobe CS will constantly be "calling home" and transmitting Gawd Knows What info back to HQ. And MS' WGA is a Satanic device which I frankly am aghast at how many millions of people impotently submit to without throwing their Hard Drives out the window.

Why in Heaven's (or Hell's) name is there not a way to stop software from doing things behind your back? I don't want any of my software interacting with anything whether local or over the net without my specific knowledge. I sometimes sit and watch my NetPerSec system tray utility when I'm not using the PC at all and wonder what the hell all that traffic is that's going in and out. I have nothing launched. My Task Manager shows no apps running. Then what is my computer sending? And receiving? And what information is it sharing about me that I don't want it to? And to who???

...And there is one Pr0no mag to rule them all. Captain April's Hot Chicks Monthly. If you ever see an issue, you'll be surprised at how quickly you'll "inadvertently" tip your computer desk over...

@ HotFoot

I want an OS that handles 8-16GB RAM. Lets me run anything I can run now under XP Pro and do it with blistering speed. Does only what I ask it to when I ask it to and leaves me the f*** alone all the other times. I dunno if that is too much to ask for, but it does seem to be impossible.

Reply to CaptRobertApril
- 0 +

Quote :

Yes. Linux is Linux, applications that are made "generic Linux" should work on any distribution. It's the packages that are specifically made for one version of one distribution that generally can't be used on other distributions due to very strict dependencies and such.

If it's source code (.tar.gz or .tar.bz2) then you can optimize it to your liking.


Yesterday tried the 64 bit ubuntu; response and resources' management were the best I had ever seen in a modern system, installing was a breeze, from the desktop 8O and I played games while waiting for the setup to finish.
Still I could not get Blender installed though :cry: , it said a package was missing.
It recognized my modem but could not get it to work; got some drivers from linuxant but all the packages said something like 'wrong kernel i386'.
:roll:

Reply to m25

Quote :

Yes. Linux is Linux, applications that are made "generic Linux" should work on any distribution. It's the packages that are specifically made for one version of one distribution that generally can't be used on other distributions due to very strict dependencies and such.

If it's source code (.tar.gz or .tar.bz2) then you can optimize it to your liking.


Yesterday tried the 64 bit ubuntu; response and resources' management were the best I had ever seen in a modern system, installing was a breeze, from the desktop 8O and I played games while waiting for the setup to finish.
Still I could not get Blender installed though :cry: , it said a package was missing.
It recognized my modem but could not get it to work; got some drivers from linuxant but all the packages said something like 'wrong kernel 1386'.
:roll:

That's something else that gets my dander up. Who writes these error messages? Is it really beyond a geek's capacity to write "Driver problem. Please refer to blah blah blah for a fix?" No, it's much better to write "Error: 000298547294376543675437976986279632X"

I need to be elected Emperor of Hi Tech and straighten these messes out! And of course be provided with the appropriate perqs! 8)

Reply to CaptRobertApril

Quote :

I second that.



Of course I would share all my perqs with Ninja, my Co-Emperor. I get all the skinny chicks and he gets the ones with all the booty! 8)

Reply to CaptRobertApril
- 0 +

Quote :

My quick answer is a question.... What are you more familiar with, Windows or Linux?

Because in the end what good does an OS do if you have to waste a lot of time "getting to know" the OS. Kinda negates your performance gain doesnt it?



thats why i like windows and 99% of the people in the world. ( not sure if its 99% but its something like that).

People dont want to waste time learning liniux if windows could do it for them and doesn't take as much time because "time is money"

Reply to dt
- 0 +

Ok? Is that seriously the best argument that you have? So you don't ever want to take the time to learn anything new? Why go to college when you can make money without going to college? After all time is money, don't want to waste your time... :roll:

You were right about one thing, time is money, and just like money you can invest your time into leraning new skills that will make you more productive.

Reply to pshrk
- 0 +

What package did it say it was missing?

What kind of modem do you have?

As root you can run the "lspci -v" command (hopefully ubuntu comes with this) to get some information on your hardware. If your not sure how to be "root" just bring up a console and type "su" (for switch user), and you will be asked for root's password.

You will probably have better luck getting your questions answered on an Ubuntu forum.

Oh yeah, maybe this will help. Although any "emerge" commands won't work, just substitute the equivilent ubuntu command which i think is "apt-get"

Reply to pshrk

have u checked to see if the is blender in an ubuntu repository?

http://packages.ubuntu.com/dapper/graphics/blender

there is a link

dload the goods

Reply to funnyman06

so i was thinking you might just be able to do an

sudo apt-get install blender

here is an amazing source for ubuntu 6.10

includes blender3d

Reply to funnyman06

But this simple thing is what can make life for Linux users so much easier than that for Windows users.

Why you ask?

Let's imagine your Windows CD is XP SP0.
And you go to install your system.
Guess what? You will be missing lots of drivers for everything from your video card to MB. Even if you are lucky and have an XP SP2 CD, you will be missing many drivers.

Need to reinstall Linux? Just grab the latest CDs/DVDs off the internet that were just updated last month as they are every month or so with the newest drivers.

After I'm done my install of Linux I already have my full office suite and other host of tools to do just about anything I need.

On my Windows install, I have the OS installed, but because my NIC is too new I dont have a driver and cant get to the internet to get one :>

I still have not productivity software installed except for wordpad and need to search for that............

Sigh..............

I'm not saying that Linux is 100% easier to use and everyone needs to switch. What I am pointing out is the fallacy that Windows is easier to install and get using. Linux clearly dominates that market. The difficulty for Linux is that 95%+ of the world runs Windows so when the home user has a question they will find it harder to find someone to ask or find instructions are geared to Windows users.

Reply to zenmaster

Quote :

But this simple thing is what can make life for Linux users so much easier than that for Windows users.

Why you ask?

Let's imagine your Windows CD is XP SP0.
And you go to install your system.
Guess what? You will be missing lots of drivers for everything from your video card to MB. Even if you are lucky and have an XP SP2 CD, you will be missing many drivers.

Need to reinstall Linux? Just grab the latest CDs/DVDs off the internet that were just updated last month as they are every month or so with the newest drivers.

After I'm done my install of Linux I already have my full office suite and other host of tools to do just about anything I need.

On my Windows install, I have the OS installed, but because my NIC is too new I dont have a driver and cant get to the internet to get one :>

I still have not productivity software installed except for wordpad and need to search for that............

Sigh..............

I'm not saying that Linux is 100% easier to use and everyone needs to switch. What I am pointing out is the fallacy that Windows is easier to install and get using. Linux clearly dominates that market. The difficulty for Linux is that 95%+ of the world runs Windows so when the home user has a question they will find it harder to find someone to ask or find instructions are geared to Windows users.



Well, fortunately here on THG we have no trouble finding people to discuss the latest developments in Hafnium (is that 50% of a Wholium?) 8) or any other tech subject in eye-bugging detail and thus support for Linux is only a few keystrokes away.

Therefore, since I'm kinda orbiting around the possibility of Linuxising myself, here are some rather basic questions. Pardon me if I've asked some of them in previous posts.

1) By Q3 07 I'll buy my 2xQuad (we'll see what's on the market then) with 8GB RAM, 150GB Raptor for OS, and 4x750GB 7200.10s in RAID 5 for data. Is there anything in Linux which will prevent me from using this hw to its fullest?

2) I know I gotta run Photoshop in WINE, are there any independent tests/reviews/benchmarks that demonstrate relative compatibility and speed of Photoshop on Win vs. WINE?

3) My video will be a top-end DX9 along the lines of an X1950XT, or maybe a lower-end (by then) DX10 to get the extra video quality although I know I can't use DX10. I also want a mid-range 5.1 or so sound card. Are there any problems with drivers, etc.?

4) RedHat, Gentoo, Ubuntu, Debian, Slackware... AAAAAAARRRGGGHHH!!! What do I use if I do NO programming and just want a nice, simple OS that gets out of my way and lets me do my work without bugging me for the next few years?

And most importantly:

5) Do you swear on your dog's life and that you will be contaminated with rabid cooties for the rest of your days that I will never have to stare at a command line interface, even for one second?

Reply to CaptRobertApril

1) By Q3 07 I'll buy my 2xQuad (we'll see what's on the market then) with 8GB RAM, 150GB Raptor for OS, and 4x750GB 7200.10s in RAID 5 for data. Is there anything in Linux which will prevent me from using this hw to its fullest?

No. Linux will run this faster then XP or Vista due to a more efficient OS.
(Note: A number of things written in Linux are written in Java in lieu of being compiled code. This is done for cross platform compatibility but really kills the native performance boost of Linux.)

2) I know I gotta run Photoshop in WINE, are there any independent tests/reviews/benchmarks that demonstrate relative compatibility and speed of Photoshop on Win vs. WINE?

No, there are none that I am aware of.
Linux is not "right" for everyone.
You may need to test your Apps.
Most companies that have migrated to Linux still maintain Citrix boxes for some of their stubborn apps that dont like Linux.
Photoship is definately not a Citrix candidate nor even something to do for a home shop.

3) My video will be a top-end DX9 along the lines of an X1950XT, or maybe a lower-end (by then) DX10 to get the extra video quality although I know I can't use DX10. I also want a mid-range 5.1 or so sound card. Are there any problems with drivers, etc.?

There could always be driver issues. See Vista now. Loads of driver issues. Almost all major vendors now, however, work hard at Linux Drivers. DX10 may definately be usable by then. This is the type of thing that WINE provides.

4) RedHat, Gentoo, Ubuntu, Debian, Slackware... AAAAAAARRRGGGHHH!!! What do I use if I do NO programming and just want a nice, simple OS that gets out of my way and lets me do my work without bugging me for the next few years?

If you want the simplest, then Windows is the choice for you most likely.
Linux is a different operating system.
You know Windows and not Linux and hence Linux will be a learning curve.
I know folks who know Linux and not Windows and for them Linux is far easier.

For folks who know neither, Linux does not really need to be that tough.
Click on your web browser, Office Suite App, etc... and away you go.
Both have automatic updates and everything.


And most importantly:

5) Do you swear on your dog's life and that you will be contaminated with rabid cooties for the rest of your days that I will never have to stare at a command line interface, even for one second?[/quote]

Better change my view.
You are gonna need a MAC.

Both Windows and Linux have powerful command-line stuff, though the stuff in Linux is far better. Vista may have closed the gap here with their new command-line enhancements that are supposed to rock.

I can't really say since I have not played with Vista.
I finally got my updated MSDN so I can finally start using vista on one of my systems.

Reply to zenmaster

Quote :

1) By Q3 07 I'll buy my 2xQuad (we'll see what's on the market then) with 8GB RAM, 150GB Raptor for OS, and 4x750GB 7200.10s in RAID 5 for data. Is there anything in Linux which will prevent me from using this hw to its fullest?

No. Linux will run this faster then XP or Vista due to a more efficient OS.
(Note: A number of things written in Linux are written in Java in lieu of being compiled code. This is done for cross platform compatibility but really kills the native performance boost of Linux.)

2) I know I gotta run Photoshop in WINE, are there any independent tests/reviews/benchmarks that demonstrate relative compatibility and speed of Photoshop on Win vs. WINE?

No, there are none that I am aware of.
Linux is not "right" for everyone.
You may need to test your Apps.
Most companies that have migrated to Linux still maintain Citrix boxes for some of their stubborn apps that dont like Linux.
Photoship is definately not a Citrix candidate nor even something to do for a home shop.

3) My video will be a top-end DX9 along the lines of an X1950XT, or maybe a lower-end (by then) DX10 to get the extra video quality although I know I can't use DX10. I also want a mid-range 5.1 or so sound card. Are there any problems with drivers, etc.?

There could always be driver issues. See Vista now. Loads of driver issues. Almost all major vendors now, however, work hard at Linux Drivers. DX10 may definately be usable by then. This is the type of thing that WINE provides.

4) RedHat, Gentoo, Ubuntu, Debian, Slackware... AAAAAAARRRGGGHHH!!! What do I use if I do NO programming and just want a nice, simple OS that gets out of my way and lets me do my work without bugging me for the next few years?

If you want the simplest, then Windows is the choice for you most likely.
Linux is a different operating system.
You know Windows and not Linux and hence Linux will be a learning curve.
I know folks who know Linux and not Windows and for them Linux is far easier.

For folks who know neither, Linux does not really need to be that tough.
Click on your web browser, Office Suite App, etc... and away you go.
Both have automatic updates and everything.


And most importantly:

5) Do you swear on your dog's life and that you will be contaminated with rabid cooties for the rest of your days that I will never have to stare at a command line interface, even for one second?

Better change my view.
You are gonna need a MAC.

Both Windows and Linux have powerful command-line stuff, though the stuff in Linux is far better. Vista may have closed the gap here with their new command-line enhancements that are supposed to rock.

I can't really say since I have not played with Vista.
I finally got my updated MSDN so I can finally start using vista on one of my systems.



Thanks for the info. I can't go back to Mac or forward to Vista for various reasons, but the most important being: DRM/Naziware/EULA. I'd rather put my private parts through a meat grinder, thank you very much. However since I live breathe and eat Photoshop it looks like I might be stuck on XP for a while. I was under the impression that Photoshop under WINE rocked. Is that not the case?

Reply to CaptRobertApril

I can't say how Photoshop works under WINE.
I never tried.

It appears to work well............

http://appdb.winehq.org/appview.php?iAppId=17

But I can't say.
One thing I do know is that the File System under Linux is much faster.
If you are working with huge files, this may really help.

Reply to zenmaster
- 0 +

DT,

I can guarantee you that TIME spent learning Linux (not just installing and using the GUI) is actually = MONEY.

Just do a search for UNIX sys admins or Unix test/QA or UNIX development on Monster. I think you will be very surprised.

I often recommend to younger folks trying to break into the industry that they install and LEARN Linux. It is a free distro that can result in a job (even entry level) that is probably around 40 - 45K..

AND

Depending on how good you are that number can jump substantially in a very short time. 1 - 2 years of GOOD experience will allow SOME to take a job in the 65 - 75K range (switching from sysadmin to Dev or Testing).

Reply to Ches111

I use Suse and I love it.

I used 9.1, 9.2, 9.3 then 10.1. By that time I moved to Gentoo, because Suse 10.1 SUCKED. then 10.2 was out and I love it.

Suse 10.2 is the best distro I know. Extremely fast and easy to install. Actually, the installer's UI is the fastest so far in Suse's history.

I am running several servers on Suse 9.3 and 10.2, including:
- firewall & proxy
- web servers (apache 2 + PHP 5 + MySQL 5), most of them for Moodle LMS
- domain controllers (with Samba), with clients running XP SP2 and authenticating on the Samba server

Reply to Simonetti

Quote :

Thanks for the info. I can't go back to Mac or forward to Vista for various reasons, but the most important being: DRM/Naziware/EULA. I'd rather put my private parts through a meat grinder, thank you very much. However since I live breathe and eat Photoshop it looks like I might be stuck on XP for a while. I was under the impression that Photoshop under WINE rocked. Is that not the case?



That's not the case. WINE is not a panacea. If you're moving to Linux, you might as well learn Gimp.

Linux's CLI (command line interface) is very powerful but most of the time you can do without it. OTOH, knowing Bash (one of the several CLI shells) can make most things a lot easier.

The best advice I can give is: choose a good distro (I suggest Suse 10.2), install it and give it a try. If you have a 20Gb+ HD, you can plug it, set it as the only HD in your PC and install Linux. If you don't like, you haven't harmed any of the other HD's.

Reply to Simonetti

Quote :

I can't say how Photoshop works under WINE.
I never tried.

It appears to work well............

http://appdb.winehq.org/appview.php?iAppId=17

But I can't say.
One thing I do know is that the File System under Linux is much faster.
If you are working with huge files, this may really help.



Thanks for the link. I've just gone through a couple of hundred messages on that board and frankly it was pretty depressing. Even the few people who get the thing running have weird problems, crashes, etc. The "solution" of running a portable hacked Photoshop is not an option as it just happens to be illegal. And even that version seems to have problems all over the place.

Therefore, unfortunately, I must hereby call my brief exploratory period of courting Linux officially over. I'm sure that it's wonderful for many users and I know that I would be much happier having absolutely nothing from MS on my hard drive, but this is my living I'm dealing with and the last thing I need an hour to deadline on a 2GB file for a $12,000 billing is some mysterious error message. I have my Photoshop on my XP Pro SP2 running like clockwork. I can't remember the last time I had the merest minor problem with it. And I intend to keep it this way.

Maybe someday Adobe will wake up, smell the coffee and come out with a 64bit Photoshop for Linux. On that day, I'll be first in line!!! :D

Reply to CaptRobertApril

Quote :

Thanks for the info. I can't go back to Mac or forward to Vista for various reasons, but the most important being: DRM/Naziware/EULA. I'd rather put my private parts through a meat grinder, thank you very much. However since I live breathe and eat Photoshop it looks like I might be stuck on XP for a while. I was under the impression that Photoshop under WINE rocked. Is that not the case?



That's not the case. WINE is not a panacea. If you're moving to Linux, you might as well learn Gimp.

Linux's CLI (command line interface) is very powerful but most of the time you can do without it. OTOH, knowing Bash (one of the several CLI shells) can make most things a lot easier.

The best advice I can give is: choose a good distro (I suggest Suse 10.2), install it and give it a try. If you have a 20Gb+ HD, you can plug it, set it as the only HD in your PC and install Linux. If you don't like, you haven't harmed any of the other HD's.

I'd addressed Gimp in other posts. Let's put it this way. My job requires a Rolex. Gimp is a Lucky Charms Leprechaun Digital Watch. They both tell time, but there is a whole lot of difference between them. There is zero chance that I would be able to do the things I do on Photoshop right now on Gimp. Not in a zillion years.

I've got several HDs, but as I mentioned in the previous post, Photoshop pays my rent. No Photoshop. No me. So that's pretty well the end of my tentative dance with Linux! :(

Reply to CaptRobertApril

Actually I think you found the best answer. I am the TI manager of a college in Brazil and I still believe Linux is not the all around OS Windows XP is. We haven't (and I decided so) that Linux is still not the best choice for desktop PC's in the campi we have. There are way too many apps that deeply rely on Windows' internals and that are required in a college.

We have a yearly MS subscription called Campus Agreement, so a Windows XP license is pretty inexpensive for us. It also covers Office, some server apps, etc.

On the server side, however, Linux is unbeatable. Period.

concluding, when it comes to desktop apps, Win XP is still the way to go, and I am glad you came to that conclusion by yourself.

Reply to Simonetti

Quote :

Actually I think you found the best answer. I am the TI manager of a college in Brazil and I still believe Linux is not the all around OS Windows XP is. We haven't (and I decided so) that Linux is still not the best choice for desktop PC's in the campi we have. There are way too many apps that deeply rely on Windows' internals and that are required in a college.

We have a yearly MS subscription called Campus Agreement, so a Windows XP license is pretty inexpensive for us. It also covers Office, some server apps, etc.

On the server side, however, Linux is unbeatable. Period.

concluding, when it comes to desktop apps, Win XP is still the way to go, and I am glad you came to that conclusion by yourself.



Yeah, it looks like I'm gonna be on XP 64 for the foreseeable future. I can't let my unabiding hatred of MS handicap my paycheque! Well, enjoy Brazil! I dunno if on Carneval Eve I'd be indoors typing, but to each his own! I'd be out there enjoying the half-naked chicks!!!! :lol:

Reply to CaptRobertApril
- 0 +

And what about virtualization, what about Xen 3.0; can you run XP with it from, say, ubuntu?! And is everything in XP supposed to work fine as it normally does (when it's directly run)?! I mean modem drivers; I have a stupid modem that can't get to work on ubuntu.
What would you think about my possible transition?!; I mostly use open source apps available for both windows and Linux and the only thing windows-only I have is my modem and a CAD application.

Reply to m25
- 0 +

I don't want Linux 'feel' I want Linux performance; I'd run windows from within it only to browse the web since my modem does not work in linux and that's all.

Reply to m25

i guess my next question would be why do u still use a modem? are you located somewhere where cable or DSL is not available? since it seems you spent a couple $$$$ on your computer? Also did you check out that link i sent you for ubuntu. it proved very helpful to me

Reply to funnyman06
Tom's Hardware > Forum > CPU & Components > CPUs > -Linux vs Windows-
Go to:

There are 1035 identified and unidentified users. To see the list of identified users, Click here.

Please mind

You are about to answer a thread that has been inactive for more than 6 months.
If you still wish to proceed, please ensure that your posting is original and does not duplicate or overlap any prior responses to this thread.

Add a reply Cancel
Sponsored links
  • Ask the community now
  • Publish
Ad
They won a badge
Join us in greeting them