Mailing List Archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [tlug] Representing a blank space in an address



CL writes:

 > Runtime error opening 
 > '/media/onk-01/kubuntu_data/Current/home/onk-01/VirtualBoxVMs/WIN11/WIN11/WIN11.vbox' 
 > for reading VERR_ACCESS_DENIED (Access denied.).

Have you verified that the file is actually present and has -r
permissions?  You could be getting the access error on any directory
along the path (although the .vbox file is by far the most likely).

 > > You can precede each space with a backslash (\) to escape it or wrap 
 > > the entire filepath in quotation marks.
 > >
 > Yes, I've tried quotation marks but the filepath keeps coming back "not 
 > found".

Try 

    find /media/onk-01/kubuntu_data/Current/home/onk-01 -name 'WIN 11.vbox'

If that gives the right answer (and only the right answer!), then

    find /media/onk-01/kubuntu_data/Current/home/onk-01 -name 'WIN 11.vbox'
         -exec sudo chmod 777 -R '{}' ';'

(all on one line) should work.  (It probably wouldn't hurt if there a
multiple results to the initial 'find' command, but this looks like a
situation where "an excess of caution" is a good idea.)

Steve

-- 
GNU Mailman consultant (installation, migration, customization)
Sirius Open Source    https://www.siriusopensource.com/
Software systems consulting in Europe, North America, and Japan

Home | Main Index | Thread Index