How to split large file into several smaller files - Linux

linux, split file linuxHave you ever want to split a large file into several small files? I’ve face this problem few days ago. I need to split a large file (3GB log file) into several smaller file where i can read it using normal text editor.

To split large file into several smaller files, you can use split command in linux. Just follow the steps below and you will be able to split large file into smaller files.

Continue reading How to split large file into several smaller files - Linux »

How to auto start Apache during boot time - Linux

auto start apache, start apache during boot, apache startup script, apache start up script, linux, computer tipsIf you compile your own apache from source, your apache will not auto start during boot time. To enable auto start apache during boot time, you need to do some configuration on rc.d directory.

Follow the steps below and apache will auto start during boot time:-
Continue reading How to auto start Apache during boot time - Linux »

How to create symbolic link in Unix

create symbolic link, symbolic link, link, linux, computer tipsSymbolic link in *nix is just like a shortcut in Window. You can create a shortcut for script or directory. You can delete symbolic link anytime and it wont affect your link directory or files.

To create symbolic link is very easy, it’s just a line of command to create symbolic link in *nix. We use ln command to create symbolic link. Below are the explanation on how to use ln command
Continue reading How to create symbolic link in Unix »