MongoDB installeren
Run: apt-get install php5-dev php5-cli php-pear pecl install mongo
MongoDB installeren Meer lezen »
Run: apt-get install php5-dev php5-cli php-pear pecl install mongo
MongoDB installeren Meer lezen »
Just installed my first CentOS 6.0 test server. In order to save bandwidth, I downloaded the minimal installation ISO which produced a Linux system that was able to boot correctly, but provided none of the standard system-config-… tools. So in order to continue installation, I had to setup IP information for the systems network card
IP network configuration in Centos Meer lezen »
If you want to work with zip files in Ubuntu command line interface, you will need these commands: zip and unzip. Zip To install zip if you don’t already have it, do this sudo apt-get install zip The simplest way to create a zip file (archive) is zip myzipfile.zip file1 file2 file3 …
Zip Files in Ubuntu CLI Meer lezen »
Package management met apt-get Debian en Ubuntu gebruiken apt voor de package management. Dit staat voor short for Advanced Package Tool. Hieronder volgen voorbeelden hoe packages kunnen worden beheerd. Installeer software met apt waarbij <software> de naam van de package is (met * werkt ook om meerdere te installeren. Bijvoorbeeld: php5-* voor alle php5 packages. apt-get
apt-get en dpkg commands in Debian Meer lezen »
Logfiles Snel even een logfile van gisteren bekijken? jammer hij is al ingepakt door logrotate. Dan maar even uitpakken. En het uitgepakte bestand bekijken. En zeker niet vergeten deze na de tijd weer te verwijderen. Dit kan veel makkelijker. Zcat zcat is hiervoor het commando die je nodig hebt. Dit commando pakt een gecomprimeerd bestanden uit
Zcat – gz ingepakt logfile bekijken Meer lezen »
typ: df -h en schrijf de locatie van de oude /data dir op Koppel de nieuwe disk in VMWARE typ: apt-get install scsitools (tool om de scsi bus te scannen op nieuwe devices) typ: rescan-scsi-bus.sh (scan bus) in /dev staat de nieuwe schijf erbij (sdc)
In Linux een extra schijf toevoegen (VMWARE) zonder reboot Meer lezen »
tcpdump – Detailed Network Traffic Analysis The tcpdump is simple command that dump traffic on a network. However, you need good understanding of TCP/IP protocol to utilize this tool. For.e.g to display traffic info about DNS, enter: # tcpdump -i eth1 ‘udp port 53’ Bekijk al het verkeer behalve SSH #tcpdump not port 22
dpkg DPKG is de packet manager van Debian. Deze wordt op de achtergrond gebruikt door Advanced Package Tool welke packetten kan updaten en onderhouden in Debian en Ubuntu. DPKG wordt gebruikt om .deb packetten te installeren. Versies van pakketten bekijken: dpkg -l | grep <<pakket naam>> You need to use dpkg package manager from shell/command
dpkg – Installeren van .deb pakketten Meer lezen »
I use a couple of different methods on a day to day basis to figure out what process has opened a port on my Linux machines. The first one works well in Linux, but doesn’t work in most Solaris versions I’ve sat down at netstat -plate This one is a bit more cross platform and
Finding what process is listening on what port in Linux Meer lezen »
On unix systems we often talk about the server’s load. The load can be found by using the w command or with various other tools. The important thing to know is that load is made up of 3 numbers and will look similar to this load average: 0.21, 0.24, 0.20
what does the load average mean Meer lezen »