uutry(1) General Commands Manual uutry(1)NAME
uutry - Tries to contact remote system with debugging on
SYNOPSIS
uutry [system]
DESCRIPTION
The uutry command is a shell that invokes uucico to call a remote site, system. Debugging is turned on (level 9). The debugging output is
put into the file /tmp/system. A tail -f on this file is executed so that the debugging output is printed on the terminal during execu-
tion. Typing the Interrupt key sequence gives control back to the terminal while uucico continues to run, putting its output in /tmp/sys-
tem.
The uutry command overrides any retry period for a remote system and will attempt to establish a connection immediately.
The output file, /tmp/system is overwritten each time uutry is executed to system.
FILES
On a given system, this file contains a list of remote sites accessible through the UUCP protocol. The primary security file for uucp
which specifies access permissions for remote systems. Contains information about devices on the local system that can establish a connec-
tion to a remote computer using the uucp program. The spool directory where uucp maintains its temporary work files. Contains lock files
that prevent multiple uses of devices and multiple calls to systems. Called the public directory on a given system, UUCP uses it for send-
ing and receiving information; ~uucp is a brief way of specifying it. A file created by uutry to contain traces generated by uucico while
connecting to system, system.
SEE ALSO
Commands: uucico(8)uutry(1)
Check Out this Related Man Page
Uutry(1M) System Administration Commands Uutry(1M)NAME
Uutry, uutry - attempt to contact remote system with debugging on
SYNOPSIS
/usr/lib/uucp/Uutry [-r] [-c type] [-x debug-level] system-name
DESCRIPTION
Uutry is a shell script that is used to invoke uucico(1M) to call a remote site. Debugging is initially turned on and is set to the default
value of 5. The debugging output is put in file /tmp/system-name.
OPTIONS
The following options are supported:
-r This option overrides the retry time that is set in file /var/uucp/.Status/system-name.
-c type The first field in the Devices file is the "Type" field. The -c option forces uucico to use only entries in the "Type"
field that match the user-specified type. The specified type is usually the name of a local area network.
-x debug-level debug-level is a number from 0 to 9. Higher numbers give more detailed debugging information.
FILES
/etc/uucp/Devices
/etc/uucp/Limits
/etc/uucp/Permissions
/etc/uucp/Systems
/tmp/system-name
/var/spool/locks/*
/var/spool/uucp/*
/var/spool/uucppublic/*
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
|Availability |SUNWbnuu |
+-----------------------------+-----------------------------+
SEE ALSO uucp(1C), uux(1C), uucico(1M), attributes(5)SunOS 5.10 18 May 1993 Uutry(1M)
NEWS:
UUCP vulnerability found in the command line argument handling of uucp which could be exploited by a local user to obtain uucp uid/gid.
http://www.linuxhelp.net/article.pl?sid=02/02/20/0335219&mode=&threshold= (1 Reply)
I have set up a modem in SCO Unix .. I want to dial in from a remote terminal program, what else is needed .. do I have to configure UUCP ?? How ? Any other configurations ?
CHRIS (1 Reply)
Please help I am having difficulty getting uucp to send or receive a file from a remote site. The remote site settings are correct as they have been tested and tried on other systems.
When I try and send a file the modem dials and connects to the remote site uulog shows that the login is... (3 Replies)
I was using my computer normally, then started up kvpnc to remote into a system. On disconnecting from kvpnc and closing the program, my internet connection would not work -- no sites loaded. Two restarts didn't help. I then opened the program and connected, which let me post this. But I don't... (5 Replies)
I'm using PuTTY to establish a SSH connection to a remote UNIX machine. I need to fetch a file from the remote system into my local Windows system.
Is it possible? If yes, how can I do that? (2 Replies)
Greetings folks,
I am trying to assign the output of a dscl command (contains name<spaces>id) to a variable as an array. Currently I am piping the output into a tmp file, then reading the tmp file into an array, then parsing the array. I would like to bypass creating the tmp file portion of... (6 Replies)
I was able to use expect successfully, I think, but what to do after?
Here's my goal:
use expect to log in to a remote terminal with sftp
copy over some files from my local computer to the remote computer
run a process on the remote computer on these files
copy the output back to my local... (1 Reply)
Hi all :
I want to del all *.tmp files in my /tmp/ , so I use system("rm -f /tmp/*.tmp");
but It's wrong , I must pass a path without regular expressions . eg:
system("rm -f /tmp/1.txt")
the question is I don't know the exactly files name so I can't del it as above , but I know... (13 Replies)
Hi Friends,
I am new to this , I am working on AIX system and my scenario is to retrive the files from remote system and remove the files from the remote system after retreving files. I can able to retrieve the files but Can't remove files in remote system. Please check my code and help me out... (3 Replies)
Hi,
I am using putty client to connect to my remote Linux server box, and I am connecting through ssh. That system runs bash shell. So, if I use multiple putty terminal, how can I replicate those commands that I ran in other terminals to be available/shared in the current terminal window (i.e)... (1 Reply)
Hi,
I am running a remote shell from site A to site B, where both are AIX. The remote shell starts other application, and when it finishes, it returns to the site A.
The problem is that I am receiving an error signal 11 and system core error 50 - segmentation fault.
Does anyone know if there are... (6 Replies)
I am connecting to remote server and try to check if files with timestamp as Today's day are on the directory. Below is my code
TARFILE=${NAME}.tar
TARGZFILE=${NAME}.tar.gz
ssh ${DESTSERVNAME} 'cd /export/home/iciprod/download/let/monthly;
Today=`date +%Y%m%d`;
if ;then
echo "We... (1 Reply)