|
Home > Archive > Linux Debian support > January 2006 > adding more disc on debian
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
adding more disc on debian
|
|
|
| Hi, I installed a supplementary hard disc (ide) on my workstation.
This is how I've modified my conf file ...
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/sda1 / ext3 defaults,errors=remount-ro 0 1
/dev/sda5 none swap sw 0 0
/dev/hda1 /data ext3 defaults 0 0
/dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/fd0
/media/floppy0 auto rw,user,noauto 0 0
The problem is about writing permissions: only root can write on "/data"
How can I solve it ?
Thanks in advance
Hal
| |
| Bill Marcum 2006-01-14, 8:46 pm |
| On Sat, 14 Jan 2006 14:21:14 +0100, hal
<selvone@ngi.it> wrote:
> Hi, I installed a supplementary hard disc (ide) on my workstation.
>
> This is how I've modified my conf file ...
>
> # /etc/fstab: static file system information.
> #
> # <file system> <mount point> <type> <options> <dump> <pass>
> proc /proc proc defaults 0 0
> /dev/sda1 / ext3 defaults,errors=remount-ro 0 1
> /dev/sda5 none swap sw 0 0
> /dev/hda1 /data ext3 defaults 0 0
> /dev/hdc /media/cdrom0 iso9660 ro,user,noauto 0 0 /dev/fd0
> /media/floppy0 auto rw,user,noauto 0 0
>
> The problem is about writing permissions: only root can write on "/data"
> How can I solve it ?
>
man chmod
man chown
| |
|
|
> man chmod
> man chown
OOOk Bill !!! Now it works ...
Thank you 4 your precious help
chown -R hal:users /data
chmod -R 755 /data
looool
|
|
|
|
|