Category: Linux

Fedora: Setting Programs to Automatically Start

on a fedora core box, use chkconfig like this:Code:chkconfig --level 345 httpd onchkconfig --level 2345…

Installing IonCube

ionCube produces leading tools for PHP source code protection to secure your PHP software from…

Apache Hosting Multiple Websites

Must have a FQDN for localhost:vim /etc/hosts---- add this line ----192.168.1.5        server1.cafecenter.com server1----------------------Install GD…

How to Install OpenVPN on Centos 5

Configure VPN   I. Setting up DMZ to forward all ports from Gateway to Router…

Enable Mod_rewrite Url rewrite

vim /etc/httpd/conf/httpd.confLine 306, change the directory name to:<Directory "/home/www">line 237, set:AllowOverride AllLine 564, if you're…

Windows Emulator inside Ubuntu 9.10

# Add the Wine repositorysudo add-apt-repository ppa:ubuntu-wine/ppasudo apt-get install wine1.2cd /home/[username]# this installs winetricks and…

Ubuntu Repos (Old Info)

Add this using the Software Center deb karmic free non-free   --------------------------- Add Many Repos…

How to Flash Bios Using CentOS live USB

Start CentOS live USB copy T5500A16.bin to desktop Run terminal su init 1 cd /home/centoslive/Desktop…

FFMPEG Ftuff (old)

Install prerequisites: --- Install DAG --- yum install rpmforge-release yum install gcc gcc-cpp gcc-c++ zlib-devel…

How to fix outdated and unsupported Ubuntu versions

rooty@FOGSERVER01$ lsb_release -aNo LSB modules are available.Distributor ID: UbuntuDescription: Ubuntu 13.10Release: 13.10Codename: saucyUbuntu 13.10 (Saucy…

Install Remote Desktop on Lubuntu & Wireshark

Update May 2020: Current versions of Ubuntu / Redhat 20.04 contain broken xrdp packages. Thus,…

Set Automatic Updates for CentOS & Redhat

Easy. yum -y install yum-cron vimvim /etc/yum/yum-cron.conf----------apply_updates = yes----------systemctl start yum-cron.service

Set Up Mail Relay Server with CentOS

Notes from 2011...Method 1: Set this relay server to use another server as a relayyum…

Add or Remove a User / Users in CentOS / Redhat Linux

sudo adduser usernamesudo passwd usernamesudo gpasswd -a username wheel#Check wheel groupsudo lid -g wheel#Delete user:userdel…

Error: Kernel panic – not syncing : VFS: Unable to mount root fs on unknown-block(0,0)

If this has been caused by an interrupted system update: - Boot the system via…

How To Install Remote Desktop on Ubuntu or Centos 7

Ubuntu:sudo apt-get updatesudo apt-get install xrdp xfce4echo xfce4-session >~/.xsessionsudo service xrdp restartCentOS 7:su -vim /etc/yum.repos.d/xrdp.repo-----…

Experimental selinux Settings

enable or disable selinux: vim /etc/sysconfig/selinux   setsebool -P httpd_read_user_content 1   grep nginx /var/log/audit/audit.log |…

Install ScreenConnect on CentOS

If this server is not behind a firewall, then the below instructions would suffice:1. Install…

Install SSL on ScreenConnect

Generate cert & key from startssl.comSave the encrypted private keyDecrypt the private keyDownload files into…

Default Nginx Installation on Centos 7

NGINX as HTTP / HTTPS Proxysudo yum install epel-releasesudo yum install nginxsudo systemctl start nginxsudo…