One of the websites I'm responsible for changed the upload area of its live server to a secured WebDAV share.
At first I thought, OK, no problem, I'll just choose WebDAV in Dreamweaver's Remote Site dialog, and I'm done. Not quite so, as it turned out. The WebDAV share I wanted to connect to was only accessible via https using a certificate. And even though the documentation didn't say so, Dreamweaver 8 only seems to support WebDAV uploads via http.
So I had to look for other ways to access the WebDAV share. I decided to set up a davfs2 file system on my Linux computer, and then mount the remote WebDAV share.
Prerequisites
You have Fedora 7 Linux installed on your computer.
You have received the required keys for the remote WebDAV share:
Public key: <public_key>.pem
Private key: <private_key>.p12
You know the address of the remote WebDAV share: https://<webdav_share>
You are logged on to the operating system as the <local_user> operating system user.
Procedure
Install fuse-davfs2 using yum.
Create a davfs2 operating system user group and add the following users to this group: root, <local_user>
Create a local directory for mounting the WebDAV share later:<local_mount_directory>
In /etc/updatedb.conf, exclude this directory from indexing by updatedb.
I have lost my GNOME Desktop environment twice now, so I thought it's time to write down how I managed to get it back. It happened like this: On my old computer, which I primarily use for backups, I decided to remove all the applications I didn't really need.
I thought that by using the GNOME Add/Remove Software menu function and only removing optional packages from the GNOME Package Manager's Applications section, I'd be on the safe side.
GNOME Package Manager
This turned out to be wrong: after removing all the unused applications in, I …