September 2006

Explains how to fix – warning: remote host identification has changed! Openssh server and client error under any Linux / UNIX / BSD like operating systems.

{ 38 comments }

How to use dd command to make a diskette

by Vivek Gite on September 28, 2006 · 0 comments

Q. How do I use dd command to make a diskette? A. dd is use to copy a file, converting and formatting according to the options. Since everything is considered as a file under Linux you can write files to a diskette with dd command itself. For example if you want to write boot.img (Linux [...]

{ 0 comments }

Q. How do I find out what filesystems my Linux kernel supports? A. Linux supports lost of file system or different file systems. This makes is flexible and well able to coexist with many other operating systems. ext2/ext3 are considered as a native Linux file system. Nevertheless, Linux supports large number of file system. You [...]

{ 0 comments }

How to include files with PHP

by Vivek Gite on September 28, 2006 · 0 comments

Q. How do you include files with PHP? A. PHP has a special function called include().The include() statement includes and evaluates the specified file. Foe example if you have a file called lib.php: <?php function test(){ echo “test() called”; } ?> Now you can include lib.php and call test() from demo.php: <?php include(“lib.php”); test(); ?> [...]

{ 0 comments }

How do I list just directory names under Linux and UNIX operating systems?

{ 33 comments }

Linux: How can I find a file on my system?

by Vivek Gite on September 28, 2006 · 0 comments

Q. I have remove server. I login through SSH program. How do I find a file called xyz on my Linux server system? A. You can use find command. It search for files in a directory hierarchy under Linux and all other UNIX like oses. Use find command to find a file from shell prompt. [...]

{ 0 comments }

List the contents of a tar or tar.gz file

by Vivek Gite on September 28, 2006 · 14 comments

Q. How do I list the contents of a tar or tar.gz file? A. GNU/tar is an archiving program designed to store and extract files from an archive file known as a tarfile. You can create a tar file or compressed tar file tar. However sometime you need to list the contents of a tar [...]

{ 14 comments }