Archive

Archive for June, 2008

Subversion (SVN) Unable to Commit

June 30th, 2008

After creating a new SVN repository I was unable to commit or create folders.  I received the following error message: “Can’t created directory” …  “permission denied”

The problem was the svn folder did not have write access for the group.  This was solved by applying the write permission for the group.

admin Uncategorized

Subversion (SVN) Unable to Commit

June 30th, 2008
Comments Off

After creating a new SVN repository I was unable to commit or create folders.  I received the following error message: “Can’t created directory” …  “permission denied”

The problem was the svn folder did not have write access for the group.  This was solved by applying the write permission for the group.

admin Linux Tutorials

Grep Notes

June 25th, 2008
Comments Off

Show lines containing “127.0″
cat access.log.1 | grep “127.0″

Show all lines NOT containing “127.0″
cat access.log.1 | grep -v “127.0″

Show all lines containing a # (Nice for reading config files)

cat main.cf | grep -v ^#

Show config files AND no empty lines
cat main.cf | grep -v ^# | grep -v ^$

admin Linux Tutorials