Linux Manju

February 9, 2009

Enlightenment DR 17 Install on Debian

Filed under: Uncategorized — Tags: , , , — linuxmanju @ 1:45 pm

Download Reasye17.sh from http://exchange.enlightenment.org/application/show/124

The script started showing errors on the first run.. As the package names changed ( I am using Debian Sid 64bit )

As a workaround…

Modify the below packages…

sed -i ’s/libjpeg-dev/libjpeg62-dev/g’ Reasye17.sh

sed -i ’s/libfontconfig-dev/libfontconfig1-dev/g’ Reasye17.sh
Once done become root and run Reasye17.sh

sh Reasye17.sh

Select Debian as the OS…

Grab a coffee till it finishes :)

This is what How my desktop looks like now..

Apache http to https redirection

Filed under: FreeBSD, Linux — Tags: , , , , — admin @ 1:35 pm

I wanted to force all users to use https://mymailserver.com instead of http://mymailserver.com.

Open apache config file (   httpd.conf or apache2.conf  or sites-enabled/000-default  ?? )

Add these lines

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*) https://%{SERVER_NAME}$1 [R,L]

/etc/init.d/apache2 restart

Powered by WordPress