-
Recent Posts
Recent Comments
- systemd unit hardening followup followup | the world needs more puppet! on systemd unit hardening followup
- systemd unit hardening followup | the world needs more puppet! on systemd unit hardening
- Andreas on Dovecot: Apply sieve filter to existing emails
- Feiko Nanninga on Short Tip: Install shellcheck on an outdated CentOS
- Computerkid/Grayson Penland on Linux Short Tip: systemd-networkd and DNS servers
Archives
- February 2022
- January 2022
- August 2020
- June 2020
- January 2019
- November 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- March 2014
- February 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- July 2011
Categories
Meta
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
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