Firefox 16, a treat for developers http://t.co/cnd27CzT
Set Up WebDAV With Apache2 On Fedora 11
Web-based Distributed Authoring and Versioning, or WebDAV, WebDAV is a protocol that allows for convenient mounting of a remote server on your desktop for easy file access. Once setup, using it is as simple as any other drag and drop navigation on your desktop.
1- First we will install apache:
Download and install apache
#yum -y install httpd
2- check if these module are loaded in /etc/httpd/conf/httpd.conf
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
3- Now make apache starting with Linux .
#chkconfig --levels 235 httpd on
#/etc/init.d/httpd start
4- Create a Vhost directory with ownership apache:apache and add this vhsot to the httpd configuration :
# mkdir -p /var/www/web/unixmenweb
# chown apache:apache /var/www/web/unixmenweb
5- Add this to your /etc/httpd/conf/httpd.conf :
************************************
NameVirtualHost *:80
ServerAdmin webmaster@localhost
DocumentRoot /var/www/web/unixmenweb/
Options Indexes MultiViews
AllowOverride None
Order allow,deny
allow from all
***************************************************************
6- Now restart your apache with
#service httpd restart
7- Now configure your Vhost for the Webdav. create webdav password for user1
# htpasswd -c /var/www/web/passwd.dav user1
New password:
Re-type new password:
Adding password for user user1.
8- Now change access to passwd.dav . that only root and apache members will access to .
# chown root:apache /var/www/web/passwd.dav
# chmod 640 /var/www/web/passwd.dav
9- Now we have to make a alias to the wewbdav in the webserver.
add this to /etc/httpd/conf/httpd.conf :
******************************************************
Alias /webdav /var/www/web/unixmenweb
DAV On
AuthType Basic
AuthName "webdav"
AuthUserFile /var/www/web/passwd.dav
Require valid-user
****************************************************
10 – Now restart apache :
service httpd restart
11- Download Command-line webdav client
#yum install -y cadaver
test the connection to Webdav .
# cadaver http://localhost/webdav/
output :
Authentication required for webdav on server `localhost’:
Username: user1
Password:
dav:/webdav/> ls
Listing collection `/webdav/’: collection is empty.
exit
Now we will add this webdav directory add to network place Windows:






To connect from Linux machine (ubuntu /Fedora)
Go to : Place –> Connect to server.
Service type WebDAV (HTTP). make the IP of the host and the Folder (connect)
For ubuntu will be shown on the desktop
for Fedora wil be shown on Place–>Network
Like us on Facebook
This week Top Posts 
Top Things to do After Installing Ubuntu 13.04 ‘Raring Ringtail’ : Ubuntu 13.04 Raring Ringtail final is almost out. The final release it scheduled for release on Apri...0 comment(s) |
Install lamp with 1 command in Ubuntu 12.10, 13.04 Raring Ringtail & LinuxMint13 : Updated: 10/09/2012 :LAMP (Linux, Apache, MySQL and PHP) is an open source Web development platform ...0 comment(s) |
Howto: Upgrade to Ubuntu 13.04 Raring Ringtail from 12.04, 12,10 | Desktop & Server : Updated 05-04-2013: Ubuntu 13.04 Raring Ringtail will be released Soon, If you have ubuntu 12,10, 12...0 comment(s) |
How to use Remote Desktop in Ubuntu : Sometimes, we need to access our computer from other locations when we’re not at home and such. This...0 comment(s) |
Configure conky-Lua in Ubuntu (12.10 & 13.04 Raring Ringtail), Fedora, debian and LinuxMint | Howto Conky : Updated 05-04-2013: Conky is a free, light-weight system monitor for X, that displays any informatio...0 comment(s) |
Steganography- Hide Your Files Inside An Image in Linux : Nowadays, our personal computer is not only a work tool, it is also our private space where we sto...1 comment(s) |
Recent Posts
- Steganography- Hide Your Files Inside An Image in Linux
- Unix/Linux File Recognition. Did You Know?
- Migrate from MySQL to MariaDB in FreeBSD
- Connect Your Android Galaxy Tablet to Ubuntu via USB
- ElementaryOS Beta 1 and 2 Comparison and Review
- Introduction to the Linux Command Line
- A Secure Password
- Linux Kernel 3.10. It’s BIG!
- Monitoring Users Activity Using psacct or acct Tools in Linux
- Run Your Own Social Network Using elgg on RHEL / CentOS and Scientific Linux
Recent Comments



















Hugo Castañeda Benitez
| #
Can I do the same in ubuntu 12.04?
LinuxSytesNet
| #
Yesterday watched a movie with Morgan Freeman called ‘ A long came a spider ‘ and must say that I was quite impressed how they exchanged encrypted messages hidden in pictures. Thank you for the tutorial :)
Bjarni
| #
Excellent, thanx!
Ambiton
| #
Thank you very much Chris :)
Lolman
| #
in cmd