I hate it when simple things "break".
I'm trying to rename a directory and it's not cooperating.
This is Solaris 10, if that helps any.
I own the source directory and the permissions on the parent directory are 777.
Any ideas?
I'm trying to rename a directory and it's not cooperating.
Code:
$ mv apache apache.2.2.24
mv: apache is a directory
$ yes, I know
ksh: yes,: not found
$ mv -f ./apache ./apache.2.2.24
mv: ./apache is a directory
This is Solaris 10, if that helps any.
Code:
$ uname -a
SunOS servername 5.10 Generic_147147-26 sun4v sparc SUNW,SPARC-Enterprise-T5220
I own the source directory and the permissions on the parent directory are 777.
Code:
$ ls -lad . apache
drwxrwxrwx 162 auser agroup 260 Aug 12 10:33 .
drwxr-xr-x 15 myuser mygroup 15 Apr 11 10:47 apache
Any ideas?