Category Archives: Uncategorized

Create Linux RAID Level 1 from 4 TB Harddisk

Partition the disk into two equal parts. # parted /dev/sda GNU Parted 2.3 Using /dev/sda Welcome to GNU Parted! Type ‘help’ to view a list of commands. (parted) mklabel gpt (parted) print Model: Areca ARC-1212-VOL#000 (scsi) Disk /dev/sda: 4,00TB Sector … Continue reading

Posted in Uncategorized | Leave a comment

Vim set file encoding

:set bomb :set fileencoding=utf-8

Posted in Uncategorized | Tagged , | Leave a comment

Force secure browsing https

RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} dir RewriteRule ^(.*)$ https://www.example.com/dir/$1 [R,L]

Posted in Uncategorized | Tagged , | Leave a comment