Search Results

Search: Posts Made By: polavan
3,535
Posted By Corona688
You have control of your terminal, but ping is...
You have control of your terminal, but ping is still allowed to print to it, too.
3,535
Posted By black_fender
Also you if you want to use ping in a script I...
Also you if you want to use ping in a script I suggest this approach :

ping -c X <hostname>

where X is number of packages (one per second) you want to send to the rmeote server. To check the...
3,535
Posted By gary_w
Ping is sending its output to STDOUT, which is...
Ping is sending its output to STDOUT, which is the screen. You can redirect it to go into a file instead:
ping glxavr196 > ping.out &
1,011
Posted By methyl
Start with: netstat -in | awk '{print $4}' |...
Start with:
netstat -in | awk '{print $4}' | grep -v "Address"Then look up the full name of those which are IP addresses (not MAC addresses) in /etc/hosts or DNS according to where netstat finds the...
Forum: Solaris 11-11-2011
10,617
Posted By jlliagre
The simpler would be for you to create a second...
The simpler would be for you to create a second primary partition using the remaining unallocated 25 GiB then create a ZFS pool on it.

For the first task, use fdisk in interactive mode:
# fdisk...
Forum: Solaris 11-08-2011
10,617
Posted By orange47
it is possible to change size of last slice after...
it is possible to change size of last slice after re-labeling the drive.
ufs filesystem can 'grow', but to shrink it you'd need to backup+restore.
Forum: Solaris 11-08-2011
10,617
Posted By bartus11
Right. Solaris fdisk partition is treated by...
Right. Solaris fdisk partition is treated by Solaris as whole disk, so if you want to have 35GB disk in Solaris (that you can later divide into slices), then you need to create 35 Solaris fdisk...
Forum: Solaris 11-07-2011
10,617
Posted By h@foorsa.biz
Nothing left all partitions are assigned you need...
Nothing left all partitions are assigned you need to reparation your disk
3,863
Posted By Corona688
Put it in quotes. STR="a|b|c|d|e" ...
Put it in quotes.

STR="a|b|c|d|e" Otherwise, it will assume they're pipes between commands.

To print them one per line:

STR="a|b|c|d|e"
OLDIFS="$IFS"
IFS="|"
printf "%s\n" $STR...
Showing results 1 to 9 of 9

 
All times are GMT -4. The time now is 11:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy