Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Sloppiness (Score 1) 179

I've not yet looked at what you have to offer, but based off my UID and your own, I do consider you 'new around these parts' - I'm not exactly an old fish in this pond myself. Maybe that's a part of my conservative nature.

It's all relative, but I'm more than willing to admit you've got me beat soundly.

That said, I intend to look at what you have to offer and assess it non-impartially. If it sucks, it sucks - you learned a lesson and had a good time, accomplishing something personally. My resume has a number of such experiences.

I would like to request that, if you do not find it to your satisfaction, you contact me to explain why that is, both so that I can have a chance to clear up anything I have failed to present adequately (there have been multiple cases of this thus far, sadly) and so that I can attempt to remedy the issues I recognize as such (or, if I cannot fix them, so I can learn the appropriate lesson). Note that I do not consider "this is of no use to me" a design fault, as it is intended to target a niche audience, but baring that I would love the chance to fix any problems you find, even if they are fundamental to the project.

The best of luck to you.

Thank you!

Comment Re:YaLd (Score 2) 179

The other thing to consider is the many potential points of failure when a distro relies on other distros with dissimilar distribution methods, library tools, packaging tools, expected directory structure, etc. Just one little change can cause a huge ripple effect. Arch, last month changed directory structures followed by changing /lib to /usr/lib. It bricked a lot of machines requiring much manual messing around to get things back on track.

I'm doing my best to cover these issues as they arise. Before the /usr move, I was reasonably confident I had most of the major ones squashed, but the /usr move has caused some issues.

However, I actually consider this a relative strength of Bedrock. I am putting a high priority on ensuring that if a client is unexpected broken, the system continues to function. In some respects this makes Arch-on-Bedrock more reliable than straight Arch, although with the alpha-state Bedrock is in at the moment I can't drop the qualifier "in some respects".

Comment Re:already exists. Its called Debian (Score 1) 179

Ah, my apologies. While I feel I answered your question, perhaps I did not frame my answer correctly. Let me first tackle something I missed in the original question first:

I don't think anyone would mind if there was a cool and easy way to run stuff from SID inside Stable...

There already is a relatively clean way to run things from Sid from within Stable called schroot. If all you want is to run things from within Sid in Stable, that should suffice. I used it early on in the experiments that lead up to Bedrock. I ended up discarding it because (1) I wanted to be able to run a command without worrying where the parent program is, and (2) I wanted this to work cleanly with just about any distro, not just Debian-based ones. I ended up concluding this required the ability to statically compile the chroot program (in this case schroot), and found with that requirement capchroot was preferable. Regarding your original question:

Then why not contributing to Debian the features of Bedrock?

Largely because I felt, to meet all of my goals (including the ones I described in the previous response), I needed to change a sufficient number of things that there isn't anything left to call Debian. It wouldn't run in Debian, it would replace it. If I limited myself to something which could run on top of Debian, it would be more or less the same thing as schroot. I do not propose that I could write schroot better than the current maintainer.

If that does not suffice, it would be helpful if you could explain where or how you feel I am failing to answer your question, as at the moment I'm at a loss as to where my explanation is lacking.

Comment Re:Minimal busybox LFS with chroots (Score 1) 179

Perhaps we're misunderstanding each other.

They're just programs that init happens to run when it feels like it.

That's a terrible way to describe dependencies. Eg, you can't run for example NFS mounts if you don't have network, and can't do network without local FS, etc.

You're missing a bit of context with that. That statement was in direct response to your request for me to explain why I singled out Ubuntu/Upstart. It was intended in contrast to how Ubuntu's/Upstart's daemons function, as sysv daemons can all run just fine in a chroot more or less irrelevant of host (provided the dependencies are met), but Ubuntu's daemons cannot (due to dependence on a specific init which the host may not use). I can go ahead and ensure Bedrock provides network before setting up NFS, but I cannot ensure Bedrock provides the specific upstart init. Moreover, you explicitly said

(and I'm not even talking about dependency booting...

The fact you pointing out with great emphasis that I failed to address dependency issues in response to a statement which explicitly excluded dependency issues leads me to believe we are misunderstanding each other. If the misunderstandings are on my end, I apologize. I admit I could be dense and simply misunderstanding you - in fact, that's most likely the case - but it seems you're a bit scattered in your direction with the questions/responses. If you give me something very concrete and specific to respond to I will be more likely to succeed.

So OF COURSE it wont be resolved anytime , because Ubuntu guys don't care, they use Upstart.

Agreed, sadly. Ubuntu puts very little priority on things outside of their core interest - people who use chroots aren't exactly their target audience. None the less I have a functional workaround for the issue.

Now, Bedrock doesn't address these issues

I'm not sure exactly what issues you are referring to. While getting Ubuntu's daemons to work is not as clean as I would like, but works just fine. If you are referring to automatic dependency resolution for client daemons at boot, then no, the first alpha release does not provide any means for this quite yet. It is a relatively low priority at the moment (as specifying these things manually is absolutely trivial), and the project is yet quite young.

it's of very low interest to me

That's fine. Your particular needs could very well differ from mine, and if this does not benefit you, I certainly encourage you to stick with something which does. As I stated before, I agree that this a relatively niche project. However, I do not approve of the way you are misrepresenting what Bedrock Linux is and is capable of, as there are others like me who do have a use for such things who may be discouraged from trying the project out after reading your comment.

it's not better than managing chroot by hand, by myself.

If you truly believe this, then I have almost certainly failed in properly explaining it, and I am at a loss as to where I have lead you astray. While all of this is certainly possible manually, it is significantly more work for the particular usage cases for which I utilize it. At the risk of confusing the issue, I will make an analogy against package managers: What they do can very well be done manually, but if you wish for anything remotely complicated it is significantly easier to simply use a package manager. Stating that "apt-get remove [package]" is a waste when you can just run find against timestamps for when the package was installed and just rm the resulting files is either significantly lacking in imagination or disingenuous. Now, if you have no need for package managers as you don't add/remove things very often, well, that's fine. But that doesn't mean the project is sufficiently irrelevant to dismiss it out of hand and discourage others who could very well benefit from it.

Comment Re:already exists. Its called Debian (Score 1) 179

Early on, I used Debian stable and played with Sid in a chroot. However, a few issues arose which I could not find a good way to solve to my satisfaction without making my own distro:
  1. This meant I had to keep the base Debian up to date, and when the release was eventually EOL'd, I would have to either dist-upgrade or reinstall. By making the base as small as possible, it minimized the need for upkeep. I can potentially keep an absurdly large uptime while still dist-upgrading almost the entire userland. If a dist-upgrade fails, it's a non-issue, as I just cp -rp'd the chroot before doing so.
  2. Attempting to tie the init systems of every other distro into Debian's was a scary proposition, especially since I figured odds were good Debian would change their init system (and I was correct). Having my own init seemed a better option.
  3. The system I use to ensure things like shells and PATH work could be potentially ruined by package upgrades if Debian's package manager had control of such things without quite knowing what they were

I do not feel I am necessarily making a foolproof case for requiring a new distro - I could see legitimate discussion about the validity of simply building a system on top of an existing distro. Ultimately, it was because I just kept tweaking my early experiments with Debian Squeeze base and a Sid chroot until it no longer resembled any existing distros sufficiently to justify sharing their names.

Comment Re:already exists. Its called Debian (Score 1) 179

If "folks who can't figure it out for themselves" is your target audience,

It's not, at least not at the moment. The intent is more about automating things than making things easier. People who cannot compile things for themselves will likely have quite a lot of headaches with Bedrock Linux, at least as early as it is.

I hope you have some sort of unified update system, so patches for all your chroot environments just work too, since these folks aren't likely to figure patching out for themselves, either.

I've got a system in place, although it needs quite a bit of work. The idea behind it is to ease updates - a single command updates all of the clients.

Good luck.

Thanks, I'll need it. I do not consider this a small undertaking.

Usually you can install packages from testing/unstable-- you can usually (very easily) build from the source package using the lib versions in stable-- if someone hasn't beaten you to it with backports.

For quite a while I used Debian Stable with a mix of backports and my own custom compiled packages. However, as time went on, I wanted more and more things which were not available in backports and I didn't care to have to manually compile every single one. The only solution I found which let me get everything I wanted at the same time was chroots. I just kept playing with it until I felt I had something novel and worth sharing.

Also, where I don't want my regular system polluted with bleeding edge libraries, but newer libs are needed, I just set LD_LIBRARY_PATH in a wrapper script to point to particular libs. This would also work with a chroot install of wheezy/sid with bins run outside the chroot, so can use prebuilt bins for wheezy/sid on stable,

I toyed with this as well and found that it was also far to much work for the frequency I ended up using it.

though never needed to do this.

I think that's where the fundamental issue lies. It is not that there is a preferable alternative to what I've done so much as I've got a different set of desires than you do, and Bedrock Linux does not give you anything you did not already have. If this is the case, I fully encourage you to stick with what you know and like.

schroot makes this easy, but I haven't needed to do this in years

I actually used schroot for this for quite some time, but ended up dropping it as I couldn't find a way to statically compile it easily, and without that I couldn't find a sane way to ensure it can run transparently in every client without statically compiling it. Capchroot was a delightful solution which fit the bill, so long as it was paired with scripts to automate the various mounts necessary.

Comment Re:One Question (Score 1) 179

(1) A mix of dissatisfaction with the status quo and determination. Be careful when mixing such powerful agents.

(2) Mostly by messing with filesystem calls via chroots and bindmounts. I make the whole system feel cohesive with specially crafted PATHs and some scripts. Hopefully the description here satisfies your curiousity.

Comment Re:already exists. Its called Debian (Score 1) 179

There's a reason for the dependencies and if you don't understand it, perhaps you shouldn't embrace something that "gets rid of it" in the manner you're describing there.

I was under the impression I did understand much of the rationale behind the reason why things are set up the way they were, and that my solution is fitting. For example, one reason is that if everything was packaged with all of the libraries it needed, and there was a security issue in one of the libraries, all of the packages would have to be updated. By using shared libraries as most Linux distributions tend to, this ensures that once the problem has been fixed for the library, all of the packages which use it benefit. If this was not done, and one package failed to be updated, security issues could arise. Bedrock Linux simply groups things by the libraries the sets of libraries they are dependent on, so that the same principle is largely applied: The library only has to be updated once per distro that uses it as opposed to for every single package. So long as one stick with respectable distros for the clients, the issue isn't quite a big one here.

If you feel there are other large reasons I am overlooking for why the established manner is as it is and why Bedrock Linux fails to properly meet them, I would be very grateful if you could explain them to me or direct me to where I could learn more.

Main reason Valve's shipping for Ubuntu is that they've not gotten a handle on how to ship cross-distro capable installs and binary sets

My experiences with other proprietary software which attempts to ship cross-distro capable installs is sadly strewn with various headaches when I'm at either end of the stability-vs-cutting-edge spectrum. I mostly cited Steam as a potential use as it is a reasonably current example that could benefit that many slashdotters are well aware of. Should Valve managed to properly distribute something which works on everything from ScientificLinux to Arch, I will be all the happier.

Comment Re:Stability (Score 1) 179

Typically, yes, but I'm using something a bit out of the norm. Want I initially wanted, and ended up creating, was a way to have the vast majority of the system be something known to be stable/reliable/unchanging (e.g.: Debian Stable), yet still have access to cutting-edge things (e.g.: Arch Linux) without overly much work involved to get them. The resulting system could have stability issues with respect to the Arch packages, but only them - I know that the init system from Debian will remain stable, but maybe compiz from Arch will crash on me when I feel like playing with it. If you do not feel that meets what I described, it could be I failed to describe it properly, and if so, I apologize.

Comment Re:Sloppiness (Score 1) 179

An ASCII Art logo?

I'm just much, much better with text editors than I am with image editors. I wanted to focus more on the actual distro than the artwork. Other people have offered to spruce the website

So it is a CLI distro?!

Not really, no. While it is extremely minimal out of the box for technical reasons, the intent is you add quite a bit more to it, including whatever desktop environment you feel like.

Gives the wrong impression right at the start.

It is definitely not for everyone. I like it, but I know people I've explicitly recommend not try it. If a CLI scares you off, this is not for you - at least not at the first alpha release.

Comment Re: If it works on Ubuntu (Score 1) 179

I gave an example here that arose with software that worked fine in Ubuntu but not in Debian. There is quite a bit of software out there that is very picky about what libraries are used. If you get everything from your repository's package manager or compile them yourself, it's not a huge issue, but if it is not in your repository and you don't want to or can't compile it (e.g.: proprietary software such as Valve's Steam), you have to fall back to other options. This happened to me sufficiently often that I ended up creating the discussed topic, and figured it was worth sharing.

Comment Re:this has got to be a troll... (Score 2) 179

Would you mind elaborating on what drove you to that conclusion? I feel all that fits the first alpha of just about any project, honestly, but it could very well be I'm simply not viewing it with the same mindset others are.

I am quite serious with this project, and in no way trolling - I just want to share something I created which I found useful. If you could explain what made you draw that conclusion, I'll try to remedy it if I can.

Comment Re:Debian Testing (Score 1) 179

I don't think I quite follow what you are trying to say.

don't you think commenting "but we are better and you do not understand anything" under each post makes your distribution idea more interesting?

I really have no idea what prompted this. I think I came up with a nice out-of-the-box solution to a problem I found, but beyond that I don't really think anyone working on the project is necessarily "better" than anyone else. To be frank, you're all strangers I don't know well enough to compare myself too.

Your idea is okay, not very usable for the most people, but a nice project.

This much I think I follow.

But advocating it in the way you're doing at the moment, you will get many people who hate it, because you tried to force it on them

In no way do I intend to force this on anyone. Personally I felt it was a relatively niche project. I expected quite a few people to find it interesting, but that's really it - I didn't expect anywhere near the number of people offering to try it out that have. Would you mind elaborating on what gave you that idea? I'd really like to see if I can change whatever I did to cause this to avoid having other people draw similar conclusions.

Comment Re:Debian Testing (Score 1) 179

That's what I used to do, but it was far, far to much work. No where near everything I wanted was available in backports, and to be frank I don't want to compile quite that much. Gentoo was interesting but not my cup of tea. This system provides me a way of grabbing arbitrary packages from arbitrary Linux distributions with relative ease, and meets my needs perfectly. I can certainly understand this not being for everyone - if you're happy with Debian and backports+compiling, you're more than welcome to stick with it. However it is not a sufficient solution for what I want, and based on the feedback I've been getting, I'm not the only one.

Comment Re:Debian Testing (Score 1) 179

But testing? How many times did you have issues with it? What issues exactly?

Stable has two definitions in this context that I can think of: (1) reliability and (2) lack of changes. I want something which stays the same. I do not necessarily want to keep myself up to date on the changes going on if I don't have time for it. I want something that stays the same for extended periods of time. However, I don't always want that - occasionally I do have the free time to play with something cutting edge, and so I do.

This is what we call a backport. dget the .dsc file, dpkg-source -x that one, then build with dpkg-buidpackage. And that's if the backport doesn't exist yet in backports.debian.org

I used to do that, but I got tired of it. Bedrock's system is significantly less work to achieve the same goal with the number of things from other distros I want.

If you really don't want to do that (because there's too many new libs to depend on), then a simple chroot is enough.

I disagree. I want it all to feel like one, cohesive system. I don't want to think about what chroot something is in when I run a random command, I just want to run it and have it launch like it was a traditional Linux distribution.

Most of the time, all what you need is already there.

If you restrict it to need, then yes, that's probably true. However, I want quite a bit more than that, and this give it to me quite nicely.

To be clear, I don't think this is for everyone. If you're happy with what you've got, please do continue to use it. For me, absolutely no distro I could find provided all of the features I wanted, but I found if I could just pick pieces from a variety of them I would get want I want. So I did it, and figured it would be worth sharing in case other people feel similarly.

BTW, your example with dbus and firefox is a bit weird. Who and for what reason would you want to do this?

That's mostly a personal quirk I cannot find the words to fully justify. If you really want a good answer ask in #suckless on irc.oftc.net - there are others there who feel similarly about dbus but are much more apt at explaining why.

Slashdot Top Deals

"I say we take off; nuke the site from orbit. It's the only way to be sure." - Corporal Hicks, in "Aliens"

Working...