Archiv der Kategorie ‘Linux‘

 
 

Ubuntu: Booting with "quiet" and "splash" ist faster.

I like to see what is going on when my ubuntu boots, so i disabled "splash" and "quiet" in mit "/etc/default/grub" and updated grub via "update-grub" afterwards as root.
Today i checked how this might slow down the boot process, because of the much output by the kernel. This is my result:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" --> 28 Seconds
GRUB_CMDLINE_LINUX_DEFAULT="quiet" --> 32 Seconds
GRUB_CMDLINE_LINUX_DEFAULT="splash" --> 30 Seconds
GRUB_CMDLINE_LINUX_DEFAULT=" " --> 33 Seconds

On my system, "quiet" speeds up booting by 1 or 2 seconds, and "splash" by 2 or 3 seconds.

I might leave both on for faster booting, but i will miss my informative kernel output :(

Bash: Rename all files in current directory to lowercase

Just some code i used to rename my holiday pictures to lowercase.

find ./* -type f -maxdepth 0 | while read upName; do loName=`echo "${upName}" | tr '[:upper:]' '[:lower:]'`; mv "$upName" "$loName"; done

find lists all files in current directory. -type f lists only files, not directorys.

The while loop iterates over the file list.

echo | tr makes the filename variable lowercase.

mv finally moves the file.

Thanks to Veikko for the maxdepth hint.

Bash: Sleepsort Algorithm

Some code that a friend showed to me was this:

#!/bin/bash

function f() {
  sleep "$1"
  echo "$1"
}

while [ -n "$1" ]
do
  f "$1" &
  shift
done

wait

Example:

./sleepsort 9 3 7 1 3 2 4 7 4 6

He called it "sleepsort". And somehow, it really works. Not the fastest, but it works.

Linux: How i satisfied a windows user with Ubuntu

A few days ago, a friend of mine had a hard disk failure. Luckily, i had a old disk i could offer for replacement. But instead of installing Windows XP or Windows 7, my friend wanted to try Ubuntu Linux.

In the following post, i will mention some programs and tips to satisfy a windows user with Ubuntu Linux.


Den ganzen Beitrag lesen...

Auto: Meine Tux Auto-Fahne

Jetzt zur WM 2010 in Südafrika gab es kaum ein Auto ohne Auto-Fahnen zu sehen. Dies hat mich auf eine Idee gebracht ...

Den ganzen Beitrag lesen...

Ubuntu: Howto move min/max/close buttons to the right in Ubuntu Lynx 10.4

With version 10.4 Ubuntu design team decided to move the minimize/maximize/close buttons to the left. Maybe to look like mac. For everybody who do not like this and want their buttons back on the right, follow the instructions.

Den ganzen Beitrag lesen...

Ubuntu: Open Windows in Foreground

If your windows do not open in Foreground like we are all used to it, it might be caused by a wrong compiz-setting.
In this article i will describe how to fix that problem.

Den ganzen Beitrag lesen...

Ubuntu: Adding Thunderbird to indicator-applet

Adding Thunderbird to the "indicator-applet" is possible and not that hard.
I wrote down the few commands and hints.

Den ganzen Beitrag lesen...

Linux: Molly-Guard schützt vor einem ungewollten shutdown/reboot/halt

Wer kennt das nicht, man hat mal wieder mehr als 2 SSH Sessions am laufen und will nur mal eben den einen Server neu starten weil es nen Kernelubgrade gab. Dumm nur dass man sich statt auf dem Enticklungsserver auf dem Produktionsserver befunden hat und dieser nun eine Downtime abbekommen hat.
Dies lässt sich leicht mit einem kleinen Script verhindern, Molly-Guard heißt das gute Stück.

Den ganzen Beitrag lesen...

Linux: EEE PC - Bildschirm optimal nutzen unter Ubuntu und Firefox

aus-eee-pc-900
Asus hat mit seinem EEE PC den Nerv der Zeit getroffen, ultramobile Computer die trotzdem vollwertig nutzbar und vor allem bezahlbar sind. Da ich wegen Arbeit und Studium recht viel unterwegs bin hab ich mir auch solch ein Gerät zugelegt und gleich mein bevorzugtes Betriebssystem Ubuntu in der Version 9.04 aufgespielt. Einziges Manko war dann der etwas kleine Monitor mit seiner mickrigen Auflösung von 1024x600. Leider ist die Oberfläche von Ubuntu und Firefox nicht standardmäßig zum Platzsparen ausgelegt, doch dafür hab ich recht schnell jeweils eine Lösung gefunden. Lesen Sie in dem folgenden Artikel wie ich die von Ubuntu und Firefox verbrauchte Bildschrimfläche um fast 50% verringert habe bei annähernd gleicher Nutzbarkeit.

Den ganzen Beitrag lesen...