Author Topic: Add Extra Hard Disk  (Read 7795 times)

keroro84

  • Zen Apprentice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Add Extra Hard Disk
« on: May 30, 2010, 05:39:52 pm »
How to add an extra hard disk to an existing (running) eBOX ?

nicolasdiogo

  • Forum Moderator
  • Zen Samurai
  • *****
  • Posts: 263
  • Karma: +3/-0
  • a pessimist, but trying out optimism
    • View Profile
    • BrainPowered Business Intelligence Consultancy - UK
Re: Add Extra Hard Disk
« Reply #1 on: May 30, 2010, 05:53:51 pm »
that is not really an ebox question

it would be better answered on ubuntu forum - since it is an OS question.

but as a start it depends on your motherboard and how many connection you have available, type of connection (eg: sata) and what your current disk/raid/lvm is.

could you post more details of your setup?

Nicolas
my opinions and suggestion expressed on this forum are my own as a user.
please note that i am not part of the Zentyal Development Team

www.brainpowered.net - supporting open-source Business Intelligence in Europe

flashbios

  • Zen Apprentice
  • *
  • Posts: 36
  • Karma: +0/-0
    • View Profile
    • Electronics, Bioschip & WebDesign services
Re: Add Extra Hard Disk
« Reply #2 on: May 31, 2010, 01:23:33 am »
For data ?

Best way is to add the harddisk with webmin (see howto webmin on this forum).
Very easy to do.  Make a mirror and mount it to /mnt/data or something like that.
use ext3.  This is how I do this ;-)  Works great !

satyris

  • Zen Monk
  • **
  • Posts: 94
  • Karma: +0/-0
    • View Profile
Re: Add Extra Hard Disk
« Reply #3 on: November 05, 2010, 02:21:17 pm »
Preparation of the Harddisk:

Partition:
Code: [Select]
cfdisk /dev/sdx
Filesystem (here ext4):
Code: [Select]
mkfs.ext4 /dev/sdx1
Label (if needed):
Code: [Select]
e2label /dev/sdx1 SamsungHD204UI
/etc/fstab:
Quote
# 2TB Harddisk /dev/sdb1 SamsungHD204UI
UUID=xxxx          /mnt/name     ext4    defaults    0       2

Mount:
Code: [Select]
mount -a or mount /mnt/name