

I have used btrfs exactly once because it was the default on openSUSE, and the filesystem eventually became corrupted and unrecoverable.
I have used btrfs exactly once because it was the default on openSUSE, and the filesystem eventually became corrupted and unrecoverable.
Yes, and their donations are limited to 100k a year per corporation/organization
Interesting that they did that.
Debian testing is not rolling. Sid/unstable is.
I was using Ubuntu and Linux Mint more than a decade ago, then I switched to Debian, so I guess I skipped most of this curve, lol.
For me it’s like:
Literally me. One time I was asked “What is happiness” or some other similar shit. It’s not like I think about stuff like that at regular basis, lol.
Kolorpaint is decent if you don’t care about layers.
How do you do any kind of work without having layers?
It is, but most modern software doesn’t work at all in Wine. I have 2 apps (Paint.net, and SketchUp Make 2017) which don’t have any real alternatives (or they suck) for Linux and they don’t work in Wine.
It’s Windows. You don’t need a license to run it. I mean you should have it, but it won’t suddenly stop working like in old days.
The command after &&
runs only if the previous command returns non-error exit status (0), if pacman
returns error the latter command won’t be executed.
Additionally there’s probably a configuration option for sudo
for it to not time out, but it doesn’t matter since you can just use systemctl reboot
as a normal user to reboot your system (at least on Debian). If that’s too long I recommend to add this to your .bashrc
(if you use Bash): alias reb='systemctl reboot'
or something similar.
I am not sure how Windows handles processes, but on Linux you have different signals. SIGKILL
(9) generally kills the process immediately, but there are other signals like SIGTERM
(the default signal, 1) which asks process to gracefully quit, and many others.
If you want to know more, check the signal(7)
man page or the Wikipedia page.
Ah, the zoomer distributions /s
Whatever works for other people I guess. A good Linux administrator is a person who can work with the default configuration on their OS, and I am trying to be that person and eventually learning inside-outs of systemd.
Debian users:
What do you mean by PPA?
Also: apt-get
is intended as low-level APT interface for scripts, just use apt
instead. I get why people are confused nowadays, because APT documentation is terrible.
Me: kill -9 $$
It’s only a joke btw.
Have you seen their bug tracker? It takes about 3.2 years to get comfortable using the command-line tool, they want you to use. Or you know, you can be a bit more fancy and report bugs using… your favourite e-mail client.
I don’t think they do anymore with trixie, which is a bit surprising.
Although to be honest it makes sense, given how cheap you can buy relatively new computer nowadays.
I don’t think there’s any reason to use rmdir
unless you write (Ba)sh scripts, and you want to make sure that the directory is indeed empty. Just use rm -r
.
Also note that you can use rmdir -p this/is/some/path
to remove all nested directories including the parent (this
here). But this will only work if there’s exactly one directory per parent directory, and the last directory doesn’t have any files (including directories). This might be helpful for some scripts.
rmdir -r
isn’t a thing, because that would invalidate the reason this command exists.
That works, unless you mistype the file name, and delete some unrelated directory by mistake.
Nah, that’s OpenBSD.