How 2 Know
If you can't Google it, You Can Knowing it.

Archive for the ‘Solaris’ Category

Solaris Quick Start

Sunday, September 3rd, 2017

You can download the following PDF which you can use it for a quick start on Solaris:

solaris-quicksheet

the PDF file taking about the following outlines:

Continue Reading…

LVM

Saturday, September 20th, 2014

LVM :- Logical Volume Manager and it’s a disk Management for Linux/UNIX Systems.

uncompress files using jar command

Sunday, February 23rd, 2014

you can uncompressed zipping files using java, specially “jar” command:

 

to do that , try the following :

 

/usr/java6/bin/jar -xvf /tmp/test.zip

run levels description

Saturday, December 21st, 2013

The Following points shows the meaning of each run level :

  • on LINUX-UBUTNU/DEBIAN:

0 – halt
1 – single user
2 – multiuser (default)
3 – same as 2
4 – same as 2
5 – same as 2
6 – reboot Continue Reading…

how to know current run level

Saturday, December 21st, 2013

run the following command to know your current run level:


# who -r
         run-level 2  2013-12-20 00:39

how to see hidden char in file

Wednesday, October 9th, 2013

some times you transfer files from windows to Linux or UNIX using binary method, you will find some hidden characters  on the file, to display these hidden character  use commands “cat” with option “vte” see the following examples:

Continue Reading…

how to ease navigation with CDPATH

Monday, October 7th, 2013
$CDPATH=:..:~:~/projects

Set CDPATH to ease navigation

CDPATH tells the cd command to look in this colon-separated list of directories for your destination. My preferred order are

1) the current directory, specified by the empty string between the = and the first colon,

Continue Reading…