Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
#!/bin/bash | |
WPA_SUPPLICANT_CONF="/etc/wpa_supplicant/wpa_supplicant.conf" | |
# this funcion is called once the connection is established, | |
# in this case a boot sound will be played to notify the user that everything is ready. | |
function connected { | |
aplay /root/Windows3.1.wav 2>&1 >/dev/null & | |
} |
#include <stdio.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <net/if.h> | |
#include <net/ethernet.h> | |
#include <netinet/in.h> | |
#include <netinet/ip.h> | |
#include <arpa/inet.h> | |
#include <netpacket/packet.h> |
/* Remove plugin CSS & JS */ | |
/* Next Gen Gallery */ | |
function dequeue_nextGen_style() { | |
wp_dequeue_style('NextGEN'); | |
} | |
add_action('template_redirect', 'dequeue_nextGen_style'); | |
function dequeue_nextGen_js() { | |
if (!is_singular()) { |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: php-cgi | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Make available a cgi for nginx | |
# Description: primarly is used for the wordpress installation | |
### END INIT INFO |