I'm still getting the same problem. Not sure how to make a share drive in virtual machine as one is already build, which I built following the instructions provided.
Also, I'm getting an error while exporting the data as well:
ERROR: Insufficient authorization to access
/opt/sasinside/SASConfig/Lev1/SASApp/C:\Users\sakshi\SASUniversityEdition\myfolders\Cars_test.xls.
Below were my codes:
for Library :
LIBNAME Test2 'C:\Users\sakshi\SASUniversityEdition\myfolders';
For exporting data:
proc export data=cars1
outfile='C:\Users\sakshi\SASUniversityEdition\myfolders\Cars_test.xls'
Replace
dbms=xls;
run;
(cars1 is created in my work library)
Sakshi