Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:systemd (Score 0) 303

systemd basically transforms linux into windows.
If you want to use windows, with it's hidden startup, binary logfiles and other cumbersome and useless administrator (non-)functionality then just go ahead and install windows. Don't shovel those silly concepts down the throats of millions of happy linux users.

I have seen similar stuff on other unixes, like AIX and Solaris. It's a headache, non controllable and impossible to debug. After linux goes to systemd, the only OS left with a file-based philosophy will be BSD and... HP-UX!

Maybe we can hope that HP-UX gets ported to x86 after Itanium is dead. And that HP never gets the idea "oh everyone else uses databases/xml/binary for system relevant data, let's just fuck it up and do the same"

Well my next linux is going to be non-systemd, and if there's none, well then it's to be a BSD.
After linux for the desktop never happened, linux in general will not happen.
It was a nice time, I'll move on.
Which BSD is the best "distro"?

Comment Re:String concatenation operator in awk (Score 1) 729

well, looks like awk borrowed stuff from everywhere.
Like the invisible string concat reminds me of what echo does with it's parameters in the shell.

and it's still my preferred way of doing things.
I solved a lot of problems on codeeval.com with awk, and got quite good results. The code is really fast.

Comment Re:My opinion on the matter. (Score 1) 826

and this SMF may be coll and fancy, but it's a horrible headache for a "normal unix" sysadmin.
Why can't it just be simple files? Oh no, we need a frontend to dump in and out unreadable XML data.

Same goes qith AIX and it's internal database hiding stuff from the users.

So finally every unix and linux has it's own, incompatible "I want to do horrible registry like windows" hack just because it's cool and hip, but it's not useable.

Does systemd present a virtual filesystem where you can edit text files with vi and get the thing configured? That would be one idea with which I could still use my beloved broadcast sed commands to change configs on 100 servers.

Comment Re:Old problem. Let's fix it. (Score 1) 215

you are not precise on one point

In unix world, this long known issue was only about the first filename. Typically with classig usage of tar, the first file is your archive, and all others are just filenames. unix/bsd treat them as filenames.

Now comes GNU getopt and "suddenly" decides that from now on it would be cool to have options anywhere on the command line. Result is that in GNU-world, tar is now vulnerable (and many many other commands) which had had no issue at all previously.

I would really like that getopt changes back to "if we see filenames, then consider being after --" or rather: stop parsing options if you find a parameter which does not match any option. That's the last one. Just stop there, do not continue. Leave the rest as it is.

Comment Re:linux problem NOT unix problem! (Score 1) 215

the "first file in the list" problem is known to anyone doing unix since 30 years.
What's new here is that now the option can hide anywhere in the list.

Funny: in unix, the -file is lexicographically globbed onto first position (- comes before a, typically LANG=C)
in linux, you have some other oder... and it's first "a" then "-a" so the problem file does not come first. This would save one or the other exploit.... but getopt makes it so that the exploit works in any case.

Slashdot Top Deals

For God's sake, stop researching for a while and begin to think!

Working...