Search Results for: mdadm

Setup a Raid 10 with mdadm

In the past I already blogged a few times about mdadm. Today we’ve a short article about creating a Raid 10 with mdadm on new disks. First we need to identify the two disks. lsblk is always a good indicator … Continue reading

Posted in General, Linux | Tagged , , | Leave a comment

Short Tip: Replacing a failed drive in mdadm softwareraid

Sometimes you check your fileserver and your raid looks like this: # cat /proc/mdstat Personalities : [raid1] [raid6] [raid5] [raid4] md125 : active (auto-read-only) raid6 sdl[1] sdh[7] sdf[5] sdk[2] sdg[6] sdm[8] sdi[0] sdn[10] sde[4] 23441080320 blocks super 1.2 level 6, … Continue reading

Posted in 30in30, General, Linux, Short Tips | Leave a comment

ZFS RaidZ2 vs mdadm Raid6

Im Vorfeld habe ich RaidZ2 gestet. Nun Werden die gleichen Tests mit mdadm durchgeführt. Dazu muss zuerst der Pool Tank gelöscht werden. Dies geht mit zpool destroy tank. Im Anschluss werden die von ZFS angelegten Partitionen gelöscht (bzw. eine neue, … Continue reading

Posted in General | 3 Comments

Debian Softwareraid 6 mit mdadm

Nachdem mein Fileserver endlich wieder läuft konnte ich ein neues Raid 6 mit 6 Festplatten a 2TB(HD204ui und HD203wi) einrichten. Dazu mussten die Festplatten erst partitioniert werden. 1. Partitionstool installieren aptitude install parted 2. Festplatten partitionieren, auf jeder Platte soll … Continue reading

Posted in General, Linux | Leave a comment

Setup Gentoo on a Hetzner server

I really like Gentoo for their awesome package manager, Portage. Gentoo is a really flexible distribution that you can customize (and break) in many ways. It’s a good opportunity to learn a lot about linux. I documented the installation process. … Continue reading

Posted in General, Linux, Virtualization | Leave a comment

VirtAPI-Stack Review Part 1 – What happend in the last six months?

I announced the VirtAPI-Stack during the last “30 Posts in 30 Days” Challenge. Let us do a recap, what did we achive in the past 6 months? VirtAPI-Stack description: Let us start with a short description, what was that VirtAPI … Continue reading

Posted in 30in30, General, Linux | Leave a comment

Neue Präsentation

Ich arbeite aktuell an einer neuen Präsentation. Erstmals werde ich dafür Markdown nutzen und dies mit remarkjs.com rendern. Vorteile: – Versionierung möglich – Einfache Implementierung von Notes + Slides – Gerendert wird in html, welches in *jedem* Browser skaliert – … Continue reading

Posted in General | Leave a comment

Linux Short Tip

mdadm dazu überreden ein Array zu checken: Nachtrag: Schicker ist natürlich: Denn hiermit wird jedes Array geprüft, nicht nur md0. Mit dem Befehl: kann man überprüfen wie viele Blöcke eines Arrays nicht übereinstimmen. Schreibt man in “sync_action” nicht check sondern … Continue reading

Posted in General, Linux, Short Tips | Leave a comment

Linux Short Tip

#mdadm Raid erweitern: # raid kann gemountet bleiben, muss aber nicht… # ins Softwareraid hinzufügen: # Bitmap anlegen und dann das Raid vergrößern: # ~1100 Minuten warten, siehe cat /proc/mdstat # Dateisystem prüfen # nun das Dateisystem erweitern # Dateisystem … Continue reading

Posted in General, Linux, Short Tips | Leave a comment

Linux Short Tip

#mdadm Raid6 über 4 Festplatten erstellen: mdadm –create /dev/md3 –level=6 –raid-devices=4 /dev/sda /dev/sdb /dev/sdc /dev/sdd # /etc/mdadm/mdadm.conf updaten: mdadm –assemble –scan > /etc/mdadm/mdadm.conf # Infos des neuen Raids anzeigen: mdadm –detail /dev/md3 # Raidaufbaustatus überprüfen: cat /proc/mdstat # Raidaufbau starten: … Continue reading

Posted in General, Linux, Short Tips | Leave a comment