-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mounting disk/file into ling #139
Comments
There is only a rudimentary support for disks (Xen vbd devices): check out Xen implementation of So, if you want a persistent storage in the current state, set up a 9p server elsewhere and communicate with it. In case you are ready to implement some filesystem functionality, your contributions will be appreciated. |
Can you explain how can I go about implementing filesystem functionality ? (Just trying to see how hard it can be !) |
isn't GooFs http://erlangonxen.org/blog/goofs-simple-filesystem the solution I am looking for. |
I would recommend you try diod (the standard 9p server) and connect to it from inside LING. Alternatively, you can use the (non-standard) GooFS. Note that you will not be able to read the GooFS partition from Linux. |
I wanted to know if I can mount disk or files into LING VM and read & write to them ?
I tried mounting by specifying the
disk = ['file:/tmp/file.dat,hda,rw']
ordisk = ['phy:/dev/sda3,hda,rw']
in the domain_config but I am not sure how to check if it worked and how to create files onto it ?I know that I will need to use 9p to achieve the read write part but not sure how to access the disk ?
The text was updated successfully, but these errors were encountered: