Open-Source

Posts tagged with

HTTP not working

I was surprised that apache didn’t work out of the box. Thanks to DoomDeathMetal (what a name!) this was easily solved: rm -rf /etc/httpd yum -y reinstall httpd systemctl start httpd.service

Read more →

Backup script

I use rsync for all my backup scripts. It is fast and easy. #!/bin/bash LOGFILE=/var/log/backup.log EMAILID=Alfred Tuinman@xyz.com NASDISK=192.168.x.x:/volume1/backup/myserver # the NAS station ARGMNTS="-rptgoDLKve ssh --delete-excluded --safe-links 


Read more →

MP3

You have to add the repository to be able to get plugins for mp3 yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm Then ad the actual plugin yum 


Read more →

Adding a GUI to your Ubuntu server

I know that you don’t need a GUI op a server but sometimes you are in a small business environment where the people having to use it are not that familiar with a terminal. If you install ubuntu-desktop you overkill it by installing all user software packages like office, some games,gimp, etc which 


Read more →