Bueno, no resultó lo que me dijiste, pero por suerte encontré en un foro la misma duda y me resultó, lo adjunto por si alguien está en las mismas:
FIRST INSTALL THE HARDDRIVE.
o I think you did that5 already,put it into your computer,
and connect all the cables (in case of SATA only use one
way to give your harddrive electricity, using both will
kill your harddrive).
MAKE A MOUNTPOINT
o The mountpoint will be the folder where you can access
the files.
o Go to the place where you would like the mountpoint to
be. This means you have to do this by going to a
directory. This may be both in Console or Filemanager
(Like konqueror).
o In my case I went to /home/herbert
o I don't want the files to be mounted In /home/herbert,
but in /home/herbert/Documents. This folder already
exists, because it was made during the installation
of linux.
o IN CASE THE FOLDER ALREADY EXISTS BACKUP FILES IN THAT
FOLDER
o Now you should be sure that there is a directory where you
would like to mount your files.
SET THE MOUNTPOINT
o Setting the mointpoint will ask from you to know a
texteditor. In SuSE Linux I use kate. Start it by
starting a root-console and using the following
command (without # in front):
# kate /etc/fstab
o Note: YOU CAN ONLY OPEN /etc/fstab WITH
ROOT-PERMISSIONS
o A file will be opened in a graphical text-editor.
You should add a line, be sure to not delete one.
Note: IF YOU AXCIDENTLY REMOVED A LINE CLOSE
WITHOUT SAVING AND START AGAIN!
o The line should be like this:
/dev/sda1 /home/herbert/Documents ext3 auto,owner,users,rw 0 1
o This will mount at startup (due to auto-option) the drive sda1
(due to /dev/sda1) with ext3 filesystem (due to 'ext3' part)
at mountpoint /home/herbert/Document (due to you know...).
o NOW your harddrive should mount when you restart your
computer, but you can also avoid restarting using the
command:
# mount /dev/sda1
o Your harddrive should now be mounted. It is still not
accessible for you.
MAKING THE HARDDRIVE ACCESSIBLE.
o First I recommend you change the owner of the mountpoint
into the one that should access it. But you can also make
it accessible for 'the world' (I don't know how literally
this should be taken, but I wouldn't recommend making it
accessible for the world.
o Note: only do one of the two following sections.
MAKING IT ACCESSIBLE FOR 'THE WORLD'
o Open a root-console and go to the mountpoint. e.g.:
# cd /home/herbert/Documents
o Type the following to make it available for everyone:
# chmod -R 777 *
o !!!I DONOT RECCOMMEND DOING THIS!!!!
MAKE IT LESS ACCESSIBLE
o Open a root-console and go to the parentdirectory of the mountpoint. e.g.:
# cd /home/herbert/
o Change the owner of the mointpoint by:
# chown -R herbert Documents
o Note: The new owner is now herbert.
o go to mountpoint, e.g. by:
# cd /home/herbert/Documents
o Change the permissions e.g. like this:
# chmod -R 700 *
o You should have access now, but in case you don't extend the accessibility by:
# chmod -R 770 *
Gracias!