I created the directory from my terminal, by using mkdir win32, as root. Now I need to get files into that directory but do not know how to.
.... Just 'cp' them in. Stay as root and run something like cp /path/to/original/files/* /usr/local/lib/win32/ if you need to copy directories, use the recursive copy option cp -r /path/to/original/files/* /usr/local/lib/win32/ Chris