I moved my vps so i need some ssh commands, i found very usefull article for ssh command. ls : list files/directories in a directory, comparable to dir in windows/dos. ls -al : shows all files (including ones that start with a period), directories, and details attributes for each file. cd : change directory · … Read more

There are some tips for Pardus , 1. How to chane linux root password in Pardus write su root to login as root write your password type sudo passwd type new password confirm new password 2. How to terminate , kill a program press ctrl+alt+esc and click the program that you want to kill 3. … Read more

On ubuntu and kubuntu systems you can install php5 apache2 mysql and phpmyadmin with this command sudo apt-get install apache2 php5 php5-mysql php5-gd mysql-server phpmyadmin To enable mod_rewrite run this: sudo ln -sfn /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/ sudo /etc/init.d/apache2 restart

i have studied c++ for my exam today and i will explain how can you compile c/c++ in linux also there were some error that i want mention. 1.install eclipse (not necessary for compiling) probably you can find it from your package manager if there isn’t use this link: http://www.eclipse.org for pardus open pisi search … Read more

Open console and write pisi update-repo sudo pisi it apache mysql-server mod_php sudo mysql_install_db sudo service mysql-server on sudo service apache on After you should restart your comptuter Test <?php echo “Hello World”; ?> save this as test.php and copy /var/www/localhost/htdocs/ write firefox http://localhost/test.php if you do eveything correct,  you will see hello world on … Read more