travistee said:
Like I said, I haven't used SSH for a while.
What is the command to open the file for editing in SSH.
Thanks
pico /pathtofile/filename
nano /pathtofile/filename
so if i want to edit the httpd.conf
i could do it 2 ways
cd /usr/local/apache/httpd/conf
then
pico httpd.conf
or
nano httpd.conf
or the LONG way..
pico /usr/local/apache/httpd/conf/httpd.conf
then after i get done editng.
CTRL+X
Y
you get the picture
OCX