Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: how can I add more hard drives to my server?

  1. #11
    Join Date
    Nov 2007
    Location
    Coldwater, OH
    Beans
    551
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: how can I add more hard drives to my server?

    Again Bab1 didnt you read what I posted before 160gig is where I got the owncloud/os server stuff and I am just adding 3 more hard drives to the system to add more storage. I do not want to add any external sites to my owncloud period for more storage that is why I 3 more hdd to add more storage. Basically its going to come down to is that I want to add more storage for Owncloud for my customers.
    Tim's Computer Repair
    trpcrepair.com

  2. #12
    Join Date
    Oct 2009
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: how can I add more hard drives to my server?

    Read this:
    http://www.ranjith.info/p/owncloud.html

    I just tested it with ownCloud 5 and it worked as expected.
    Come to #ubuntuforums! We have cookies! | Basic Ubuntu Security Guide

    Tomorrow's an illusion and yesterday's a dream, today is a solution...

  3. #13
    Join Date
    Nov 2007
    Location
    Coldwater, OH
    Beans
    551
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: how can I add more hard drives to my server?

    charles that is what I am after so how do I format and mount the drives to the server then how do I add it to owncloud?
    Tim's Computer Repair
    trpcrepair.com

  4. #14
    Join Date
    Oct 2009
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: how can I add more hard drives to my server?

    If you want to keep expanding the storage avalible to owncloud, you would be better off looking for a way to pool the disks together. LVM can do this.

    Otherwise you will have to create mount points for each new drive and partition and format them, then add the path to owncloud.

    See here, about half way down the page, to see what you need to do to partition and format the drives:
    http://zackreed.me/articles/38-softw...ian-with-mdadm

    Code:
    sudo parted -a optimal /dev/sdb
    GNU Parted 2.3
    Using /dev/sdb
    Welcome to GNU Parted! Type 'help' to view a list of commands.
    (parted) mklabel gpt 
    (parted) mkpart primary 1 -1
    (parted) align-check                                                      
    alignment type(min/opt)  [optimal]/minimal? optimal                       
    Partition number? 1                                                       
    1 aligned
    (parted) quit
    Code:
    sudo mkfs -t ext4 /dev/sdb
    Come to #ubuntuforums! We have cookies! | Basic Ubuntu Security Guide

    Tomorrow's an illusion and yesterday's a dream, today is a solution...

  5. #15
    Join Date
    Nov 2007
    Location
    Coldwater, OH
    Beans
    551
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: how can I add more hard drives to my server?

    what happens if there was already drive under ide formated as sdb because sata drive is also under sdb I dont want to screw it up.
    Last edited by kustomjs; December 13th, 2013 at 02:53 AM.
    Tim's Computer Repair
    trpcrepair.com

  6. #16
    Join Date
    Oct 2009
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: how can I add more hard drives to my server?

    It doesn't matter if the drive is sata or ide, they all show up as sdXY in the newer versions of Ubuntu.

    Judging from your fdisk, sdb does not have any partitions on it, and neither does sdc.
    Come to #ubuntuforums! We have cookies! | Basic Ubuntu Security Guide

    Tomorrow's an illusion and yesterday's a dream, today is a solution...

  7. #17
    Join Date
    Nov 2007
    Location
    Coldwater, OH
    Beans
    551
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: how can I add more hard drives to my server?

    so do the formatting like you said on about 3 hours ago by this:


    Code:
    Code:
    
    sudo parted -a optimal /dev/sdb
    GNU Parted 2.3
    Using /dev/sdb
    Welcome to GNU Parted! Type 'help' to view a list of commands.
    (parted) mklabel gpt 
    (parted) mkpart primary 1 -1
    (parted) align-check                                                      
    alignment type(min/opt)  [optimal]/minimal? optimal                       
    Partition number? 1                                                       
    1 aligned
    (parted) quit
    
    Code:
    
    sudo mkfs -t ext4 /dev/sdb
    then should I make an directory for these drives for owncloud?
    Last edited by kustomjs; December 13th, 2013 at 04:59 AM.
    Tim's Computer Repair
    trpcrepair.com

  8. #18
    Join Date
    Oct 2009
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: how can I add more hard drives to my server?

    Yes. Create the directory and mount the drive there then follow the instructions here:
    http://www.ranjith.info/p/owncloud.html
    Come to #ubuntuforums! We have cookies! | Basic Ubuntu Security Guide

    Tomorrow's an illusion and yesterday's a dream, today is a solution...

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •