Difference between revisions of "Adding a Second Hard Drive"

From FreekiWiki
Jump to navigation Jump to search
(cleanup)
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Ubuntu Documentation==
+
{{cleanup}}{{Migrated}}
;Also see the following [https://help.ubuntu.com/community/InstallingANewHardDrive documentation].
+
[https://docs.google.com/a/freegeek.org/document/d/1huDDppWbZqxX8yBdmMWLh858Kf9IkuHiuzJ2KdTWgHU/edit?usp=sharing Link]
==Highlights==
+
 
*If you want to allow a normal user to create files on this drive, you can either give this user ownership of the top directory of the drive filesystem: (replace USERNAME with the username)
+
This page is about making a second hard drive visible from a working install of Ubuntu.
sudo chown -R USERNAME:USERNAME /media/mynewdrive
+
;See the following [https://help.ubuntu.com/community/InstallingANewHardDrive documentation] for command line/manual instructions.
  
*or in a more flexible way, practical if you have several users, allow for instance the users in the plugdev group (usually those who are meant to be able to mount removable disks, desktop users) to create files and sub-directories on the disk:
+
==Formatting an Unformatted Drive==
sudo chgrp plugdev /media/mynewdrive
 
sudo chmod g+w /media/mynewdrive
 
sudo chmod +t /media/mynewdrive
 
==Formatting and Unformatted Drive==
 
 
Obviously, do this first if the drive is not formatted
 
Obviously, do this first if the drive is not formatted
 
:1) Turn machine on, connect to Network
 
:1) Turn machine on, connect to Network
:2) Get gparted via add/remove or with apt-get
+
:2) Get gparted via software center, synaptic, or sudo apt-get (command line)
:3) Open terminal, start gparted (type gparted)
+
:3) Open it (System > Administration > GParted)
:4) In upper right corner of Gparted window use pull down to select second drive
+
:4) In upper right corner of GParted window use pull down to select second drive
 
:5) In main window of Gparted select line that looks like this"
 
:5) In main window of Gparted select line that looks like this"
 
* unallocated  .....  unallocated  XX.XX GB
 
* unallocated  .....  unallocated  XX.XX GB
 
* right click on it and select, "New"
 
* right click on it and select, "New"
 
* Create
 
* Create
:6) select ext3 as format type
+
:6) select ext4 as format type (or ext3 for backwards compatibility with Hardy)
 
:7) Hard drive will not be seen under "Places" until restart
 
:7) Hard drive will not be seen under "Places" until restart
 +
 +
==Granting Permissions to Normal Users==
 +
Once you can access the drive under "Places," we want to make it so everyday users of the machine can modify files on the new drive.
 +
*For a single user, you can give the user ownership of the top directory of the drive filesystem:
 +
(replace USERNAME with the username)
 +
sudo chown -R USERNAME:USERNAME /media/mynewdrive
 +
 +
*For multiple users, give the users in the plugdev group permissions on the new disk:
 +
(unless something funny happened, the plugdev group will contain those who are meant to be able to mount removable disks, aka normal users):
 +
sudo chgrp plugdev /media/mynewdrive
 +
sudo chmod g+w /media/mynewdrive
 +
sudo chmod +t /media/mynewdrive
  
 
[[Category: Tech support]]
 
[[Category: Tech support]]
 +
[[Category: Needs updating]]

Latest revision as of 14:31, 11 April 2014

This page or section appears to be out of date or otherwise inaccurate.
Please edit as seems necessary, removing the {{cleanup}} tag when you are through.

deletion

This page has been migrated to a document on Free Geek's Google Drive.

Information remaining behind may no longer be relevant.

MIGRATOR:

When you have tagged this page as migrated,
please add a link to the new document on Google Drive.

(Link to new page immediately below.)


Link

This page is about making a second hard drive visible from a working install of Ubuntu.

See the following documentation for command line/manual instructions.

Formatting an Unformatted Drive

Obviously, do this first if the drive is not formatted

1) Turn machine on, connect to Network
2) Get gparted via software center, synaptic, or sudo apt-get (command line)
3) Open it (System > Administration > GParted)
4) In upper right corner of GParted window use pull down to select second drive
5) In main window of Gparted select line that looks like this"
  • unallocated ..... unallocated XX.XX GB
  • right click on it and select, "New"
  • Create
6) select ext4 as format type (or ext3 for backwards compatibility with Hardy)
7) Hard drive will not be seen under "Places" until restart

Granting Permissions to Normal Users

Once you can access the drive under "Places," we want to make it so everyday users of the machine can modify files on the new drive.

  • For a single user, you can give the user ownership of the top directory of the drive filesystem:

(replace USERNAME with the username)

sudo chown -R USERNAME:USERNAME /media/mynewdrive
  • For multiple users, give the users in the plugdev group permissions on the new disk:

(unless something funny happened, the plugdev group will contain those who are meant to be able to mount removable disks, aka normal users):

sudo chgrp plugdev /media/mynewdrive
sudo chmod g+w /media/mynewdrive
sudo chmod +t /media/mynewdrive