Skip to content

Setting up RAID 1 on my Ubuntu Desktop

Well, I pretty much followed this guide to a T.

The additional steps I took where giving full rights to the mounted drive to my own user.

sudo chown -R thomas:thomas /mnt/md0
sudo chmod -R 700 /mnt/md0

as well as adding a samba block

sudo nano /etc/samba/smb.conf
[raid]
  path = /mnt/md0
  read only = no
  guest ok = no
  valid users = thomas
  create mask = 0700
  directory mask = 0700

Restart samba.

sudo service smbd restart

Comments