PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Bootmount



Rebell
02.07.02, 08:21
Ich war ne Woche im Urlaub und als ich wiedermal mein SuSE 8.0 System (neben Windows 98) gestartet hab, mountet das System hda3 als read only. Wie kann das sein? Jetzt können keine temporären Dateien mehr geschrieben werden und das System fängt an zu spinnen.

Ist das schon öfters vorgekommen? Und kann ich das Problem auch ohne zusätzliche Boot-CD bereinigen? Denn ich hab auch komischerweise keinen Eintrag von hda3 also reiserfs in meiner fstab.

(das jemand an dem System rumgespielt hat, ist ausgeschlossen)

Jorge
02.07.02, 09:13
Was hast Du an http://www.linuxforen.de/forums/showthread.php?s=&threadid=23336 nicht verstanden?

Hier ist ein FAQ Bereich, also hier keine Fragen stellen sondern nur Fragen beantworten, bzw. Tutorials,... hier posten!

Verschoben vom FAQ Bereich nach System installieren und konfigurieren

Rebell
02.07.02, 13:41
Ok, dann stell ich die Frage anders: Wie kommts dass das System meine Partition (reiser) auf einmal als read only mountet?

Jorge
02.07.02, 13:48
Was liegt den eigentlich auf Deiner /dev/hda3?

Rebell
02.07.02, 13:51
hda3 = reiserfs linux

Das Interessante dabei ist aber dass es aus meiner Abwesendheit herraus geschehen ist. Und vorallem wo trage ich ein wie mein System gemountet wird? Irgendwo unter /boot ?

Jorge
02.07.02, 13:55
Oh man, was für Daten liegen auf /dev/hda3. So missverständlich geschrieben?

Rebell
02.07.02, 13:59
was für Daten?

/boot
/bin
/usr
/etc
/var
/home
/proc

etc.

Jorge
02.07.02, 14:15
Wie sieht die /etc/fstab aus?

Rebell
02.07.02, 14:23
Das kann ich dir jetzt nicht in echzeit sagen, aber als ich gestern mal reingeschaut hab, kein Wort von hda3 oder reiser fs.

Rebell
10.07.02, 10:19
SO, ich hab mal daheim nachgeschaut (übrigens hallo erstmal *g*).
Ich hab von der SuSE-Rettungs-CD gebootet und in meiner Original-fstab stand nix.

Ich hab dann folgendes reingeschrieben:

/dev/hda3 / reiserfs defaults 0 0

Dann ging's, aber was bedeutet "defaults", "noauto" und "0 0"?

Rebell
10.07.02, 11:07
Jorgy ♥ ???

Jorge
10.07.02, 11:19
Aus man 8 mount:




-o Options are specified with a -o flag followed by a comma separated string of options. Some of
these options are only useful when they appear in the /etc/fstab file. The following options apply
to any file system that is being mounted (but not every file system actually honors them - e.g.,
the sync option today has effect only for ext2, ext3 and ufs):

async All I/O to the file system should be done asynchronously.

atime Update inode access time for each access. This is the default.

auto Can be mounted with the -a option.

defaults
Use default options: rw, suid, dev, exec, auto, nouser, and async.

dev Interpret character or block special devices on the file system.

exec Permit execution of binaries.

noatime
Do not update inode access times on this file system (e.g, for faster access on the news
spool to speed up news servers).

noauto Can only be mounted explicitly (i.e., the -a option will not cause the file system to be
mounted).

nodev Do not interpret character or block special devices on the file system.

noexec Do not allow execution of any binaries on the mounted file system. This option might be
useful for a server that has file systems containing binaries for architectures other than
its own.

nosuid Do not allow set-user-identifier or set-group-identifier bits to take effect. (This seems
safe, but is in fact rather unsafe if you have suidperl(1) installed.)

nouser Forbid an ordinary (i.e., non-root) user to mount the file system. This is the default.

remount
Attempt to remount an already-mounted file system. This is commonly used to change the
mount flags for a file system, especially to make a readonly file system writeable. It does
not change device or mount point.

ro Mount the file system read-only.

rw Mount the file system read-write.

suid Allow set-user-identifier or set-group-identifier bits to take effect.

sync All I/O to the file system should be done synchronously.

user Allow an ordinary user to mount the file system. The name of the mounting user is written
to mtab so that he can unmount the file system again. This option implies the options
noexec, nosuid, and nodev (unless overridden by subsequent options, as in the option line
user,exec,dev,suid).

users Allow every user to mount and unmount the file system. This option implies the options
noexec, nosuid, and nodev (unless overridden by subsequent options, as in the option line
users,exec,dev,suid).