localhost:~/fire/icq] bill% cp bastring.h /usr/include/gcc/darwin/2.95.2/g++
cp: /usr/include/gcc/darwin/2.95.2/g++/bastring.h: Permission denied
[localhost:~/fire/icq] bill%
OK........ I give....... what am I doing wrong???????????
Assuming you're an admin on your machine and in the directory where bastring.h exists, at the command-line type in:
sudo cp bastring.h /usr/include/gcc/darwin/2.95.2/g++
That should do it. See, /usr/ denies write permission to users other than root. In general, if you have a problem with copying and it says "Permission denied," you can use sudo to do the copy. This isn't always advised, but if you know that the file should be there, you can go for it.
-Prachi Gauriar
