How to Install MySQL Server 5 on Ubuntu 10.10
I found the way to install MySQL Server 5 on Ubuntu. Currently I am using Ubuntu 10.10. This how you do it. sudo apt-get install mysql-server If you are running PHP you will also need to install the...
View ArticleAXEL Download Accelerator in Ubuntu
You know the popular download accelerator in Windows such as FlashGet or Download Accelerator Plus (DAP). In Ubuntu 10.10 you can use AXEL to accelerate your download. To install AXEL you can use this...
View ArticlePidgin instead of Yahoo! Messenger
Instead of using Yahoo! Messenger as your chat client, you can use Pidgin. It is containing many of chat client applications in an application (Pidgin). Pidgin has better functionality than the...
View ArticleHow to Connect VPS with SSH from Ubuntu Terminal
You can connect your VPS with SSH from your Ubuntu Terminal. You only need to install SSH Client on your Ubuntu by running this command on your Terminal. sudo apt-get install openssh-client After than...
View ArticleHow to Take Resizeable Screenshot on Ubuntu’s Terminal
At the first time I was using PrtSc (Print Screen) button to take a screenshot on Ubuntu, but it was not satisfying because it took the entire screen. I want resizeable screenshot with chosen area....
View ArticleHow to ZIP Recursively in Ubuntu
It is easy to ZIP multiple files and folders. You should go with this command in your Terminal. zip -9 -r <filename.zip> <yourfolder> for example: zip -9 -r sqlfiles.zip mysqlfolder -9...
View ArticleHow to Add CURL to your PHP in Ubuntu
It is very easy about installing CURL to your PHP5 in Ubuntu 10.10 just straight do this in your Terminal. sudo apt-get install curl libcurl3 libcurl3-dev php5-curl php5-mcrypt Restart your Apache...
View ArticleInstalling USB Modem Vodafone K3765 (Huawei) in Ubuntu 10.10
How to install Vodafone K3765 in Ubuntu 10.10? You should install the bcm-install-offline.tar first. It is offline installer, extract it to folder and install it by using this command in your terminal....
View ArticleInstalling Node.js, NPM, Grunt, and Yeoman in Ubuntu 14.04 LTS
Installing Node.js is not as difficult as a year ago. You can simply install it through your Terminal. First get the installer. $ curl -sL https://deb.nodesource.com/setup | sudo bash - And then...
View ArticleChanging Directory and Files Permission Recursively in Linux
I’ve discovered the hidden treasure at superuser to change the permission of directories or files recursively in a folder. Not quite simple, but straight. To recursively give directories read &...
View Article