preload preload preload preload

Installing Symfony Framework in Ubuntu

Install these packages with apt: php5 php5-cli php5-dev php5-sqlite php-pear $ sudo apt-get install php5 php5-cli php5-dev php5-sqlite php-pear Test if Apache and PHP are up and running typing in the browser: http://localhost/ You should see something like: Apache/2.0.55 (Ubuntu) PHP/5.1.2-1ubuntu1 Server at localhost ...
1

Creating a swap file

Using the command dd you can create swap file. dd - convert and copy a file First of all check the current swap size using the command 'free' $ free Output total used free shared buffers cached Mem: 1025620 1009140 16480 0 2252 465116 -/+ buffers/cache: 541772 483848 Swap: 2096440 18924 2077516 Create a directory called 'swap' under slash '/' $ sudo mkdir ...
0