Error 

Archive for the ‘Linux’ Category

Linux File Permissions

Posted November 27, 2008 at 03:11am in Linux

When I first started out with Linux permissions were sorta hard to grasp, most likely because I never took the time to really sit down and understand them, but also because they are quite different than Windows permissions.

In Windows you can really put some detail in the ACLs, but with Linux you either need ACLs implemented or you need to understand how file permissions work. So first off, lets use the following example

# ls -l /
drwxr-xr-x  13 root root  4096 Apr 27  2007 usr
drwxr-xr-x  20 root root  4096 Oct  3 00:33 var

As you can see these are both owned by user root and group root and that the user has read, write, and execute permission permissions, while the group and others do not. So lets make a change to that to better explain permissions. So lets say we created /home/johndoe/usr and /home/johndoe/var.
Read the rest of this entry »

Work Environment

Posted November 16, 2008 at 12:11pm in Linux, Programming, Sysadmin

I have noticed a few people have been commenting on their development environments and wanted to chime in on what I use when I am consulting or working on a personal project.

Internet Based:

  • Dropbox – This application allows me to share files between all of my platforms. It works very similar to how subversion works, but commits the files automatically after they have been added to the directory. They are stored encrypted on the Dropbox servers so the information is safe from prying eyes.
  • Twitter – I never got the whole twitter thing for a long time, but it is nice to know what my friends are up to.
  • Facebook – Probably the only decent social networking site out there
  • LinkedIn – Business social networking.
  • del.icio.us – Social bookmarking.
  • Pownce – Similar to twitter, but does more for media sharing.

Read the rest of this entry »