Author Archives: fsormok

Solaris 10 zfs

What type of RAID’s can be created with ZFS? stripe mirror n-way mirror raidz or raidz1 raidz2 Size and Speed of the different RAID-types Info These information I’ve got from: WHEN TO (AND NOT TO) USE RAID-Z   St = … Continue reading

Posted in Solaris | Leave a comment

Solaris release confusion

Overview STAND: 31.12.2006 by psc Release Release Type Patches Patch Clusters Liveupgrade Solaris Stable Some Free Subscription ??? Solaris Express Metastable developer snapshot No available No available Yes (Monthly) Solaris Express Community Release less stable snapshot No available No available … Continue reading

Posted in Solaris | Leave a comment

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