×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
We manage most of our systems remotely with an HMC or OpsCon so FTP
works best for us and we do the overnight transfer.
Jerry
Here's an FTP script from a recent FTP load of an image catalog:
anonymous abcdefghi
namefmt 1
lcd /optvrt/C6320
ascii
cd /ccss/B59192/abcdefghi/C
get ftpMF59753.txt
get ilstMF59753.txt
binary
get MF59753_1.bin
get MF59753_2.bin
get MF59753_3.bin
get MF59753_4.bin
get MF59753_5.bin
get MF59753_6.bin
get MF59753_7.bin
get MF59753_8.bin
get MF59753_9.bin
get MF59753_10.bin
close
open 192.168.1.128
user ftpauto ftpautopw
namefmt 1
quote site namefmt 1
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_1.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_2.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_3.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_4.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_5.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_6.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_7.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_8.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_9.bin') TOFILE(*fromfile)
quote rcmd ADDIMGCLGE IMGCLG(C6320)
FROMFILE('/optvrt/C6320/MF59753_10.bin') TOFILE(*fromfile)
quit
On 2/9/2017 9:26 AM, Musselman, Paul wrote:
I usually use the Download as Images option to my "PC." My PC in this case is a network drive mapped to the IFS on our test LPAR. This works well, and if I add more downloads it just tacks them onto the list of things to download. This puts .BIN images in the IFS ready for an image catalog.
FTP may be faster, but this is a nice 'overnight' process. We're generally not in that much of a hurry to get the PTFs since we have to apply them during a scheduled IPL.
As far as moving things between LPARs, I've found that using QFileSvr.400 and some MOV commands gets things copied very quickly. You can stuff all of the .BINs in a folder and move it with one MOV.
Paul E Musselman
PaulMmn@xxxxxxxxxxxxx
As an Amazon Associate we earn from qualifying purchases.