Kermit
Re: Kermit
They use G-kermit now.calvinwkw wrote:i want to backup the ops file from the pabx to my pc via modem, and i can use wermit command in 5.0Ux, but 5.1 & 6.0Lx cannot, can some one teach me how to do that.
http://www.columbia.edu/kermit/gkermit.html
try:
Code: Select all
(1)xa000000>gkermit -s <file_name>- frank
- Alcatel Unleashed Certified Guru

- Posts: 3386
- Joined: 06 Jul 2004 00:18
- Location: New York
- Contact:
Just a little trick, because I have to do it now...
If you want to backup the OPS files using your modem, go to swinst, and BACKUP OPS FILES to CPU DISK.
After that, go to /usr4/BACKUP/OPS , and have a software that can do Kermit protocol for transmission (I use Procom Plus in my case..)
Once you are in the folder, just do a
If you use a UNIX (bsd) release:
for i in * ; do wermit -s $i ; done
If you use a LINUX release:
for i in * ; do gkermit -s $i ; done
And your computer should receive all the files
If you want to backup the OPS files using your modem, go to swinst, and BACKUP OPS FILES to CPU DISK.
After that, go to /usr4/BACKUP/OPS , and have a software that can do Kermit protocol for transmission (I use Procom Plus in my case..)
Once you are in the folder, just do a
If you use a UNIX (bsd) release:
for i in * ; do wermit -s $i ; done
If you use a LINUX release:
for i in * ; do gkermit -s $i ; done
And your computer should receive all the files
Code Free Or Die
-
jpcx
gkermit
To send a file from the PCX to the PC:
> gkermit -i -p n -s filename
Then escape and launch a receive command in the PC with protocol KERMIT.
-i => binary mode
-p n => parity none
-s => send file
To receive a file from PC to the PCX:
> gkermit -i -p n -r
Then escape and launch a send command and select the file to send in the
PC with protocol KERMIT
> gkermit -i -p n -s filename
Then escape and launch a receive command in the PC with protocol KERMIT.
-i => binary mode
-p n => parity none
-s => send file
To receive a file from PC to the PCX:
> gkermit -i -p n -r
Then escape and launch a send command and select the file to send in the
PC with protocol KERMIT
