I can't open any files (music, video, any type of files) on my second hard drive via Wine. If I copy that file to home folder, then I can. But I don't want to copy each file (I haven't got much space on first one) How can I make it work?
1 Answer
Create a link to the second hard drive
- Open a terminal by pressing Ctrl+Alt+T
- Run
ln -s /path/to/second/hard/drive ~/second-hard-drive(replace/path/to/second/hard/drivewith the actual path to the second hard drive)
This will create a link called second-hard-drive to your second hard drive inside your home directory. You can use that as if it's a regular directory containing everything in your second hard drive.