UFS modul unter SUSE installieren

C

ccc

Routinier
hallo

Ich möchte freeBSD partitionen (slices) "READ ONLY" unter SUSE 9.1 mounten.
kann ich UFS modul nachtraglich installieren, oder funktioniert nur wenn ich den kernel neu kompiliere ?

wo kann ich dieses modul finden ?
auf der SUSE Installations CD's finde einfach nicht.
 
also wenn du es nicht mit modprobe ufs laden kannst musst du wohl den kernel neu kompilieren
 
modprobe ufs kann ich problemlos laden, aber die BSD partition kann ich nicht mounten

ich probiere mit

mount -t ufs /dev/hdb3 /mnt
 
mkdir /mnt/bsd

mount -t ufs /dev/hdb3 /mnt/bsd

damit erstellste nen neuen ordner und mountest dann dahin
 
habe gemacht, aber nach wie vor bekomme eine Felermeldung:

# mount -t ufs /dev/hdb3 /mnt
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
linux:~ # mount -t ufs /dev/hdb3 /mnt/bsd
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
 
ccc schrieb:
modprobe ufs kann ich problemlos laden, aber die BSD partition kann ich nicht mounten

ich probiere mit

mount -t ufs /dev/hdb3 /mnt

Du muszt den ufs type festlegen. IIRC

Lies dazu die manual oder STFSC. ;)
 
aus der kernel Doc

USING UFS
=========

mount -t ufs -o ufstype=type_of_ufs device dir


UFS OPTIONS
===========

ufstype=type_of_ufs
UFS is a file system widely used in different operating systems.
The problem are differences among implementations. Features of
some implementations are undocumented, so its hard to recognize
type of ufs automatically. That's why user must specify type of
ufs manually by mount option ufstype. Possible values are:

old old format of ufs
default value, supported os read-only

44bsd used in FreeBSD, NetBSD, OpenBSD
supported os read-write

ufs2 used in FreeBSD 5.x
supported os read-only

sun used in SunOS (Solaris)
supported as read-write

sunx86 used in SunOS for Intel (Solarisx86)
supported as read-write

nextstep
used in NextStep
supported as read-only

nextstep-cd
used for NextStep CDROMs (block_size == 2048)
supported as read-only

openstep
used in OpenStep
supported as read-only


POSSIBLE PROBLEMS
=================

There is still bug in reallocation of fragment, in file fs/ufs/balloc.c,
line 364. But it seem working on current buffer cache configuration.


BUG REPORTS
===========

Any ufs bug report you can send to ********** (do not send
partition tables bug reports.)
./filesystems/ufs.txt lines 21-56/56 (END)
 
jetzt scheint klar zu sein

bei mir ist freeBSD 5.2 installiert, also braucht es ufs2 und nicht ufs

korrekt wäre es vermutlich in meinem fall:

# mount -t ufs2 /dev/hdb3 /mnt/bsd

dies geht aber NICHT, weil ufs2 modul nicht installiert ist

modprobe ufs2

bricht bei mir mit fehlermeldung ab
 
ccc schrieb:
jetzt scheint klar zu sein

bei mir ist freeBSD 5.2 installiert, also braucht es ufs2 und nicht ufs

korrekt wäre es vermutlich in meinem fall:

# mount -t ufs2 /dev/hdb3 /mnt/bsd

dies geht aber NICHT, weil ufs2 modul nicht installiert ist

modprobe ufs2

bricht bei mir mit fehlermeldung ab


Falsch !!!


"aus der kernel Doc

USING UFS
=========

mount -t ufs -o ufstype=type_of_ufs device dir"

also mount -t ufs -o ufstype=ufs2 /dev/hdb3 /mnt/bsd
 
bekomme aber Fehlermeldung:

# mount -t ufs -o ufstype=ufs2 /dev/hdb3 /mnt/bsd
mount: wrong fs type, bad option, bad superblock on /dev/hdb3,
or too many mounted file systems
 
mach mal nen slash hinter dem mount point nen mount point als datei ist schlecht
 
sry keine ahnung mein wissen beschrenkt sich auf die kernel doc
 
hallo

ich habe die Lösung:

mount -t ufs -o ufstype=ufs2 -r /dev/hdb3 /mnt/bsd

funktioniert bestens.

es lag am -r (read-only) befehl und OHNE GEHT NICHT !

gruss
ccc
 
das wundert mich wirklich ich hatte erwartet das er das automatisch macht so wie bei cds
 
vielleicht andere linux distributionen, aber SUSE 9.1 auf jeden fall nicht
 

Ähnliche Themen

es kommen abwechselnd neuere Distributionen...

Nginx als Reverse Proxy für Nextcloud und Emby

Welches Linux/Unix für ehemaligen OSX Nutzer?

Kleinigkeiten für Euch, mich nicht :-) pkg_add ; DVD rw mounten

Zugriff auf Samba Fileserver Freigaben verweigert(Samba 4 Active Directory Domäne)

Zurück
Oben