|
|
|
|
|
by johntraitor
1110 days ago
|
|
Hey!
Sure, I really think I will do a video about this (should I post on Youtube or other platform, any advice?).
Yes you should use Native Access 1.
Basically what I do:
- Edit `/etc/udisks2/mount_options.conf`
- uncomment `[default]`
- search the lines starting with `udf`
- uncomment the one starting with `udf_defaults`, append `,unhide` at the end.
- uncomment the one starting with `udf_allow`
- save&exit Then, when you download any library which contains ISO files, it will fails but no worries, the ISO is downloaded in you `~/Downloads` folder!
The issue is related to Wine that can't show hidden files or something like this when mounting disks.
So the solution, now that you reconfigured your default mounting options (I need this under Archlinux because udisks2 auto mount after creating a loop, if you dont have this issue you could just ignore the previous steps and manually mount the loop with the `unhide` parameter).
So, you go find you ISO in your `~/Downloads`, then you open a terminal and you do:
- `udisksctl loop-setup -f ~/Downloads/LIBRARY.iso`
- Now you will have a newly mounted (if there is auto-mount) disk in your `/run/media/$USER` directory.
- You go there, you will see inside there is an `LIBRARY_NAME.exe`
- You do `wine LIBRARY_NAME.exe`. It will prompt some windows UI, you do next, install, etc..
- After if finished, you go in your Native Access and you click the refresh button and TADA its installed! tips: unmount the disk afterwards. also you can restart native access between installs if you install a lot of them. I dont know why but sometimes it told me that I had not enough disk space for install but after restarting it it didnt complain anymore. |
|