I'm running Ubuntu 10.04 and am having issues getting to the log files in /var/log/apache2
I can cd
to most other places (I haven't tried every single file, obviously) but when I try to get to the above directory, I get the error message sudo: cd: command not found
... I've just tried something else and I can't cd
when used in conjunction with sudo
. I can use sudo
when doing things like apt-get
but it seems I can't change directory when using sudo
.
I haven't been on this server for a while but I know I used to be able to do this.
On most systems,
cd
isn't a program, it's a shell command, so you can't usesudo
to run it. Trysudo -i
to get an interactive shell then cd into that directory.Supplemental to DerfK's answer;
Before I discovered
sudo -i
, I'd usesudo ls /var/log/abcd
to identify the files in such a directory, and then read the files more directly.Not the cleanest way,... but there's always more than one way to skin a cat..