break
Apr 6

*NOTE - This only applies to servers where you are allowed to compile, a lot or free shell servers have their own way of setting up eggdrop automatically, if in doubt ask your provider*
SSH to the server, then run the following commands at the command prompt:
Install
wget ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop1.6.17.tar.gz
tar zxvf eggdrop1.6.17.tar.gz
cd eggdrop1.6.17
./configure
make config (compiles all modules) or [...]

Apr 6

If you know nothing
about bncs, a bnc is short for a ‘bouncer.’ A bnc acts as a proxy for irc,
allowing you to hide your real IP address and use a vhost (vanity host -
something like ‘this.is.a.l33t.vhost.com’). What are the advantages of this?
Well, mainly there’s just one important one: It’ll stop stupid packet kiddies
from trying to [...]

Apr 6

If you run a high-traffic Web site or any other service with high demands on Windows servers, the Network Load Balancing support may be just what the doctor ordered for you. Under Windows Server 2003, you can bind up to 32 servers together in a cluster to even the load on the boxes and keep [...]

Apr 6

*Please Note, i am currently in the process of changing the website, so some things might not work properly, please contact me if you find anything*
DRM is used in a number of media, but is most commonly found in video and music files. There are many who argue that DRM is a misnomer, since it [...]

Apr 6

View Ports
cd /usr/ports
ls
Install A Port
/usr/ports/pathto/port make install clean
Example - Installs the IRC Bouncer Miau:
cd /usr/ports/irc/miau
make install clean
Un-Install A Port
/usr/ports/pathto/port make deinstall
Example - Un-Installs the IRC Bouncer Miau:
cd /usr/ports/irc/miau
make deinstall
Update Ports Collection
as root,
cp /usr/share/examples/cvsup/ports-supfile /root/ports-supfile
pico ports-supfile (or whichever text editor you use)
Change CHANGE_THIS.FreeBSD.org to a CVSup server near you.
to run cvsup
cvsup -L 2 /root/ports-supfile

Apr 6

Portsnap can be a useful tool when updating your FreeBSD Ports Collection.
To install portsnap:
AS ROOT:
# cd /usr/ports/sysutils/portsnap
# make
# make install
If these operations run successfully you can now run portsnap.
As root, perform this command:
# portsnap fetch
Portsnap will then retrieve the latest version of the Ports tree metadata.
NOTE: The first time you run portsnap, YOU MUST ALSO [...]

Apr 6

Check System Compatibility
Type:
ifconfig -a
you should see something like:
eth0 Link encap:Ethernet HWaddr 00:09:5B:04:5E:78
inet addr:82.36.57.31 Bcast:255.255.255.255 Mask:255.255.248.0
inet6 addr: fe80::209:5bff:fe04:5e78/64 Scope:Link
UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1
RX packets:5561334 errors:0 dropped:0 overruns:0 frame:0
TX packets:214278 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:462931787 (441.4 Mb) TX bytes:28300458 (26.9 Mb)
Interrupt:12 Base address:0xa000
If it doesnt say MULTICAST you should reconfigure your kernal and add [...]

Apr 6

Getting in
start a new screen session: screen
attach to a running session: screen -r
attach multiple terminals to an attached, running session: screen -rx
the “ultimate attach”: screen -dRR (Attaches to a screen session. If the session is attached elsewhere, detaches that other display. If no session exists, creates one. If multiple sessions exist, uses the first one.)
Escape [...]

Apr 6

alias - this allows the user view the current aliases
awk - this allows the user to search for a pattern within a file
bdiff - compares two large files
bfs - scans a large file
cal - shows a calendar
cat - concatenates and prints a file
cc - c compiler
cd - changes directories
chgrb - changes a file groups ownership
chmod [...]

Apr 6

Install MySQL 4.1.3
Download these RPMS to /usr from http://www.mysql.com
MySQL-server-4.1.8-0.i386.rpm
MySQL-devel-4.1.8-0.i386.rpm
MySQL-client-4.1.8-0.i386.rpm
MySQL-shared-4.1.8-0.i386.rpm
Install them with: rpm -i MySQL*.rpm
Source Files
Download these files (or newer versions) to /usr/local/src
(the packages will be located in /usr/local/lib when they are installed unless otherwise stated)
zlib-1.2.1.tar.gz from http://www.gzip.org/zlib/
libxml2-2.6.11.tar.gz from http://www.xmlsoft.org/
php-5.0.3.tar.gz from http://www.php.net/downloads.php
httpd-2.0.52.tar.gz from http://httpd.apache.org/
http://www.openssl.org/source/openssl-0.9.7e.tar.gz
http://puzzle.dl.sourceforge.net/sourceforge/libssh2/libssh2-0.4.tar.gz
Decompress the files
cd /usr/local/src
tar xzf zlib-1.2.1.tar.gz
tar xzf libxml2-2.6.11.tar.gz
tar xzf httpd-2.0.52.tar.gz
tar xzf php-5.0.3.tar.gz
tar xzf [...]

Next Entries »