A brief tutorial on usage of chown linux command |
Sunday, June 13, 2010
Chown Tutorial
Posted by Basis-Consultant at 7:13 PM 0 comments
Labels: tutorials
Tuesday, March 23, 2010
How to remove large no of files
You just wanted to remove a directory with large no of files in it and you issued the command $rm -rf *But the rm throws an error argument list too long, then how to remove the files? Here is a simple fix that will allow you to remove large no of files easily.. First copy and paste the below code in the terminal function large_rm() { while read line1 ; do rm -f ./$line1; done; };Then cd to that directory where you need to remove the files then issue the command ls -l |large_rm Thats it.. it will remove all the files in that directory within seconds :) |
Posted by Basis-Consultant at 9:46 AM 0 comments
Labels: utilities
Friday, February 26, 2010
Transfering Files or Whole directory From One Server to another.
Ok.. this is a life save for most of the webmasters. Take the scenario when you have to move from one server from other. This work only if you are on a dedicated or vps server. You need wget to do this job. $wget -m --user='your-ftp-user-name' --password='you-ftp-password' ftp://your-host/directory-to-download |
Posted by Basis-Consultant at 7:31 PM 0 comments
Labels: ftp
Thursday, February 25, 2010
Install Eaccelerator on Centose Server
Php eaccelerator is php accelerator which reduces load on your servers by compiling them in caches state. Here is tutorials explaining how to install this in centos. |
Posted by Basis-Consultant at 3:20 PM 0 comments
Labels: php accelerators, server
Tuesday, February 16, 2010
Sync your iPhone Music Libary With Rhythmbox in Ubuntu Karmic (No Jailbreaking Required)
In Mac and Windows, you can easily sync your iPhone/iPod Touch with iTunes, but in Linux, there is no easy way to sync your iDevice’s music library with any of the media player. Even if you are willing to jailbreak your phone, there are still plenty of complicated steps that you need to do to get the syncing to work |
Posted by Basis-Consultant at 6:54 PM 0 comments
Labels: phone
Configuring Kopete to Use Facebook’s New XMPP Chat
As Facebook usage continues to grow, many people rely on Facebook as their primary method for chatting in real time with their friends and family. I am not one of those people, but since many of my friends are, having a way to easily contact them in real time is very important. There have been attempts to make plugins for major IM clients such as Pidgin and Kopete that can work with Facebook, but they were difficult to maintain and did not always perform well.... |
Posted by Basis-Consultant at 6:46 PM 0 comments
Labels: chat
8 Of The Best Linux Dockapps
How much functionality can you pack into a 64×64 square? That’s the basic question behind many dockapps – utilities that can be run on the “dock” of many popular desktop environments. While most of them are designed for Step-type window managers such as Windowmaker, these dockapps can also run in things like XFCE, Fluxbox and Openbox. These are just like vista widgets... |
Posted by Basis-Consultant at 6:36 PM 0 comments
Labels: desktop apps


