I'm currently using Ubuntu 14.04.2 Server on Oracle VM VirtualBox as I'm trying to understand the deployment to be ready to deploy it in a real network.
Here is the situation. Currently, I have assigned a 8GB HDD to the VM which I use for the system. Now, I want to add another HDD, say 12GB, to be used with Samba for storing files to be shared among multiple users.
What I need to be able to do is:
- Add a new 12GB HDD to the VM
- Link the newly added HDD to the system
- Mount it as /srv/share/ which will be used with the Samba
What I also need to know, is the process the same for a real hardware?
The base HDD is 500GB and the secondary is 1TB
sudo mount -a
)? – Takkat Mar 24 '16 at 09:55sudo mount -a
works fine ... – sikas Mar 24 '16 at 09:56ext
instead ofext4
.. corrected that and worked fine .. – sikas Mar 24 '16 at 09:56parted
and mounting is the same on bare metal. – Takkat Mar 24 '16 at 09:58gparted
. – Takkat Mar 24 '16 at 09:59