Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: TPJI decided to try Arch and this is my distro now.
Posted By: TPJI have some *strange* habit: I don't like the idea of installing software in system's hierarchy (/usr, /usr/share).
Therefore I install some of my software in ~/opt/ProgramName/VersionNumber/. Looks similar, doesn't it?
3) How many users GoboLinux has? More/Less that ArchLinux/Fedora?
Posted By: TPJHello!
In the nearest future (weeks, one month at most) I'm going to install my system. Although my primary system will be Arch, I think it could be a good moment to give GoboLinux a try... Provided that GoboLinux is worth it.
1) I've read that there's no package manager (PM) for GoboLinux. One of PM's tasks is handling dependencies, another is doing updates (this one actually needs handling dependencies...). How are these tasks done in GoboLinux?
3) How many users GoboLinux has? More/Less that ArchLinux/Fedora?
4) SymlinkProgram (the app which should make all the needed symlinks in the GoboLinux system) seems to be something I could make use of... Where can one finds its source?
5) According tohttp://forum.gobolinux.org/discussion/39/gobolinux-misconceptions/#Item_11there are 4128 existing recipes for programs. When I did "wget -q -O -http://gobolinux.org/recipe-store/MANIFEST| awk -F'--' '{print $1}' | uniq | wc -l" I got only 1888... What's wrong?
Posted By: TPJ1) I've read that there's no package manager (PM) for GoboLinux. One of PM's tasks is handling dependencies, another is doing updates (this one actually needs handling dependencies...). How are these tasks done in GoboLinux?You don't need to use one if you don't want to (the slogan to go with this is "the filesystem is the package manager", but it's a little misleading). You can install things yourself without going through the system tools and it will work just as well as the tools. I don't recommend you run your whole system that way, but it is handy to be able to install things yourself occasionally. You can also use the standard command-line tools like which and ls for other tasks package managers often do. Which package installed the "ab" binary? `which ab`=>/Programs/HTTPD/2.2.4/sbin/ab. What version of Firefox am I running? `ls -l /Programs/Firefox/Current`=>2.0.0.4
Posted By: TPJ2) Are there available binary packages for GoboLinux?I already answered that above, I guess. Yes. They're linked to under the "Latest Packages" heading on gobolinux.org. They are all compiled for i686, at present, but it is possible that other architectures will be supported in future. The architecture is encoded in the package name (Foo--1.0--i686.tar.bz2), so you know what you're getting in advance.
Yes, I've read about recipes. But I don't want to compile all the software I need (or want to try) from sources. I'd rather have them already compiled for i686...
If there are binary packages for GoboLinux (and I'm a dummy for being unnable to find any information about them on the GoboLinux site ;)), what architecture they are compiled for?
Posted By: TPJ3) How many users GoboLinux has? More/Less that ArchLinux/Fedora?Less. I don't know how much less, other than "a lot". There are 91 people on the users list, 193 subscribers to gobolinux-users, and 97 subscribers to gobolinux-br, which are the only hard numbers we have. Probably in the vicinity of a few hundred, but I really don't know.
Posted By: TPJ4) SymlinkProgram (the app which should make all the needed symlinks in the GoboLinux system) seems to be something I could make use of... Where can one finds its source?You can check it out from CVS, as MLA said; you'll also need most of the code in Scripts/Functions. It'll be a bit of work to adapt it to other usage scenarios, I think.
Posted By: TPJ5) According tohttp://forum.gobolinux.org/discussion/39/gobolinux-misconceptions/#Item_11there are 4128 existing recipes for programs. When I did "wget -q -O -http://gobolinux.org/recipe-store/MANIFEST| awk -F'--' '{print $1}' | uniq | wc -l" I got only 1888... What's wrong?My fault. I think MLA's right, I updated the command and the text but forgot about the number. 1,888 is the correct number of distinct programs. It's true that a lot of autoconf-based recipes don't ever get submitted because they're so simple nobody bothers. I've been guilty of that myself sometimes. Installing them is just a matter of `MakeRecipe <url-to-archive> && Compile Foo`, because the Scripts magic does all the work. We have worked on making it easier to submit recipes recently, and in making sure there are more reviewers to commit into the repository, which should bring the numbers up a bit.
Posted By: TPJI have some *strange* habit: I don't like the idea of installing software in system's hierarchy (/usr, /usr/share). The reason: installing software in /usr *might* crash the system (if something goes wrong), installing in /usr/local requires root's privileges (unless CU is allowed to write to /usr/local, but I don't like this idea). Therefore I install some of my software in ~/opt/ProgramName/VersionNumber/. Looks similar, doesn't it?You might be interested in taking a look at Rootless, which is designed for exactly the installing-in-~ setup you like. It's not as good as a real Gobo system, of course, and you sometimes get interference with the host system, but it does do what you're doing.
Posted By: DarthcoderWhen i typeYou need to provide a mountpoint, or it's not going to know where to put it. So, say, `mkdir /Mount/HDC1 && mount /S/K/D/hdc1 /Mount/HDC1`. See `mount --help` or `man mount` for more details.
it responds cant find bla.... in etc /fstab or etc/mtab
mount /System/Kernel/Devices/hdc(say 1,2,3)
Posted By: DarthcoderThanks Michael, in 013 Qparted lets me mount the drive, but I still cant see itWhat do you mean by "see it"? Run `mount` (no arguments) and it'll tell you the mountpoint: look for the line something like "/System/Kernel/Devices/hdc1 on /mount/point type ext3 (rw)".
Posted By: DarthcoderIn 014 Gparted does not let me mount it, after doing a mkdir and the next command tit say mount not found then after that cannot get any application to runThe last part of that is odd, but as for the first, GParted isn't meant to mount partitions, it's meant to edit them. Mount them from the terminal, like I suggested in the last post. You may be able to do it in Konqueror too, but I don't have the LiveCD here right now to check how it's configured.
Posted By: DarthcoderI would like to check that it will actually read stuff of my HDIt will do that, yes, if you mount it. The ISO supports ext2/3, JFS, FAT32, and NTFS (at least) out of the box; any partition in those formats will work fine. It's not a hugely useful thing to do all the same unless you're using it as a rescue CD or something. Its primary purpose is as an install CD, rather than one to actually work in like Knoppix.
Posted By: Darthcoderfor example Knoppix required a mount as well but at least I had a clue as to what it was called b4 I type mountI don't really understand this. It's called what you tell it to be called. `mount /dev/hdc1 /where/you/want/to/mount/it`. There's nothing to have a clue about, you choose. Traditionally you'd put it under /Mount somewhere, but it can be anywhere. For quick mounts from the live CD I usually use ~/mp if I need to get files.
Posted By: Darthcoderbut in Gobo the mount command does not list anything I understand...mount will only list partitions that are already mounted. On the live CD, that'll be a lot of compressed SquashFS images that hold all the packages, a ram disk, and not a lot else. `fdisk -l` will list all the partitions on all the drives in the system if you need to find the device name, and give a little info about how big it is, where it is on the disk, and what filesystem it uses to help narrow that down.
for example Knoppix required a mount as well but at least I had a clue as to what it was called b4 I type mount
I would like to check that it will actually read stuff of my HD (which all others LIVECD's could)
I think I may wait till 014 is stable b4 I try again, I'll just go back to Ubuntu and Mandriva
1 to 14 of 14