Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Scott Rohling
Ah  - I see you meant for this to be run against new DASD -- assuming the
copy had been done...   I wasn't sure how/when the DASD would be copied to
the old...so it does depend...   the script should be run before or
after depending on the method ;-)

Scott Rohling

On Thu, Aug 16, 2018 at 4:35 PM Scott Rohling 
wrote:

> Good script -- I would use it 'after' the move though - not before..
> backout is much easier that way...   make changes on the new dasd - not the
> old.
>
> Use SAPL and change PDVOL= to correct address...   'then' run this script
> once everything comes up and looks good.   IMHO.
>
> Scott Rohling
>
> On Thu, Aug 16, 2018 at 4:16 PM Davis, Larry (National VM Capability) <
> larry.dav...@dxc.com> wrote:
>
>> For that process to work you will have to load a new Standalone program
>> Loader using the new Device address for the PDR volume on the PDVOL =
>>
>> Here is an example of an exec to load the IPL SALIPL file from the MAINT
>> 190 "S" disk
>>
>> MKSAIPL EXEC:
>> /* rexx exec */
>>
>> true  = (1=1)
>> false = \true
>> debug = TRUE
>>
>> /*  */
>> /*  */
>> /* Setup Procedures:*/
>> /*   1 NEED ACCESS TO THE Z/VM 6.4 IPL SALIPL TEXT DECK */
>> /*   2 If this is SSI Environment set to TRUE otherwise FALSE   */
>> /*   3 Is the virtual address the address the RESVOL is linked as?  */
>> /*   4 Is the volid of the RESVOL?  */
>> /*   5 Is the real address of the PDR VOLUME?   */
>> /*  */
>> /*  */
>>
>> ssi  = FALSE /* Set to TRUE when using SSI*/
>> DEV_ADDR = ''/* RESVOL Virtual Address*/
>> VOL_ID   = 'vv'  /* RESVOL Volume Serial Number   */
>> PD_VOL   = ''/* PDR VOLUME Real Address   */
>>
>>/* *** */
>>/* PDNUM is the offset extent for the CF0 PARM disk*/
>>/* PDVOL is the Real address for the PDR Volume*/
>>/* *** */
>>
>> if ssi Then do
>>   Say
>>   Say 'Loading SALIPL text deck for SSI on RESVOL' vol_id 'on' dev_addr
>>   Say
>>   IPL_PARM = 'FN=SYSTEM FT=CONFIG PDNUM=1 PDVOL=' pd_vol end Else do
>>   Say
>>   Say 'Loading SALIPL text deck on RESVOL' vol_id 'on' dev_addr
>>   Say
>>   IPL_PARM = 'FN=SYSTEM FT=CONFIG'
>> end
>>
>> if debug then do
>>salp_opt = 'EXTENT 1 VOLID' vol_id ,
>>   'IPLPARMS' ipl_parm
>>say ' ADDRESS COMMAND SALIPL' dev_addr
>>say '  (' salp_opt
>> end
>> else do
>>salp_opt = 'EXTENT 1 VOLID' vol_id ,
>>   'COMMENTS ? IPLPARMS' ipl_parm
>>
>>queue 'IPL Parameters Options are:  '
>>queue 'CONS= FN=fn FT=ft CLEARPDR REPAIR NOEXITS NOHCD PROMPT'
>>queue 'PDNUM=n PDOFF=offset PDVOL=addr STORE=M/G/T/P/E  '
>>queue
>>
>>ADDRESS COMMAND 'SALIPL' dev_addr '(' salp_opt end
>>
>> Exit
>>
>>
>>
>> Larry Davis
>>
>>
>> -Original Message-
>> From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
>> Davis, Jim [PRI-1PP]
>> Sent: Thursday, August 16, 2018 17:54
>> To: LINUX-390@VM.MARIST.EDU
>> Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd
>>
>> Thanks for the info. I get the following.
>>
>> Current IPL parameters:
>> FN=SYSTEMFT=CONFIGPDNUM=1  PDVOL=A84C
>> CONS=0908
>>
>> The PDVOL points to common volume which contains the SYSTEM CONFIG file.
>>
>> I wonder if I can
>> Change PDVOL to the new address for the common volume.
>> Shutdown
>> Move all six volumes to their new addresses.
>> IPL from new res volume address.
>>
>>
>> -Original Message-
>> From: Linux on 390 Port  On Behalf Of Tom Huegel
>> Sent: Thursday, August 16, 2018 5:36 PM
>> To: LINUX-390@VM.MARIST.EDU
>> Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd
>>
>> Last question Q IPLPARMS
>>
>>
>> On Thu, Aug 16, 2018 at 4:14 PM, Davis, Jim [PRI-1PP] <
>> jim.da...@primerica.com> wrote:
>>
>> > I have been tasked with moving our z/VM and zlinux file system volume
>> > from an old DASD system to a New DASD system.
>> > All of my device numbers / unit addresses will change.
>> >
>> > I have been successful in moving all of the z/linux volumes.
>> >
>> > My problem is how to move the 6 VM volumes since the IPL text has unit
>> > addresses in it.
>> >
>> > In z/vm 5.x I just zapped the 2 addresses in ipl text.
>> >
>> > In z/VM 6.4 the ipl text has all of 6 volume address in text and some
>> > in hex.
>> >
>> > Can I use SALIPL to change these addresses?
>> >
>> > SALIPL was run under the covers when I installed VM6.4; Is there a way
>> > to 

Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Scott Rohling
Good script -- I would use it 'after' the move though - not before..
backout is much easier that way...   make changes on the new dasd - not the
old.

Use SAPL and change PDVOL= to correct address...   'then' run this script
once everything comes up and looks good.   IMHO.

Scott Rohling

On Thu, Aug 16, 2018 at 4:16 PM Davis, Larry (National VM Capability) <
larry.dav...@dxc.com> wrote:

> For that process to work you will have to load a new Standalone program
> Loader using the new Device address for the PDR volume on the PDVOL =
>
> Here is an example of an exec to load the IPL SALIPL file from the MAINT
> 190 "S" disk
>
> MKSAIPL EXEC:
> /* rexx exec */
>
> true  = (1=1)
> false = \true
> debug = TRUE
>
> /*  */
> /*  */
> /* Setup Procedures:*/
> /*   1 NEED ACCESS TO THE Z/VM 6.4 IPL SALIPL TEXT DECK */
> /*   2 If this is SSI Environment set to TRUE otherwise FALSE   */
> /*   3 Is the virtual address the address the RESVOL is linked as?  */
> /*   4 Is the volid of the RESVOL?  */
> /*   5 Is the real address of the PDR VOLUME?   */
> /*  */
> /*  */
>
> ssi  = FALSE /* Set to TRUE when using SSI*/
> DEV_ADDR = ''/* RESVOL Virtual Address*/
> VOL_ID   = 'vv'  /* RESVOL Volume Serial Number   */
> PD_VOL   = ''/* PDR VOLUME Real Address   */
>
>/* *** */
>/* PDNUM is the offset extent for the CF0 PARM disk*/
>/* PDVOL is the Real address for the PDR Volume*/
>/* *** */
>
> if ssi Then do
>   Say
>   Say 'Loading SALIPL text deck for SSI on RESVOL' vol_id 'on' dev_addr
>   Say
>   IPL_PARM = 'FN=SYSTEM FT=CONFIG PDNUM=1 PDVOL=' pd_vol end Else do
>   Say
>   Say 'Loading SALIPL text deck on RESVOL' vol_id 'on' dev_addr
>   Say
>   IPL_PARM = 'FN=SYSTEM FT=CONFIG'
> end
>
> if debug then do
>salp_opt = 'EXTENT 1 VOLID' vol_id ,
>   'IPLPARMS' ipl_parm
>say ' ADDRESS COMMAND SALIPL' dev_addr
>say '  (' salp_opt
> end
> else do
>salp_opt = 'EXTENT 1 VOLID' vol_id ,
>   'COMMENTS ? IPLPARMS' ipl_parm
>
>queue 'IPL Parameters Options are:  '
>queue 'CONS= FN=fn FT=ft CLEARPDR REPAIR NOEXITS NOHCD PROMPT'
>queue 'PDNUM=n PDOFF=offset PDVOL=addr STORE=M/G/T/P/E  '
>queue
>
>ADDRESS COMMAND 'SALIPL' dev_addr '(' salp_opt end
>
> Exit
>
>
>
> Larry Davis
>
>
> -Original Message-
> From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
> Davis, Jim [PRI-1PP]
> Sent: Thursday, August 16, 2018 17:54
> To: LINUX-390@VM.MARIST.EDU
> Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd
>
> Thanks for the info. I get the following.
>
> Current IPL parameters:
> FN=SYSTEMFT=CONFIGPDNUM=1  PDVOL=A84C
> CONS=0908
>
> The PDVOL points to common volume which contains the SYSTEM CONFIG file.
>
> I wonder if I can
> Change PDVOL to the new address for the common volume.
> Shutdown
> Move all six volumes to their new addresses.
> IPL from new res volume address.
>
>
> -Original Message-
> From: Linux on 390 Port  On Behalf Of Tom Huegel
> Sent: Thursday, August 16, 2018 5:36 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd
>
> Last question Q IPLPARMS
>
>
> On Thu, Aug 16, 2018 at 4:14 PM, Davis, Jim [PRI-1PP] <
> jim.da...@primerica.com> wrote:
>
> > I have been tasked with moving our z/VM and zlinux file system volume
> > from an old DASD system to a New DASD system.
> > All of my device numbers / unit addresses will change.
> >
> > I have been successful in moving all of the z/linux volumes.
> >
> > My problem is how to move the 6 VM volumes since the IPL text has unit
> > addresses in it.
> >
> > In z/vm 5.x I just zapped the 2 addresses in ipl text.
> >
> > In z/VM 6.4 the ipl text has all of 6 volume address in text and some
> > in hex.
> >
> > Can I use SALIPL to change these addresses?
> >
> > SALIPL was run under the covers when I installed VM6.4; Is there a way
> > to find out what was passed as parms to SALIPL.
> >
> >
> >
> > James Davis
> > jim.da...@primerica.com
> > 470-564-5061
> > "quando omni flunkus moritati"
> >
> > --
> > For LINUX-390 subscribe / signoff / archive access instructions, send
> > email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> > visit
> > http://www.marist.edu/htbin/wlvindex?LINUX-390
> > 

Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Davis, Larry (National VM Capability)
For that process to work you will have to load a new Standalone program Loader 
using the new Device address for the PDR volume on the PDVOL =

Here is an example of an exec to load the IPL SALIPL file from the MAINT 190 
"S" disk

MKSAIPL EXEC:
/* rexx exec */

true  = (1=1)
false = \true
debug = TRUE

/*  */
/*  */
/* Setup Procedures:*/
/*   1 NEED ACCESS TO THE Z/VM 6.4 IPL SALIPL TEXT DECK */
/*   2 If this is SSI Environment set to TRUE otherwise FALSE   */
/*   3 Is the virtual address the address the RESVOL is linked as?  */
/*   4 Is the volid of the RESVOL?  */
/*   5 Is the real address of the PDR VOLUME?   */
/*  */
/*  */

ssi  = FALSE /* Set to TRUE when using SSI*/
DEV_ADDR = ''/* RESVOL Virtual Address*/
VOL_ID   = 'vv'  /* RESVOL Volume Serial Number   */
PD_VOL   = ''/* PDR VOLUME Real Address   */

   /* *** */
   /* PDNUM is the offset extent for the CF0 PARM disk*/
   /* PDVOL is the Real address for the PDR Volume*/
   /* *** */

if ssi Then do
  Say
  Say 'Loading SALIPL text deck for SSI on RESVOL' vol_id 'on' dev_addr
  Say
  IPL_PARM = 'FN=SYSTEM FT=CONFIG PDNUM=1 PDVOL=' pd_vol end Else do
  Say
  Say 'Loading SALIPL text deck on RESVOL' vol_id 'on' dev_addr
  Say
  IPL_PARM = 'FN=SYSTEM FT=CONFIG'
end

if debug then do
   salp_opt = 'EXTENT 1 VOLID' vol_id ,
  'IPLPARMS' ipl_parm
   say ' ADDRESS COMMAND SALIPL' dev_addr
   say '  (' salp_opt
end
else do
   salp_opt = 'EXTENT 1 VOLID' vol_id ,
  'COMMENTS ? IPLPARMS' ipl_parm

   queue 'IPL Parameters Options are:  '
   queue 'CONS= FN=fn FT=ft CLEARPDR REPAIR NOEXITS NOHCD PROMPT'
   queue 'PDNUM=n PDOFF=offset PDVOL=addr STORE=M/G/T/P/E  '
   queue

   ADDRESS COMMAND 'SALIPL' dev_addr '(' salp_opt end

Exit



Larry Davis


-Original Message-
From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Davis, 
Jim [PRI-1PP]
Sent: Thursday, August 16, 2018 17:54
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd

Thanks for the info. I get the following.

Current IPL parameters:
FN=SYSTEMFT=CONFIGPDNUM=1  PDVOL=A84C
CONS=0908

The PDVOL points to common volume which contains the SYSTEM CONFIG file.

I wonder if I can
Change PDVOL to the new address for the common volume.
Shutdown
Move all six volumes to their new addresses.
IPL from new res volume address.


-Original Message-
From: Linux on 390 Port  On Behalf Of Tom Huegel
Sent: Thursday, August 16, 2018 5:36 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd

Last question Q IPLPARMS


On Thu, Aug 16, 2018 at 4:14 PM, Davis, Jim [PRI-1PP] < 
jim.da...@primerica.com> wrote:

> I have been tasked with moving our z/VM and zlinux file system volume
> from an old DASD system to a New DASD system.
> All of my device numbers / unit addresses will change.
>
> I have been successful in moving all of the z/linux volumes.
>
> My problem is how to move the 6 VM volumes since the IPL text has unit
> addresses in it.
>
> In z/vm 5.x I just zapped the 2 addresses in ipl text.
>
> In z/VM 6.4 the ipl text has all of 6 volume address in text and some
> in hex.
>
> Can I use SALIPL to change these addresses?
>
> SALIPL was run under the covers when I installed VM6.4; Is there a way
> to find out what was passed as parms to SALIPL.
>
>
>
> James Davis
> jim.da...@primerica.com
> 470-564-5061
> "quando omni flunkus moritati"
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions, send
> email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit http://wiki.linuxvm.org/

--
For LINUX-390 subscribe / 

Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Davis, Larry (National VM Capability)
Q IPLPARMS should display what was set in the IPL SALIPL when it was loaded to 
the RESVOL

When you move the VM Volumes as long as the VOLSER's don't change there should 
be no issues unless you are setting the new devices OFFLINE AT IPL  time in 
Your SYSTEM CONFIG file.

For the most part Spool Volumes and Page Volumes are defined in the CP_OWNED 
area and user volumes are set in the USER_VOLUME_INCLUDE or LIST section, both 
use VOLSER's rather than real device addresses



Larry Davis


-Original Message-
From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Davis, 
Jim [PRI-1PP]
Sent: Thursday, August 16, 2018 17:15
To: LINUX-390@VM.MARIST.EDU
Subject: Moving z/vm and zlinux volumes from old dasd to new dasd

I have been tasked with moving our z/VM and zlinux file system volume from an 
old DASD system to a New DASD system.
All of my device numbers / unit addresses will change.

I have been successful in moving all of the z/linux volumes.

My problem is how to move the 6 VM volumes since the IPL text has unit 
addresses in it.

In z/vm 5.x I just zapped the 2 addresses in ipl text.

In z/VM 6.4 the ipl text has all of 6 volume address in text and some in hex.

Can I use SALIPL to change these addresses?

SALIPL was run under the covers when I installed VM6.4; Is there a way to find 
out what was passed as parms to SALIPL.



James Davis
jim.da...@primerica.com
470-564-5061
"quando omni flunkus moritati"

--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit http://wiki.linuxvm.org/


DXC - This is a PRIVATE message - If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to bind 
the Company to any order or other contract unless pursuant to explicit written 
agreement or government initiative expressly permitting the use of e-mail for 
such purpose.

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Alan Altmark

 Just a small warning:  QUERY IPLPARMS shows you the parameters that will be 
used on SHUTDOWN REIPL.
 
 They will typically be the parameters that were in effect at IPL time, but 
they can be changed by SET IPLPARMS.
 
 I recommend updating AUTOLOG1 to stash away the output of QUERY IPLPARMS so 
that you can go back to the original values in case you mess things up.  Been 
there, done that.
 
 Alan Altmark


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Scott Rohling
Yes - give it a parm of either SYSG  (the integrated 3270 console on the
HMC) -- or your main operator console address.   For example - if it is E00
...   Then enter PARM of E00 at the load screen...   then the SAPL screen
will come up there ..if on the normal console - just change PDVOL= ..
if on SYSG or another console address..  change PDVOL= and  add CONS=SYSG
or CONS=E00 to the parm line...

Scott Rohling

On Thu, Aug 16, 2018 at 3:17 PM Davis, Jim [PRI-1PP] <
jim.da...@primerica.com> wrote:

> I know what SALIPL and SAPL are but not SAIPL.
> Is SAIPL just a typo?
>
> When we IPL we never see the SAPL screen where I can override the PDVOL=
>
> The original install resulted in no SAPL screen being displayed.
>
> Is there a way to make this appear when IPLing?
>
> -Original Message-
> From: Linux on 390 Port  On Behalf Of Scott
> Rohling
> Sent: Thursday, August 16, 2018 5:40 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd
>
> CP Query IPL   gives you the parms used...
>
> You can use SAIPL to bring up z/VM the first time on new DASD (just specify
> correct PDVOL=) ..   then run SALIPL on the IPL volume to make the parms
> stick and not need SAIPL next time..
>
> Scott  Rohling
>
> On Thu, Aug 16, 2018 at 2:17 PM Davis, Jim [PRI-1PP] <
> jim.da...@primerica.com> wrote:
>
> > I have been tasked with moving our z/VM and zlinux file system volume
> > from an old DASD system to a New DASD system.
> > All of my device numbers / unit addresses will change.
> >
> > I have been successful in moving all of the z/linux volumes.
> >
> > My problem is how to move the 6 VM volumes since the IPL text has unit
> > addresses in it.
> >
> > In z/vm 5.x I just zapped the 2 addresses in ipl text.
> >
> > In z/VM 6.4 the ipl text has all of 6 volume address in text and some
> > in hex.
> >
> > Can I use SALIPL to change these addresses?
> >
> > SALIPL was run under the covers when I installed VM6.4; Is there a way
> > to find out what was passed as parms to SALIPL.
> >
> >
> >
> > James Davis
> > jim.da...@primerica.com
> > 470-564-5061
> > "quando omni flunkus moritati"
> >
> > --
> > For LINUX-390 subscribe / signoff / archive access instructions, send
> > email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> > visit
> > http://www.marist.edu/htbin/wlvindex?LINUX-390
> > --
> > For more information on Linux on System z, visit
> > http://wiki.linuxvm.org/
> >
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions, send
> email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit http://wiki.linuxvm.org/
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Davis, Jim [PRI-1PP]
I know what SALIPL and SAPL are but not SAIPL.
Is SAIPL just a typo?

When we IPL we never see the SAPL screen where I can override the PDVOL=

The original install resulted in no SAPL screen being displayed.

Is there a way to make this appear when IPLing?

-Original Message-
From: Linux on 390 Port  On Behalf Of Scott Rohling
Sent: Thursday, August 16, 2018 5:40 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd

CP Query IPL   gives you the parms used...

You can use SAIPL to bring up z/VM the first time on new DASD (just specify
correct PDVOL=) ..   then run SALIPL on the IPL volume to make the parms
stick and not need SAIPL next time..

Scott  Rohling

On Thu, Aug 16, 2018 at 2:17 PM Davis, Jim [PRI-1PP] < jim.da...@primerica.com> 
wrote:

> I have been tasked with moving our z/VM and zlinux file system volume 
> from an old DASD system to a New DASD system.
> All of my device numbers / unit addresses will change.
>
> I have been successful in moving all of the z/linux volumes.
>
> My problem is how to move the 6 VM volumes since the IPL text has unit 
> addresses in it.
>
> In z/vm 5.x I just zapped the 2 addresses in ipl text.
>
> In z/VM 6.4 the ipl text has all of 6 volume address in text and some 
> in hex.
>
> Can I use SALIPL to change these addresses?
>
> SALIPL was run under the covers when I installed VM6.4; Is there a way 
> to find out what was passed as parms to SALIPL.
>
>
>
> James Davis
> jim.da...@primerica.com
> 470-564-5061
> "quando omni flunkus moritati"
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions, send 
> email to lists...@vm.marist.edu with the message: INFO LINUX-390 or 
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit 
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit http://wiki.linuxvm.org/

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Fred Bader

I have moved/cloned z/VM 6.4 systems and the only thing related to the new
DASD addresses that I've had to do is run SALIPL against the new IPL volume
and specify the real address of the device with the parm disk as part of
the IPLPARMS text.  For example, if F000 is the real address of the new
z/VM 6.4 IPL volume (640RES), and F004 is the real address of the new
volume with the parm disk containing the system configuration file (SYSTEM
CONFIG), then after attaching F000 to my userid, I issue SALIPL as follows:

SALIPL F000 (volid 640RES extent 1 minivol MNTCF1 iplparms fn=SYSTEM
ft=CONFIG pdnum=1 pdvol=F004

To determine the IPL parameters of the existing system, use the Q IPLPARMS
command.

Regards, Fred





From:   "Davis, Jim [PRI-1PP]" 
To: LINUX-390@VM.MARIST.EDU
Date:   08/16/2018 05:16 PM
Subject:Moving z/vm and zlinux volumes from old dasd to new dasd
Sent by:Linux on 390 Port 



I have been tasked with moving our z/VM and zlinux file system volume from
an old DASD system to a New DASD system.
All of my device numbers / unit addresses will change.

I have been successful in moving all of the z/linux volumes.

My problem is how to move the 6 VM volumes since the IPL text has unit
addresses in it.

In z/vm 5.x I just zapped the 2 addresses in ipl text.

In z/VM 6.4 the ipl text has all of 6 volume address in text and some in
hex.

Can I use SALIPL to change these addresses?

SALIPL was run under the covers when I installed VM6.4; Is there a way to
find out what was passed as parms to SALIPL.



James Davis
jim.da...@primerica.com
470-564-5061
"quando omni flunkus moritati"

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
visit
http://www.marist.edu/htbin/wlvindex?LINUX-390

--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/





--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/



Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Davis, Jim [PRI-1PP]
Thanks for the info. I get the following.

Current IPL parameters:
FN=SYSTEMFT=CONFIGPDNUM=1  PDVOL=A84C
CONS=0908

The PDVOL points to common volume which contains the SYSTEM CONFIG file.

I wonder if I can 
Change PDVOL to the new address for the common volume.
Shutdown 
Move all six volumes to their new addresses.
IPL from new res volume address.


-Original Message-
From: Linux on 390 Port  On Behalf Of Tom Huegel
Sent: Thursday, August 16, 2018 5:36 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Moving z/vm and zlinux volumes from old dasd to new dasd

Last question Q IPLPARMS


On Thu, Aug 16, 2018 at 4:14 PM, Davis, Jim [PRI-1PP] < 
jim.da...@primerica.com> wrote:

> I have been tasked with moving our z/VM and zlinux file system volume 
> from an old DASD system to a New DASD system.
> All of my device numbers / unit addresses will change.
>
> I have been successful in moving all of the z/linux volumes.
>
> My problem is how to move the 6 VM volumes since the IPL text has unit 
> addresses in it.
>
> In z/vm 5.x I just zapped the 2 addresses in ipl text.
>
> In z/VM 6.4 the ipl text has all of 6 volume address in text and some 
> in hex.
>
> Can I use SALIPL to change these addresses?
>
> SALIPL was run under the covers when I installed VM6.4; Is there a way 
> to find out what was passed as parms to SALIPL.
>
>
>
> James Davis
> jim.da...@primerica.com
> 470-564-5061
> "quando omni flunkus moritati"
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions, send 
> email to lists...@vm.marist.edu with the message: INFO LINUX-390 or 
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit 
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit http://wiki.linuxvm.org/

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Scott Rohling
CP Query IPL   gives you the parms used...

You can use SAIPL to bring up z/VM the first time on new DASD (just specify
correct PDVOL=) ..   then run SALIPL on the IPL volume to make the parms
stick and not need SAIPL next time..

Scott  Rohling

On Thu, Aug 16, 2018 at 2:17 PM Davis, Jim [PRI-1PP] <
jim.da...@primerica.com> wrote:

> I have been tasked with moving our z/VM and zlinux file system volume from
> an old DASD system to a New DASD system.
> All of my device numbers / unit addresses will change.
>
> I have been successful in moving all of the z/linux volumes.
>
> My problem is how to move the 6 VM volumes since the IPL text has unit
> addresses in it.
>
> In z/vm 5.x I just zapped the 2 addresses in ipl text.
>
> In z/VM 6.4 the ipl text has all of 6 volume address in text and some in
> hex.
>
> Can I use SALIPL to change these addresses?
>
> SALIPL was run under the covers when I installed VM6.4; Is there a way to
> find out what was passed as parms to SALIPL.
>
>
>
> James Davis
> jim.da...@primerica.com
> 470-564-5061
> "quando omni flunkus moritati"
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Tom Huegel
Last question Q IPLPARMS


On Thu, Aug 16, 2018 at 4:14 PM, Davis, Jim [PRI-1PP] <
jim.da...@primerica.com> wrote:

> I have been tasked with moving our z/VM and zlinux file system volume from
> an old DASD system to a New DASD system.
> All of my device numbers / unit addresses will change.
>
> I have been successful in moving all of the z/linux volumes.
>
> My problem is how to move the 6 VM volumes since the IPL text has unit
> addresses in it.
>
> In z/vm 5.x I just zapped the 2 addresses in ipl text.
>
> In z/VM 6.4 the ipl text has all of 6 volume address in text and some in
> hex.
>
> Can I use SALIPL to change these addresses?
>
> SALIPL was run under the covers when I installed VM6.4; Is there a way to
> find out what was passed as parms to SALIPL.
>
>
>
> James Davis
> jim.da...@primerica.com
> 470-564-5061
> "quando omni flunkus moritati"
>
> --
> For LINUX-390 subscribe / signoff / archive access instructions,
> send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or
> visit
> http://www.marist.edu/htbin/wlvindex?LINUX-390
> --
> For more information on Linux on System z, visit
> http://wiki.linuxvm.org/
>

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Moving z/vm and zlinux volumes from old dasd to new dasd

2018-08-16 Thread Davis, Jim [PRI-1PP]
I have been tasked with moving our z/VM and zlinux file system volume from an 
old DASD system to a New DASD system.
All of my device numbers / unit addresses will change.

I have been successful in moving all of the z/linux volumes.

My problem is how to move the 6 VM volumes since the IPL text has unit 
addresses in it.

In z/vm 5.x I just zapped the 2 addresses in ipl text.

In z/VM 6.4 the ipl text has all of 6 volume address in text and some in hex.

Can I use SALIPL to change these addresses?

SALIPL was run under the covers when I installed VM6.4; Is there a way to find 
out what was passed as parms to SALIPL.



James Davis
jim.da...@primerica.com
470-564-5061
"quando omni flunkus moritati"

--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/


Re: Advice on indexing PDFs

2018-08-16 Thread Frank M. Ramaekers
Ahhh yes, I had to disable the epel repothanks!

Frank M. Ramaekers Jr.

-Original Message-
From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Neale 
Ferguson
Sent: Wednesday, August 15, 2018 3:37 PM
To: LINUX-390@VM.MARIST.EDU
Subject: Re: Advice on indexing PDFs

For EPEL: Try a yum clean all followed by rm -rf /var/cache/yum/* then try the 
install. I did it two days ago and all went well.

Or did you just download the single RPM from the repo? Instead add this to 
/etc/yum.repos.d as epel.repo:

[epel]
name=Extra Packages for Enterprise Linux 7 - $basearch 
mirrorlist=https://urldefense.proofpoint.com/v2/url?u=http-3A__mirrors.sinenomine.net_epel-3Frepo-3Depel-2D7-26arch-3D-24basearch=DwIGaQ=laxeQK7vPmHfouIIPNyCfbQd49eK3u00U8Jdo0RFvts=EOaM1MkMLG24_TOy4m7EdDoX0CP9-c0YJ2kTdeagcqQ=My3NupzTsmRZ7yTw2hmi8OwcvSsagetqf-FVuYbast4=bO0ZmJQ7pIxz4VQo1xKUFdKfRGsbraBWFfpo5PMqex8=
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ClefOS-7
gpgcheck=1

And then use yum --enablerepo=epel install recoll

On 8/15/18, 15:33, "Linux on 390 Port on behalf of Frank M. Ramaekers" 
 wrote:

When I try,  I get:

# yum localinstall recoll-1.23.1-2.el7.s390x.rpm
...
Error: Package: recoll-1.23.1-2.el7.s390x (/recoll-1.23.1-2.el7.s390x)
   Requires: libQt5WebKitWidgets.so.5()(64bit)
Error: Package: recoll-1.23.1-2.el7.s390x (/recoll-1.23.1-2.el7.s390x)
   Requires: libQt5WebKitWidgets.so.5(Qt_5)(64bit)
Error: Package: recoll-1.23.1-2.el7.s390x (/recoll-1.23.1-2.el7.s390x)
   Requires: libQt5WebKit.so.5()(64bit)
Error: Package: recoll-1.23.1-2.el7.s390x (/recoll-1.23.1-2.el7.s390x)
   Requires: libxapian.so.22()(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
 


--
For LINUX-390 subscribe / signoff / archive access instructions, send email to 
lists...@vm.marist.edu with the message: INFO LINUX-390 or visit 
https://urldefense.proofpoint.com/v2/url?u=http-3A__www.marist.edu_htbin_wlvindex-3FLINUX-2D390=DwIGaQ=laxeQK7vPmHfouIIPNyCfbQd49eK3u00U8Jdo0RFvts=EOaM1MkMLG24_TOy4m7EdDoX0CP9-c0YJ2kTdeagcqQ=My3NupzTsmRZ7yTw2hmi8OwcvSsagetqf-FVuYbast4=qM3gRgteNsS65NKo-59_heMjk6BR3-LjlbsCVroAXtY=
--
For more information on Linux on System z, visit 
https://urldefense.proofpoint.com/v2/url?u=http-3A__wiki.linuxvm.org_=DwIGaQ=laxeQK7vPmHfouIIPNyCfbQd49eK3u00U8Jdo0RFvts=EOaM1MkMLG24_TOy4m7EdDoX0CP9-c0YJ2kTdeagcqQ=My3NupzTsmRZ7yTw2hmi8OwcvSsagetqf-FVuYbast4=2ap0xf6SIFW2zsb5VT6ljYfCc-ab8mvkQQIXu7psru4=

--
This message contains information which is privileged and confidential and is 
solely for the use of the intended recipient. If you are not the intended 
recipient, be aware that any review, disclosure, copying, distribution, or use 
of the contents of this message is strictly prohibited. If you have received 
this in error, please destroy it immediately and notify us at 
privacy...@torchmarkcorp.com.


--
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
--
For more information on Linux on System z, visit
http://wiki.linuxvm.org/