Search Results

Search: Posts Made By: Darwin_
Forum: IP Networking 12-06-2006
8,069
Posted By Darwin_
dig -t AXFR domain.tld allows you to get a...
dig -t AXFR domain.tld

allows you to get a zone transfer from the specified domain, what includes a list of all hosts within this domain. Then you could grep the output for all host entries.
...
18,638
Posted By Darwin_
Normally I use Connect Direct for copying files...
Normally I use Connect Direct for copying files from Mainframes to UNIX systems and vice versa and I dont know whether it works the way you tried or not since Im not quite familiar with mainframes.
...
Forum: IP Networking 12-05-2006
18,149
Posted By Darwin_
On Solaris 10 it has /etc/inet/ipnodes in...
On Solaris 10 it has /etc/inet/ipnodes in addition. Dunno DEC quite well.

Darwin
Forum: IP Networking 12-05-2006
2,313
Posted By Darwin_
If you want to monitor network traffic between...
If you want to monitor network traffic between those computers you could use snoop. But thats kinda limited, so it depends on what kind of data you want to record.

Darwin
Forum: Solaris 12-05-2006
4,089
Posted By Darwin_
login as root without password and set it by...
login as root without password and set it by using "passwd" ?

Darwin
29,051
Posted By Darwin_
if [ ! -z "$VARXY" ]; then echo "Is not Zero" ...
if [ ! -z "$VARXY" ]; then
echo "Is not Zero"
fi


Darwin
36,682
Posted By Darwin_
Everyone can use ping. A user always (with...
Everyone can use ping. A user always (with appropriate permissions) can execute binaries with specifying the
absolute path, even if the binary is not in his PATH. e.g /usr/sbin/ping, except for when...
Forum: IP Networking 12-05-2006
3,543
Posted By Darwin_
To answer this question I would have to write a...
To answer this question I would have to write a book. Could you please be a bit more specific?

Darwin
Forum: Solaris 12-05-2006
7,329
Posted By Darwin_
Which is no longer available in Solaris 10. ...
Which is no longer available in Solaris 10.



Depends on what you're looking for.

From the man page:

passwd -u <user>

Unlocks a locked password for entry name. See the -d option...
5,286
Posted By Darwin_
echo "$USER" # shows username echo "$(pwd)" ...
echo "$USER" # shows username
echo "$(pwd)" # shows current work dir

but I'm not quite sure if thats what you've been looking for.

Darwin
26,688
Posted By Darwin_
This works for me: #!/bin/ksh for f in...
This works for me:

#!/bin/ksh

for f in $( find /base/oracle/FRA -name *.arc -print )
do
if [ ! -f "$( echo $f | sed 's/\/[^\/]*$/\/RMAN_FLAG/' )" ]; then
rm -f $f
fi
done

I've...
2,885
Posted By Darwin_
netstat -rn
netstat -rn
2,885
Posted By Darwin_
ssh is quite similiar to telnet, with the...
ssh is quite similiar to telnet, with the difference that its traffic is encrypted. And its also not that hard setting it up. Its actually worth the time having a look at it.



Sounds like a...
5,406
Posted By Darwin_
There's a possibility to transfer files by using...
There's a possibility to transfer files by using scp and private-/public keys for authenticating users, which is one of the best ways to accomplish tasks like this imho. The script would look quite...
Forum: Solaris 12-05-2006
13,942
Posted By Darwin_
The guide about Solaris Flash Archives might be...
The guide about Solaris Flash Archives might be useful as well.

http://docs.sun.com/app/docs/doc/819-5779

Darwin
5,406
Posted By Darwin_
I'm not quite sure what you're looking for but...
I'm not quite sure what you're looking for but you could use something like

find . -size 0c -type f -name *.txt

to recursively find all files which have a size of 0 (and therefore no records)....
8,151
Posted By Darwin_
My column size is 80 and there is no environment...
My column size is 80 and there is no environment variable setting it to something different. However, ps auxwww still shows me the entire command line of the process. (Whats a very useful feature...
Forum: Open Source 12-04-2006
357,414
Posted By Darwin_
plain good old - vi - ;-)
plain good old - vi - ;-)
2,885
Posted By Darwin_
From a security point of view telnet is...
From a security point of view telnet is deprecated and you should instead be using SSH, especially when its being used over an unsecure network like the internet.

cheers,
Darwin
23,677
Posted By Darwin_
You would say secure shell copy (scp) is your...
You would say secure shell copy (scp) is your friend.

cheers,
Darwin
Forum: Linux 12-04-2006
7,516
Posted By Darwin_
have a look at: ...
have a look at:

https://www.unix.com/showthread.php?t=25119

cheers,
Darwin
Forum: Solaris 12-04-2006
6
9,835
Posted By Darwin_
You might want to create a response file for the...
You might want to create a response file for the package by using pkgask. Afterswards you should be able to install packages with pkgadd non-interative.

cheers
Darwin
8,151
Posted By Darwin_
# /usr/ucb/ps auxwww | grep sleep root ...
# /usr/ucb/ps auxwww | grep sleep
root 13628 0.0 0.1 1216 944 pts/5 S 16:07:44 0:00 sleep 8000...
Showing results 1 to 23 of 23

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