To mount an ISO file use the following command
mount -F hsfs -o ro `lofiadm -a /path/to/file-name.iso` /path/to/mountpoint
Mounting iso on Mac OSX
hdiutil mount sample.iso
On Redhat …
mount -t iso sample.iso -o loop
To mount an ISO file use the following command
mount -F hsfs -o ro `lofiadm -a /path/to/file-name.iso` /path/to/mountpoint
Mounting iso on Mac OSX
hdiutil mount sample.iso
On Redhat …
mount -t iso sample.iso -o loop
When we use sudo command to run any command with root privilege then it always ask for password, to avoid this run the command ‘visudo’ as root and write this lines after the following line
root ALL=(ALL) ALL
your_user_name ALL=(ALL) NOPASSWD:ALL
If you want to see the particular line number of a file (for example line no 10) in standard output, just use the following command
sed -n '5 p' < (file name)
here 5 indicate the line number.
Lets have some pracice with sed…
consider the following lines
64 bytes from tdevi (192.168.16.100): icmp_seq=20. time=253. ms
64 bytes from tdevi (192.168.16.100): icmp_seq=21. time=251. ms
64 bytes from tdevi (192.168.16.100): icmp_seq=22. time=257. ms
I need only the icmp_seq and time field
First only icmp_seq
less ping-ms01.out |sed ’s/.*://’|sed ’s/.*q=//’ will result
22. time=257. ms
Then for time
sed ’s/.\ time=/,/’ will result
22,257.ms
gunzip -c Pod-Simple-3.07.tar.gz | tar xf -
OR
gtar zxf Pod-Simple-3.07.tar.gz