phpMyAdmin, lighttpd and Fedora 9

November 9, 2008

yum install mysql-server lighttpd php php-mysql phpMyAdmin
This puts the phpMyAdmin install in /usr/share/phpMyAdmin.
Add a new configuration file called /etc/lighttpd/lighttpd-phpMyAdmin.conf :# server.bind = “phpmyadmin.example.com” # If there isn’t a server.bind already
# Ensure the modules we need are loaded inserver.modules += ( “mod_cgi” )# server.modules += ( “mod_alias”, “mod_cgi” )
$HTTP["host"] == [...]

Comments Off

Fedora 9 and encfs Encryption

August 4, 2008
Tags: , , ,

To get this installed with ‘useraccount’ having the rights to use the fuse system, as root do :# yum install encfs# /usr/sbin/groupadd -r fuse# /usr/sbin/usermod -a -G fuse useraccount
# Restart X11 – to get the groups right
Now, as your regular user account (’useraccount’ from above) :$ encfs ~/.Fieldstone-Secure.encfs ~/Fieldstone-Secure
# If file doesn’t exist [...]

Comments Off