Category Archives: Linux

Archlinux Redmine

Install yaourt Goto http://aur.archlinux.org and download yaourt wget http://archiwain.free.fr/os/i686/yaourt/yaourt-0.9.2.6.src.tar.gz tar xvfz yaourt-0.9.2.6.src.tar.gz cd yaourt-0.9.2.6 make install   Install Apache Install and start apache # pacman -S apache # /etc/rc.d/httpd start Load apache at startup -> add httpd to /etc/rc.config DAEMONS=(… … Continue reading

Posted in Archlinux, Linux | Leave a comment

Encrypted File Systems

Encrypt USBDISK or non-root disk [root@localhost /]# cryptsetup luksFormat /dev/sdb1 [root@localhost /]# cryptsetup luksOpen /dev/sdb1 sensitiv [root@localhost /]# mkfs.ext3 /dev/mapper/sensitiv [root@localhost /]# mount /dev/mapper/sensitiv /mnt With LVM [root@localhost /]# cryptsetup luksFormat /dev/pool_snd/snd [root@localhost /]# cryptsetup luksOpen /dev/pool_snd/snd pool_enc-snd [root@localhost /]# … Continue reading

Posted in Linux, Security | Leave a comment

FlashLinux on a 256MB Memory Stick

01. Download the iso-images from SourceForge.net: http://sourceforge.net/project/showfiles.php?group_id=124770   02. Merging the images. LINUX USERS $ cat flashlinux-0.3.4-RC2.iso-part1 flashlinux-0.3.4-RC2.iso-part2 flashlinux-0.3.4-RC2.iso-part3 > flashlinux-0.3.4-RC2.iso md5sum -c flashlinux-0.3.4-RC2.iso.md5 WINDOWS USERS open a command prompt and type: $ copy /B flashlinux-0.3.4-RC2.iso-part1+flashlinux-0.3.4-RC2.iso-part2+flashlinux-0.3.4-RC2.iso-part3 /B flashlinux-0.3.4-RC2.iso   03. … Continue reading

Posted in Linux | Leave a comment

Gentoo – How to stay up to date?

So, if you want a stable system, you should NOT be using the -U flag. EVER. And if it breaks – well, you get to keep the pieces. The portage documentation tells you that this flag is deprecated for a … Continue reading

Posted in Gentoo, Linux | Leave a comment