I want to adopt a Linux, but i'm not sure if i can take this commitment.
Any successful Linux owners here?
Name:
Anonymous2009-03-18 14:58
>>1
Mine was acting up until I had it neutered. Ever since then, it's been bliss.
Name:
Anonymous2009-03-18 14:59
Don't get a plain Linux, you idiot. Make sure you have a GNU/Linux and it will protect your freedom.
Name:
rms2009-03-18 15:00
Please everyone, think of the poor Hurd. All alone, with no one to use it. Please, do the right thing. Get a GNU/Hurd.
Name:
Anonymous2009-03-18 17:34
get a BSD linux instead.
they aren't as pretentious and whiny as GNU linuxes are
Name:
Anonymous2009-03-18 17:35
I'd actually like to see OS usage statistics for /prog/. I know for a fact far fewer people here use one of the BSDs than pretend to (and Mac OS doesn't count), but I'd like to know how many people still use Windows.
Name:
Anonymous2009-03-18 17:38
>>6 but I'd like to know how many people still use Windows.
I think it's pretty safe to say that most people on /prog/ don't (at least not as they're main OS)
Name:
Anonymous2009-03-18 17:38
>>6
Still use? Windows has more software support than Linux; I don't know how you could knock someone for using Windows.
The only way to make it clear to him that he should not come here to our lists in the future, is to teach him a hard lesson, and that is done by continually re-adding cc's back to him -- because the mails talk about him -- even when his friends come our mailing lists and delete the his address from the cc list. Like this message, which adds him back in. Richard, you are a lying cheating hypocrite.
>>6
Why would I call my OS X a BSD? I don't use it for the UNIX freewares it builds upon. Windows has tons of BSD freewares too but nobody calls it BSD. You guys calling your Gnome or KDE a "Linux" or a "BSD" are retarded.
Name:
Anonymous2009-03-18 17:52
>>14
lol wat?
why would RMS Matthew Stallman visit BSD mailing lists?
damn, is he ever NOT looking for a fight?
I recently installed FreeBSD on my laptop, but now all I have is X11 and no internet. The entire BSD community must be maintained by insane trolls because they have fully documented support for installing via floppies but no USB support. Who the fuck is going to install an OS with floppies? It would take about 1500 floppies just to install the 7.1 release.
Name:
Anonymous2009-03-18 21:30
>>36
btw I just gave up and installed debian instead
>>42
just get a usb cd-rom drive. seriously, they only cost about 0.80 XAG.
Name:
Anonymous2009-03-18 21:53
>>43 >>44
I did get it to install via USB. My main gripe was the fact that I had to go to some guy's blog to find out how to do it instead of just reading the FreeBSD install guide.
>>45
you have to do the same thing for any other operating system.
Name:
Anonymous2009-03-19 0:31
>>24
Non-electrical Touring complete machines. With enough thought, a genius could probably develop a transmit-a-electromagnetic-or-electrical-signal process.
>>25-27
Actually, most of the Amish community aren't anti-technology, they are closer to anti-materialistic. In some Amish communities, if there is an issue that necessitates the use of high technology, they would debate with themselves and then actually purchase and learn to use that technology.
Name:
Anonymous2009-03-19 0:59
>>1
1. It's easy to play with Linux on a test computer or a VM.
2. There aren't many reasons why you must give up what you already have for Linux.
Name:
Anonymous2009-03-19 2:19
The OpenSolaris kernel is much better. It just needs some polishing and some loving like Linux got from rms's ass.
>>55
There are multiple ways to do this(the simplest way: kill processes using those handles, simpler way: force processes to close their own handles, trickier way: have a kernel mode component close those handles and delete the file, and there's probably other ways I'm not aware of), but of course subsequent operations using that handle will fail.
Name:
Anonymous2009-03-19 5:30
>>57
Fucking idiot, that's not deleting files that possess active handles. That's just deleting files with NO active handles, because you ensured that first!
>>57
Like I said, Windows is a toy. I prefer real operating systems over toys systems that are designed specifically not break old toys.
Name:
Anonymous2009-03-19 8:01
>>58
And what if I unlink the file directly from the filesystem without closing its handle, using handle would subsequently fail anyway because the underlying file doesn't exist anymore.
Are you saying UNIX-like operating systems would handle it much more gracefully? Other alternatives to this would be to keep the handle and the file's contents alive(cached or the actual contents locked until all handles to it have been closed) while unlinking it from the filesystem.
Windows also offers an API for delayed removal/renaming of files in case they're in use ( even if the implementation for this is a bit useless as the 'delay' is usually the next reboot ).
Regardless of what you desire, implementation of any of this behaviour isn't hard, but given your attitude, I'd believe you don't really know anything about how the NT kernel works internally, so arguing with you is pointless, as you don't see that this is a non-issue and if there would be a need for this, it wouldn't be hard to implement by any seasoned Windows driver developer.
Name:
Anonymous2009-03-19 10:04
And given your attitude, I'd believe you don't really know anything about how UNIX kernels work internally, so arguing with you is likewise pointless, as you don't see this is an issue and it shouldn't have to be implemented as a driver because it's trivial behavior that the OS should already be handling.
I agree with >>60. Most people who bash Windows in favour of a toy OS just aren't EXPERT enough.
Name:
Anonymous2009-03-19 21:57
>>60
Yes, Unix-like operating systems let somebody delete a file, while the existing read handles can merrily keep thinking the file & data is still there, and keeps it all consistent.
Name:
Anonymous2009-03-19 22:07
>>64
And then you can put another file on top of it and crash and loose all you rdata. I know it's true, I read it on slashdot.
Name:
Anonymous2009-03-19 22:22
>>64
The file is still there, just its entry in the directory has been removed. Like a GC, only once a file isn't referenced (by directories or handles) it is really gone.
Name:
Anonymous2009-03-19 23:16
>>66
Indeed. The fact that virtually all Windows programs, including Explorer, tend to leave zombie file handles lying around, makes this issue unbearable.
Name:
Anonymous2009-03-20 3:55
>>67
Not to mention that Windows likes fucking itself up the ass when you've got programs crashing, and still thinks there are file handles open when you're trying to delete a directory or overwrite files.
Sometimes, no amount of SysInternals can un-fuck itself up the ass, and you just have to resort to another goddamn reboot.
Name:
Anonymous2009-03-20 4:18
>>69
Never encountered such an issue (unsolvable without reboot). Open file handles are freed once the process is terminated ( an exception to this is when you have a process which is being debugged, and while it has been terminated, its handles and memory space aren't freed until you have the debugger close the process ). There was a case when explorer didn't close the handle to some video files which have been previewed ( preview is handled by multiple third party directshow filters, such as haali's splitter/ffdshow video decoder, but this happens within explorer's process), restarting explorer would close those handles.