Archive for June, 2014

joseantoniodelavega vs kihwan – Live Chess http://www.chess.com/livechess/game?id=836767739 via @chesscom

joseantoniodelavega vs Sho2 – Live Chess http://www.chess.com/livechess/game?id=826559047 via @chesscom blitz 5 min rated

kaizen08 vs joseantoniodelavega – Live Chess http://www.chess.com/livechess/game?id=826426312 via @chesscom

joseantoniodelavega vs davidjosephlawler – Live Chess http://www.chess.com/livechess/game?id=824691737 via @chesscom

joseantoniodelavega vs mogensbech

Posted: 02/06/2014 in chess
Tags:

joseantoniodelavega vs mogensbech – Live Chess http://www.chess.com/livechess/game?id=823469116 via @chesscom

In this way you don’t need to use terminal all the time to mount/umount a WebDav directory as nautilus  can be used easily. The steps are as follows.

  • Install davfs2

# sudo apt-get install davfs2

  • Reconfigure davfs2 to enable to use davfs under unprivileged users

# sudo dpkg-reconfigure davfs2

  • Edit /etc/davfs2/davfs2.conf to enable automatic credentials use.

Uncomment the line secrets ~/.davfs2/secrets

  • Edit ~/.davfs2/secrets file to add credentials to remote WebDav diectory.

Add a line to the end of file in following style:
https://<WebDav URI>   <username> <password>

Set the permission:

# chmod 600 ~/.davfs2/secrets

  • Add a line to /ect/fstab about the remote WebDav directory

https://<WebDav URI> <mount point> davfs user,noauto,file_mode=600,dir_mode=700 0 1

  • Add your user to the davfs2 group

# sudo vi /etc/group

Add your username as follows:

davfs2:x:134:<username>

  • That’s it. You can use following commands without being a root user to mount/umount

# mount <mount point>
# umount <mount point>

You can also use nautilus to mount/umount the directory.