Installing PHP on Debian without Apache
If you need to install PHP without apache on a Debian machine, do not try the short way You need to install dependencies of php5 first and then install php5, like below
If you need to install PHP without apache on a Debian machine, do not try the short way You need to install dependencies of php5 first and then install php5, like below
Modify your .bashrc in your home directory in cygwin Add a variable into your environment variables As in this screenshot You can add the path to the directory /bin, /usr/sbin, /usr/local/bin into your PATH variable of windows too, so that you can use most of cygwin commands directly from Command Prompt. The most useful commands [...]
For Debian Modify /etc/network/interfaces # /etc/network/interfaces — configuration file for ifup(8), ifdown(8) # The loopback interface auto lo iface lo inet loopback # The first network card – this entry was created during the Debian installation # (network, broadcast and gateway are optional) auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 network 192.168.1.0 [...]
Source: svn://svnanon.samba.org/samba/tags/release-2-2-12/docs/history It’s now October 1998. We just got back from the 3rd CIFS conference in SanJose. The Samba Team was the biggest contingent there. Samba 2.0 should be shipping in the next few weeks with much better domain controller support, GUI configuration, a new user space SMB filesystem and lots of other neat stuff. [...]
Export your Eclipse preferences using File > Export > General > Preferences. This will output a .epf file with a whole bunch of preferences including repository info; way more than you need. Run some simple commands to create a preference file that contains color information only. Add “file_export_version=3.0″ as the top line of your new [...]
Assuming that apache is installed! Install packages apt-get install subversion libapache2-svn libapache-mod-dav Enable SSL a2enmod Add “Listen 443″ into httpd.conf if needed. Install SSL apt-get install ssl-cert mkdir /etc/apache2/ssl /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/site-name.crt Adding Basic Authentication: htpasswd2 -c -m /home/path-to/svn/project/.htpasswd username Configure site cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site-name nano /etc/apache2/sites-available/site-name <VirtualHost IP_ADDRESS:443> ServerName hostname DocumentRoot /home/path-to/svn SSLEngine on [...]
With Secure Copy (slowest) : scp -r dir user@destination-host:/tmp/ Tar through SSH: tar czpf – dir | ssh user@destination-host tar xzpf – -C /tmp/ Tar with Netcat (fastest): On destination-host: nc -l -p 7000 | tar xzpf – -C /tmp/ On source-host: tar czpf – dir | nc -w 10 destination-host 7000 For the methods [...]