Re: [9fans] searching advice

2021-04-12 Thread ibrahim via 9fans
First of thank you for your replies and sorry that I couldn*t reply immediatly. Anthony : I forgot the partition part in the command cause plan9 didn't recognize the ext2 partition in a virtual drive created with fdisk from my linux command line. There where only the entries raw and ctl below /

Re: [9fans] searching advice

2021-04-12 Thread Skip Tavakkolian
what happens if you use mntgen first? mntgen ext2srv mount -c ... # etc On Sun, Apr 11, 2021 at 3:01 PM ibrahim.a.71 via 9fans <9fans@9fans.net> wrote: > > Hi 9fans, > > I'm currently trying plan9. During my test phase I installed 9legacy on qemu. > Everythings works fine but I couldn't master

Re: [9fans] searching advice

2021-04-12 Thread Mack Wallace
I recently stumbled through the process of compiling u9fs for a linux machine and then connecting to it from a 9front computer. Perhaps that will work? u9fs is a program for linux / unix that allows plan 9 boxes to connect with 9fs. The source for it was in /sys/src/cmd/unix in the ‘labs version

Re: [9fans] searching advice

2021-04-12 Thread Anthony Sorace
I can’t help too much with ext, but: > mount -c /srv/ext2 /n/hostfs /dev/sdD0 That part’s almost certainly wrong. /dev/sdD0 will be a directory; ext2srv will expect you to give the file containing the actual file system. This is probably /dev/sdD0/. --