media storage challenge
Admittedly my ultimate shortcoming is file system and I need to
configure a data partition I have labelled media/storage.
/sbin/mkfs.ext3 -m 1 /dev/sda8 (this went well)
Then I tried (hit and miss)
mount -t ext3 /dev/sda8 /data2
mount: mount point /data2 does not exist
So can someone take me by the hand and give me the sequential terminal
codes so I hve complete control of this partition as single user
Happy Thanksgiving and thabk you for your attention
allen
Allen Meyers
<a href="mailto:texas. ... at gmail dot com">texas. ... at gmail dot com</a>
Similar Topics
| Topic | Started |
|---|---|
| Strange networking problem with default route | 5 hours 5 min ago |
| tricycle hank | 5 hours 12 min ago |
| failing upgrade to Maverick beta | 7 hours 3 sec ago |
| Cups printing question | 7 hours 30 min ago |
| Partition size and No. Reccomendations | 7 hours 36 min ago |
| CD vs DVD install | 9 hours 55 sec ago |
| arrow keys not working(some times) when I am using Firefox page up and page down also is not working(some times) Ubuntu 10.04 64 bit Firefox 3.6.8 | 11 hours 31 min ago |
| installation question | 13 hours 7 min ago |
| Please help me!! | 14 hours 39 min ago |
2 comments
Re: media storage challenge
Does /data2 exist? You can only mount filesystems to mountpoints that
already exist. Traditionally, miscellaneous filesystems are mounted at
mountpoints under /mnt or /media unless they're wanted anywhere else in
particular.
Assuming such, you want:
sudo mkdir /mnt/data2
sudo mount -t ext3 /dev/sda8 /media/data2
Which will give you access to the filesystem in the
directory /media/data2. If you want it anywhere else,
substitute /media/data2 for where you want it, but make sure the
directory already exists.
If it's only you using it, I'd be tempted to mount it as a directory
under your home directory:
sudo mkdir ~username/data2
sudo mount -t ext3 /dev/sda8 ~username/data2
But replace 'username' with your actual user name on the PC. You will
likely also need/want to make it owned by you:
sudo chown -R username ~username/data2
You should, however, enter it into /etc/fstab if you want the mount to
be persistent across reboots. See
<a href="https://help.ubuntu.com/community/Fstab" title="https://help.ubuntu.com/community/Fstab">https://help.ubuntu.com/community/Fstab</a>
Re: media storage challenge
Just a small correction to Avi's post (see below)
That should read
sudo mkdir /media/data2
sudo mount -t ext3 /dev/sda8 /media/data2
or
sudo mkdir /mnt/data2
sudo mount -t ext3 /dev/sda8 /mnt/data2
Regards
Ian