Showing posts with label Mandriva. Show all posts
Showing posts with label Mandriva. Show all posts

Monday, April 4, 2011

Distribution release: Mandriva Linux 2011 alpha 2

Eugeni Dodonov has announced the availability of the second beta of Mandriva Linux 2011, now with an improved and simplified system installer, updated Linux kernel and many updates package: "The second alpha version of Mandriva 2011 will be appearing on mirror Shortly." The most striking features.

 

Read more on DistroWatch

View the Original article

Tuesday, January 25, 2011

How To Set Up WebDAV With Apache2 On Mandriva 2010.1 Spring

This guide explains how to set up WebDAV with Apache2 on a Mandriva 2010.1 Spring server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the Apache server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.

I do not issue any guarantee that this will work for you!

 

1 Preliminary Note

I'm using a Mandriva 2010.1 Spring server with the IP address 192.168.0.100 here.

 

2 Installing WebDAV

First, we update our package database:

urpmi.update -a

Next we install Apache and the Apache WebDAV module:

urpmi apache apache-mod_dav

Next we open /etc/httpd/conf/httpd.conf and uncomment the following three lines in the LoadModule section (make sure you delete the following string at the end of these lines because otherwise Apache might complain about a syntax error: -> available in the apache-mod_dav package):

vi /etc/httpd/conf/httpd.conf



View the Original article