vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| hello, Have a problem with fstab, if I'm mounting disk manually: mount /dev/sda1 /dysk all is ok.: # df Filesystem 1K-blocks Used Available Use% Mounted on /dev/hda1 3789212 1563360 2030264 44% / /dev/sda1 17639220 32828 16710372 1% /dysk but if adding line to fstab: /dev/sda1 /dysk ext3 default 0 0 as last line, it don't work. Line is ignoring, but why? There is nothing in logs. Greetz: I. |
| |||
| ignorance@interia.pl wrote : > /dev/sda1 /dysk ext3 default 0 0 You are missing the last "s" in "defaults"-------------^ -- Thomas O. This area is designed to become quite warm during normal operation. |
| |||
| Thomas Overgaard wrote: > ignorance@interia.pl wrote : > > >>/dev/sda1 /dysk ext3 default 0 0 > > > You are missing the last "s" in "defaults"-------------^ Sorry, I deleted it in message, correct version of this line is: /dev/sda1 /dysk ext3 defaults 0 0 I tryed also: /dev/sda1 /dysk ext3 auto 0 0 But it dsn't work, problem is that I haven't nothing in logs. Is it possible? I. |
| |||
| Ignorance <ignorance@interia.pl> writes: > > /dev/sda1 /dysk ext3 default 0 0 ^^^^^^^ "default" should be "defaults" - does that help? atb Glyn -- RTFM http://www.tldp.org/index.html GAFC http://slackbook.lizella.net/ STFW http://groups.google.com/groups?hl=e...inux.slackware GAFL http://www.xemacs.org http://www.gnus.org/ |
| |||
| Glyn Millington wrote: > Ignorance <ignorance@interia.pl> writes: > > >>/dev/sda1 /dysk ext3 default 0 0 > > ^^^^^^^ > > "default" should be "defaults" - does that help? > > atb > > > Glyn nope, I wrote it in previous mail in topic, but thanx. I. |
| |||
| Ignorance wrote: > > but if adding line to fstab: > > /dev/sda1 /dysk ext3 default 0 0 > > as last line, it don't work. Line is ignoring, but why? > There is nothing in logs. Does the directory /dysk exist? BTW. the last 0 should probably be a 2, but that has nothing to do with your problem. Wim |
| |||
| Ignorance <ignorance@interia.pl> wrote: > /dev/sda1 /dysk ext3 default 0 0 First off, is the disk type ext3? Basic question I know, but worth pointing out. Also, I believe the first 0 should be a 1. Finally, have you checked /var/log/dmesg and other log files in /var/log for any error messages? |
| |||
| Wim napisał(a): > Ignorance wrote: > >>but if adding line to fstab: >> >>/dev/sda1 /dysk ext3 default 0 0 >> >>as last line, it don't work. Line is ignoring, but why? >>There is nothing in logs. > > > Does the directory /dysk exist? Yes of coz. I. |
| |||
| Cichlidiot napisał(a): > Ignorance <ignorance@interia.pl> wrote: > >>/dev/sda1 /dysk ext3 default 0 0 > > > First off, is the disk type ext3? Basic question I know, but worth > pointing out. Also, I believe the first 0 should be a 1. Finally, have you > checked /var/log/dmesg and other log files in /var/log for any error > messages? No, so I'm asking, it should it be. (grep sda1 * in /var/log dir.) I. |
| ||||
| Ignorance napisał(a): > Cichlidiot napisał(a): > >> Ignorance <ignorance@interia.pl> wrote: >> >>> /dev/sda1 /dysk ext3 default 0 0 >> >> >> >> First off, is the disk type ext3? Basic question I know, but worth >> pointing out. Also, I believe the first 0 should be a 1. Finally, have >> you >> checked /var/log/dmesg and other log files in /var/log for any error >> messages? > > > No, so I'm asking, it should it be. (grep sda1 * in /var/log dir.) Forgott to add information that this is ext3 for sure. After manually mounting info in /etc/mtab: /dev/sda1 /dysk ext3 rw 0 0 I. |