Tag Archives: ubuntu

Running old Ubuntu versions as chroot with proot

Currently I am working on building a modern Clang/LLVM-based toolchain for ancient Ubuntu versions. In order to do that I wrote a few helper scripts I am using in conjunction with proot to run old Ubuntu rootfs1 inside a chroot … Continue reading

Posted in Bash, EN, Linux, Programming, Software, Unix and unixoid | Tagged , | Leave a comment

How to get English error messages on a localized Ubuntu?

Have you ever noticed that oftentimes people in anglophone forums will almost be offended if someone quotes an error message in their local language? Well, on one hand I can understand it, on the other I see more value in … Continue reading

Posted in Administration, EN, Linux, Software | Tagged , , | Leave a comment

Selecting the editor on Debian/Ubuntu non-interactively

Set the selected editor on Ubuntu/Debian for yourself and root in one line: echo ‘SELECTED_EDITOR=”/usr/bin/vim.nox”‘|tee $HOME/.selected_editor| \ sudo tee /root/.selected_editor or echo “SELECTED_EDITOR=\”$(which vim.nox)\””|tee $HOME/.selected_editor| \ sudo tee /root/.selected_editor // Oliver

Posted in Bash, EN, Linux, Programming | Tagged , | Leave a comment

Finding the kernel command line …

Something I’ve been looking for for some time now: cat /proc/cmdline

Posted in Linux, Software, Unix and unixoid | Tagged | Leave a comment

Installing php5 on Ubuntu requires apache2?

When I wanted to install lighttpd today I added php5 to the apt-get install. But then it would tell me that apache2 and numerous other packages would also get installed. Turns out that instead of php5 I actually wanted php5-cgi. … Continue reading

Posted in EN, Linux, Unix and unixoid | Tagged | Leave a comment

Little annoyance

Lately in Ubuntu 10.04 I got upon login two times the output about the number of packages available to be updated. One of them always outdated. I have long tried to find the reason and finally managed to. The problem … Continue reading

Posted in EN, Linux, Software | Tagged , , , , | Leave a comment

ecryptfs and sshd, again

In January I described an issue with ecryptfs and sshd. Now I wanted to get X11 forwarding to work with it, but the problem essentially remains the same. All I got this time was: /usr/bin/X11/xauth: timeout in locking authority file … Continue reading

Posted in EN, IT Security, Linux, Software, Unix and unixoid | Tagged , , , , , | 4 Comments

ecryptfs and sshd …

I just made a discovery on the Ubuntu box I run. After being unable to log into it using SSH and my public key which it refused with a laconic Permission denied (publickey), I tried to dig deeper. So obviously … Continue reading

Posted in EN, Linux, Unix and unixoid | Tagged , , , | Leave a comment