Quite a shortcut for a newly installed system (Fedora 10). sudo yum -y install httpd httpd-devel httpd-tools mod_auth_kerb mod_auth_mysql mod_dav_svn mod_extract_forwarded mod_fcgid mod_geoip mod_perl mod_python mod_security mod_ssl mod_wsgi php php-bcmath php-channel-symfony php-cli php-common php-devel php-gd php-imap php-magickwand php-magpierss php-mbstring php-mhash…
Migrate from Windows to Linux. Part 1. Motivation.
I am not a Linux programmer or Linux contributor, just a pragmatic PC user who utilizes it to make living. I will call myself a Linux dummy thereafter opposing myself to those good people who claim themselves big Linux specialists…
Self-Signed SSL Certificate
Adapted from this article. sudo yum -y install mod_ssl openssl openssl-devel sudo mkdir /usr/share/ssl sudo openssl genrsa -des3 -out server.key 1024 sudo openssl req -new -key server.key -out server.csr sudo cp server.key server.key.org sudo openssl rsa -in server.key.org -out server.key…
Local Yum Rpm Repository
YUM is the default package manager provided with most RPM distros, especially Fedora and Redhat based distros. It is similar to APT of the Debian based distros. Admittedly, it is not the best package manager in term of performance, I…
Securing MySQL after Installation
If you just installed Linux or, separately, MySQL server, you need to undertake some simple routines to make it a little more secure. The below will set a password for a superuser account, remove anonymous user account and do some…
Fax and Faxing in Linux
You will obviously need a modem, in most cases you laptop’s internal software modem will not work, so get an external one. Become root: su – Install the necessary fax software: yum install efax Prepare: chmod 0666 /dev/ttyS0 chmod 777…
True type fonts in Linux
Installing true type fonts for system-wide use in Gnome, KDE, etc.: Become root: su – As root, create the fonts directory: mkdir /usr/share/fonts/ttf Copy the font files in, cd into the fonts directory: cp [fontfiles] /usr/share/fonts/ttf cd /usr/share/fonts/ttf Make fonts.dir:…