Shell Commands: Difference between revisions

From GotOpinion
Jump to navigation Jump to search
Line 40: Line 40:
Find version of OS
Find version of OS


# cat /etc/redhat-release
<code>cat /etc/redhat-release</code>


# cat /etc/redhat-release
<code>cat /etc/redhat-release</code>


# cat /etc/fedora-release
<code>cat /etc/fedora-release</code>


# cat /etc/SuSE-release
<code>cat /etc/SuSE-release</code>


<center>[[Linux]]</center>
<center>[[Linux]]</center>

Revision as of 17:34, 22 June 2010

Tape Archival (tar)

Create tar

tar -cvf filename.tar filemane

Undo tar

tar -xvf filename.tar

List contents tar

tar -tvf filename.tar

gzip

Compress file

gzip -9 filename

Decompress file

gzip -d filename

ifconfig

To determine your IP address settings run:

ifconfig

find

To find path to a file run:

# find / -name "filename"


Tips

Find version of OS

cat /etc/redhat-release

cat /etc/redhat-release

cat /etc/fedora-release

cat /etc/SuSE-release

Linux