How Do I FTP System Files to Different Server?

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers How Do I FTP System Files to Different Server?
# 36  
Old 08-03-2018
I don't think the other two are needed either - the S86nps is for Novell networking, and the S99ssinit has something to do with "Equinox" which might have been an older fax system? Anyway, I have a network printer that works with the physical system, set as the default printer, and I know that I will need to set it up in the VM - I'll be trying that soon. But what I want to do is to print a list of files that are in the /etc directory, does anyone know why this would not work?
Code:
ls > lp0

When I try that from within the /etc directory nothing prints at all. Maybe that is not the right command? Any help is appreciated, as always.
# 37  
Old 08-03-2018
all you are doing is creating a file called lp0 in the /etc directory.
try
Code:
ls |lp -dlp0

# 38  
Old 08-03-2018
OK, the command did not recognize "lp0" so I did an "lpstat -t" which showed the name of my default printer as "hp4200n". I ran the command this way:
Code:
ls | lp -dhp4200n

and the listing tried to print. It spit out 7 pages from the printer with only the first page having any ink on it. I am attaching a PDF of how this printed, and it's really strange - only the first few file names printed and it looks really weird. Is there a way to fix this so I can print the whole list? Thanks again.
# 39  
Old 08-03-2018
the print file does not have carriage returns.
there are several solutions.
1. on the front panel of the printer, change the setting so that the printer adds a carriage return every time it finds a line feed.
2. add <esc>&k2G to the beginning of the print file, or to the model file.
3. use
Code:
ls |unix2dos -x |lp -dhp4200n

# 40  
Old 08-03-2018
Thank you for that help - I found the setting in the printer and now I have the listing printed out. I'm going to compare to the VM and see if I can get anywhere. I really appreciate all the help from everyone! Thanks!

------ Post updated at 02:45 PM ------

Now I have another thought that may be the final step I need. I remembered there was a floppy disk that was called "Menu Control" for the legacy software that we run in the unix box, and it had to be installed for the system to work properly. I actually still have the floppy disk, and I'm trying to mount it in the physical system to see what is on it and if I can copy it over to the VM and run it. There seems to be something wrong with my physical system and the floppy drive, because I cannot get it to work. Here is what I have tried:
Code:
mount /dev/fd0 /mnt

and
Code:
mount /dev/fd0135ds18 /mnt

The error to both of those commands is "cannot stat (dev)". So then I tried this:
Code:
dtype /dev/fd0135ds18

and the error there is "I/O error". I have tried two different floppy drives, ran a cleaning disk on both, and still the same results. Is there any way to get the floppy drive working so I can see/transfer the files? Thanks
P.S. the floppy drive light comes on each time, just no good results.

------ Post updated at 03:14 PM ------

Sorry for the multiple posts, but with each step of progress I make a new challenge arises. I seem to recall this being a hallmark of unix. Anyway, I now believe that I have the floppy mounted in the physical machine and when I do an "ls" there is just one file called "install".


When I tried to copy this file to a /tmp directory it said I needed to specify either -r or -R to "copy directory install" This poses two questions in my mind:


1. If I copy it, which switch should I use, -r or -R?
2. If I copy it, and then ftp over to the VM, will there be a way for me to run the "install"?


Any help on how to proceed would be greatly appreciated. Thanks!
# 41  
Old 08-03-2018
with the diskette mounted to /mnt
Code:
cd /mnt
cd install
ls -l 
*** is the output just files, or are there more directories?
cd /mnt
cp -omr * /tmp
cd /tmp
ls -ltr
*** you should find a directory 'install'
cd install

hopefully there is a readme or a setup or install script to read/run.
Code:
cd /tmp
tar ctvf menu.tar install
ftp menu.tar to the vm
on the vm
tar xvf menu.tar
run the install

# 42  
Old 08-03-2018
Inside the "install" directory on the floppy is a list of files shown on the attached screenshot. I would guess the INSTALL file is the "setup" but I'll need to know how to run that when I get it copied over. So it looks like I need to cp the files from the floppy to the /tmp and then create the "tar" file to ftp to VM? Do I have that right?
How Do I FTP System Files to Different Server?-install-file-listjpg
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

FTP-ing files from Windows server to UNIX server

I need to transfer files from a Windows server to the Unix server and have to run some shell script on it to get the required output. Is it possible to transfer files from Windows server to unix server through any shell script? If so can you please help me with the details. Thanks in... (8 Replies)
Discussion started by: ssk250
8 Replies

2. Shell Programming and Scripting

FTP multiple files from one server to one server

Hi, I'm new to shell script..I have one requriement like - In one server have more than one files,I want to ftp those files to some otehr server.. Ex : test1.pdf test2.pdf Please suggest me how to do (3 Replies)
Discussion started by: venkaswa
3 Replies

3. Shell Programming and Scripting

Need help creating a script to FTP files to a server and then delete the files that were transfered.

I am trying to FTP files to a Windows server through my Linux machine. I have setup the file transfer with no problems but am having problem deleting those files from the Linux box. My current non-working solution is below. Any ideas, anyone?? :wall: Please be gentle, I'm fairly new to this... (4 Replies)
Discussion started by: jmalfhs
4 Replies

4. Shell Programming and Scripting

Validating the size of file transferred from ftp server to the local system

Validating the size of file transferred from ftp server to the local system. File type: Text file/Flat file Source System: Windows / Unix Systems Target System is always: Unix Mode of Transfer : ASCII We have generic ftp shell script that transfers the files from different ftp servers. ... (2 Replies)
Discussion started by: jpundalik
2 Replies

5. Shell Programming and Scripting

script for to take files from FTP server to UNIX server and Unzipped that files

script for to take files from FTP server to UNIX server and Unzipped that files (1 Reply)
Discussion started by: sunilamarnadh
1 Replies

6. Filesystems, Disks and Memory

Not able to FTP the files to a FTP server

Hi , We are facing a weird problem in our project. we need to send some xml & audio files to a remote FTP server from a Linux box, we are doing this in Perl script using Net::FTP->. Issue here is.. when FTPed the files using Perl scripts, only empty files ( 0 byte) are getting created on the... (2 Replies)
Discussion started by: kishorepotta
2 Replies

7. UNIX for Dummies Questions & Answers

FTP Files from one server to another

Hi, I want to run a process on server a, pulling files from server b and pushing it to server c. Can i do that without dropping the files on server a? Thanks, Samit (2 Replies)
Discussion started by: samit_9999
2 Replies

8. Shell Programming and Scripting

FTP files to target Mainframe system

Hi Experts... Greetings for the day..! I just want to FTP the files to mainframe system.. my code is not working..and also i need to put the files in a particular directory in a specific naming format... ftp -i -n ${HOST_NAME} << END_FTP user ${USER_NAME} ${PASSWORD} put ${FILE_NAME}... (3 Replies)
Discussion started by: spkandy
3 Replies

9. Solaris

Secure FTP Problem using Sun SSH on Client system F-Secure on Server system

I am using shell script to do secure ftp. I have done key file setup to do password less authentication. Following are the FTP Details: FTP Client has Sun SSH. FTP Server has F-Secure. I am using SCP Command to do secure copy files. When I am doing this, I am getting the foll error scp:... (2 Replies)
Discussion started by: ftpguy
2 Replies

10. Shell Programming and Scripting

FTP multiple files from remote server to local server

Hi, I am facing a weired problem in my FTP script. I want to transfer multiple files from remote server to local server everyday, using mget * in my script. I also, want to send an email for successful or failed FTP. My script works for file transfer, but it don't send any mail. There is... (2 Replies)
Discussion started by: berlin_germany
2 Replies
Login or Register to Ask a Question