Slashdot Mirror


User: kundor

kundor's activity in the archive.

Stories
0
Comments
317
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 317

  1. Not a fork on 2.4, The Kernel and Forking · · Score: 2, Insightful
    Maintaining a separate patchset is normal, accepted, and not considered forking. They'll still be just applying these patches to the mainline tree, not severing development. Forking would be if they took the codebase and began changing it with a different set of developers and not just adding some code to each release of the kernel. EVERY distro does that. Perhaps not slackware or debian, I don't know, but Gentoo, Mandrake, Gobo, all have heavily patched kernels.

    I'd see this mostly as SuSe posturing.

  2. Re:Why would they? on XOrg Foundation Opens Membership and Elections · · Score: 2, Insightful

    Xfree86 and X.org are compatible. The current nvidia and ati drivers work fine on both. There is no need for them to change anything.

  3. Re:Forks on XOrg Foundation Opens Membership and Elections · · Score: 3, Informative
    the exact same nvidia and ati drivers work perfectly on both Xfree86 and X.org.

    Please stop your fud.

  4. Re:Windows isn't less secure on When Does Usability Become a Liability? · · Score: 1
    That's EXACTLY the point.

    A windows user runs such a script, it destroys a system.

    A unix user runs such a script, they get "permission denied." Your example would be entirely harmless.

  5. Re:i kind of freaked when i saw that because... on Installing Linux on a Dead Badger · · Score: 1
    Well...if each machine has one filesystem, it's really irrelevant how many drives you have or where they're mounted, at least for network use.

    I suppose it's different in the windows world.

  6. Re:i kind of freaked when i saw that because... on Installing Linux on a Dead Badger · · Score: 1

    You name your hard drives?
    (insert raised eyebrow here.)

  7. Re:Question... on Installing Linux on a Dead Badger · · Score: 1
    Will this work with a wooden badger?

    Yes.

  8. Re:PNG, great. on Longhorn Skinning A Reality · · Score: 1

    Safari isn't Gecko.

    This is just an IE bug.

  9. Re:embracing open source? on Microsoft WiX Code Released to SourceForge.Net · · Score: 1

    it's pretty easy. This procedure should work for most packages:

    1) Download the tar.gz or tar.bz2 (for instance, foo-1.2.tar.gz)
    2) unpack the tarball: tar xvzf foo-1.2.tar.gz (or tar xvjf foo-1.2.tar.bz2)
    3) enter the program directory: cd foo-1.2
    4) ./configure
    5) make
    6) become root: su
    7) make install

    Most packages have a file called INSTALL, which directions for installation. Almost always, this is the same text, detailing what I said above. If it's different, pay attention! If there's no INSTALL, the README will usually have directions.

    I suppose the "tar xvzf" could be hard to remember the first few times. For reference:
    x - extract
    v - verbosely (list files being extract)
    z - unzip. (for .gz)
    j- unbzip2 (for .bz2)
    f - from file [name]

    It's worth reading ./configure --help if you run across problems, there may be options that can help.

  10. Re:Still a beta? on Microsoft WiX Code Released to SourceForge.Net · · Score: 1

    C'mon, let's be realistic...have you ever seen a sourceforge project NOT in beta? ;-)

  11. Re:embracing open source? on Microsoft WiX Code Released to SourceForge.Net · · Score: 2, Insightful
    source. You can always compile from source. Every (non-proprietary, obviously) program for linux comes with source, and 99% of them have the standard ./configure, make, make install dance.

    So if Opera doesn't want to keep supplying 12 versions, they just have to open their source and supply a tar.gz, which EVERYONE can install. At that point, it's also trivial for disto maintainers to package it up as a binary so that their users can install it with $PACKAGE_MANAGER.

    Anyway, the installers are more-or-less standard for a lot of things. Just swap one word. EG, to install gaim:
    Gentoo - emerge gaim
    Mandrake - urpmi gaim
    Debian - apt-get install gaim
    (and many other examples, I know.)
    I mean, it's really difficult for it to get any simpler.

  12. Re:It's not a real "file manager" on 3D, FPS File Manager · · Score: 1
    Actually, that's part of the very idea of user intuitiveness. It SHOULD involve more effort to do something drastic like deleting all your files. A world where deleting your whole file system with a rm -rf /* is as easy, or easier, than deleting a specific file, is an unbalanced one.

    So, you better be SURE you're willing to do such a thing, so making more effort involved is helpful.

  13. Re:seriously, this could be useful on 3D, FPS File Manager · · Score: 2, Funny

    Bob never dies, does he?

  14. Re:No! on 3D, FPS File Manager · · Score: 1

    That is BRILLIANT.

  15. Re:This is just a silly statement on Zero Install: The Future of Linux on the Desktop? · · Score: 1
    The problem with apt, and all package systems, is the dependence on the maintainers. You have to wait for someone to package it up, and trust them to do it right, and to do all the stuff you're interested in. If you have to package things yourself that more than negates the benefits.

    The /usr/bin, /etc, /usr/man, and so on system that *nix has used is a flaw in the design: necessary to avoid searching 10,000 dirs in the path, as an above post said, but problematic for maintenance and not helpful to users looking for program associativity.

    packaging is a partial solution, but not a whole one, and introduces flaws of its own. Putting each application in its own directory, as ROX's AppDirs, GNU Stow, and GoboLinux do, is the proper way to do things. The problems introduced are how to find the thing in your path, and getting the vast amount of existing code to work in the new system without having to be changed (which is, after all, one of the problem-causers of the packages.)

    ROX just uses GUI, so it doesn't deal with the path issue, and has to repackage anyway. Not a solution.
    Stow uses symlinks to deal with the path, with an intelligent system to automatically remove symlinks to applications that have been removed. It can be used with any package using autoconf, the vast majority out there, so no repackaging necessary.
    GoboLinux has an even more radical modification to the standard hierarchy. I believe that it also uses symlinks for the path.

  16. Re:This is just a silly statement on Zero Install: The Future of Linux on the Desktop? · · Score: 1
    No, it's not like just installing in a common bin. Symlinks into contained application directories mean that uninstallation and upgrading can be done without worrying about leaving parts around your system. This is basically the approach taken by GNU Stow, an under-appreciated program.

    If you want multiple versions, one of them is going to be the one that gets called by the app's name, you can't avoid that. I'd probably make a system where it selects the latest one.

    This just answers the problem with performance hits by traversing a crapload of path directories. If you have a script to symlink everything after any installation, the problem goes away.

  17. Re:I thought we wanted people to reuse code? on Zero Install: The Future of Linux on the Desktop? · · Score: 1
    That's a matter of preference. It's perfectly possible for the system to ask "libsuch-and-such is not being used by any programs, do you want to remove it," if you want to deal with the overhead of keeping track of such things.

    Of course, part of the point of zeroinstall is that nothing is really INSTALLED in the first place, just cached on your system. So uninstallation is sort of a moot point -- you can delete all the files in your cache if you want, and the programs are just as accessible as before.

    Incidentally, I didn't say the stuff you quoted.

  18. Re:This is just a silly statement on Zero Install: The Future of Linux on the Desktop? · · Score: 2, Informative

    ln -s /opt/*/bin/* /usr/bin/

  19. Re:Why do we have shared libraries at all? on Zero Install: The Future of Linux on the Desktop? · · Score: 2, Informative

    You can upgrade to new versions with bugfixes and security fixes without recompiling every single program on your system.

  20. Re:I thought we wanted people to reuse code? on Zero Install: The Future of Linux on the Desktop? · · Score: 1
    What they mean by that statement is that the entirety of the application is in one directory, instead of being split all over the filesystem as is current.

    This means, for example, that "uninstalling" is simply deleting one folder, and upgrading in place is sublimely easy.

    It doesn't mean that libraries from other programs won't still be necessary. But the applications ARE self-contained in their own directory, in that all the files that come with them are in one place, instead of all over.

    And who the hell wants to delete all the files the program relies upon when you uninstall it? That would delete the whole operating system! You just want to get rid of everything that program ADDED, so as to avoid building up cruft. This takes care of that.

  21. Re:Can you leave your dog in it? on Inside a Mechanical Parking Garage · · Score: 1
    The FIRST thing that made me think of was that I'd have to try staying in the car and riding it into the bowels.

    The problem with questions ensuring you're not doing something wrong is that they're actually suggesting all these cool things you can try.

  22. Re:Subliminal Messaging on Homemade Subliminal CDs · · Score: 1
    You can read 10 digits in 1/24th of a second?

    You realize there's no way I can believe that.

    I'm sure that my graphic calculator can update as quickly as any computer could 10 years ago, and my graphing calculator can move far too quickly to be read.

  23. Re:Insanity! on Revised Hall of Technical Documentation Weirdness · · Score: 2, Interesting
    when will http incorporate bittorrent technology, that's what I want to know.

    Then the slashdot effect would be no more!

  24. Re:woah on Google's Gmail To Offer 1GB E-mail Storage? · · Score: 1
    "RMS and FSF are seeking power, not freedom." -Steve Dimse

    Offtopic, but bullshit. RMS has given up dozens of chances to have more power, influence, and money in order to stick to his principles and work for freedom. Whether you agree with those principles or not, you can't claim he hasn't served them completely unswervingly.

  25. Re:Wahooo on Google's Gmail To Offer 1GB E-mail Storage? · · Score: 0
    Funny, consider that site DOESN'T EXIST.

    It's a joke.