The profile is simply:

USER LNXADMIN xxxxxxxx 1G 2G BDEG
 INCLUDE LNXPDFLT
 OPTION LNKNOPAS
 MDISK 0100 3390 00001 10016 VMFF85 MR LNX4VM LNX4VM LNX4VM
 MDISK 0200 3390 00001 10016 VMFF86 MR LNX4VM LNX4VM LNX4VM

where the profile for lnxpdflt is:
PROFILE LNXPDFLT

***COMMON LINUX DIRMPROFILE**************
  COMMAND SET SECUSER OPERATOR
  COMMAND SET RUN ON
  COMMAND TERM HOLD OFF
  COMMAND TERM MORE 001 000
  COMMAND SCRE CPO WHI NON
  COMMAND SCRE STA GRE REV
  COMMAND COUPLE 0600 TO SYSTEM VSW1
  CPU 00 BASE
  DATEFORMAT ISODATE
  IPL CMS PARM FILEPOOL LINUX AUTOCR
  MACHINE ESA 8
  IUCV ALLOW
  OPTION CHPIDV ONE
  CONSOLE 0009 3215 T
  SPOOL 000C 2540 READER *
  SPOOL 000D 2540 PUNCH A
  SPOOL 000E 1403 A
  LINK MAINT 0190 0190 RR
  LINK MAINT 019D 019D RR
  LINK MAINT 019E 019E RR
  LINK TCPMAINT 0592 0592 RR

I have attached the PROFILE EXEC.

Tony Thigpen

Mark Post wrote on 2/25/22 12:14:
On 2/25/22 07:21, Tony Thigpen wrote:
I am helping a customer move his 6.3 system to a new DS8000. We moved
all the dasd using DDR. After the copy, his LNXADMIN (SUSE) user will
not boot.

He says he logs onto the guest and when it asked 'boot linux?', he
replies 'Y' and nothing seems to happen.

I am not really familiar with zLinux. Is there anything that needs to be
done special to make it moveable by DDR?

As Sam said, it looks like his PROFILE EXEC is doing something that
isn't working. What are the contents? What, if any, messages come out
when he tries to do the IPL manually? Is it an MDISK, or a DEDICATEd
volume?

There shouldn't have been anything special needed to move the volume,
other than keeping the same virtual device number the same (maybe), or
the VOLSER the same, etc. What's the USER DIRECT entry for the guest
look like?


Mark Post

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

----------------------------------------------------------------------
For LINUX-390 subscribe / signoff / archive access instructions,
send email to lists...@vm.marist.edu with the message: INFO LINUX-390 or visit
http://www2.marist.edu/htbin/wlvindex?LINUX-390
/* PROFILE EXEC FOR LINUX VIRTUAL SERVERS -- MOD 2015-04-10  PWNOVAK  */
/* BOOTING FROM ECKD DASD OR MINIDISKS                                */
/**********************************************************************/
'CP SP CONS CLOSE'                                /* CLOSE CUR CONLOG */
'CP SP CONS TO LNXADMIN START NAME 'USERID()' CONSLOG'  /* CONSLOG ON */
'CP SET RUN ON'                                   /* RUN DISCONNECTED */
'CP SET PF11 RETRIEVE FORWARD'                    /* RETRIEVE CMD FWD */
'CP SET PF12 RETRIEVE'                            /* RETRIEVE CMD BKW */
'IDENTIFY (ISODATE'                               /* IDENTIFY GUEST   */
'ACCESS 592 T'                                    /* ACCESS TCP TOOLS */
'PIPE CP QUERY' USERID() '| VAR USER'             /* DETERMINE USERID */
 PARSE VALUE USER WITH ID . DSC .                 /* CHECK IF DISCOED */

 IF ( ID <> 'LNXADMIN' ) THEN              /* IF USER IS NOT LNXADMIN */
  DO                                       /* IF USER IS NOT LNXADMIN */
   'ACCESS LNX:LNXADMIN. D'                /* IF USER IS NOT LNXADMIN */
  END                                      /* IF USER IS NOT LNXADMIN */

'SWAPGEN 0300 0524288'             /* MAKE 256M LNXSWAP VDISK AT 0300 */
'SWAPGEN 0301 1048576'             /* MAKE 512M LNXSWAP VDISK AT 0301 */

if id = 'LNXADMIN'
  then 'CP ATT 370-372 to *'



 IF (DSC = 'DSC') THEN                     /* IF USER IS DISCONNECTED */
  DO
   'CP QUERY TERMINAL'
   'CP QUERY CONSOLE'
   'CP SPOOL CONSOLE STOP'                             /* CONSLOG OFF */
   'CP IPL 0100'                                       /* BOOT LINUX  */
  END
 ELSE                                /* USER IS INTERACTIVE SO PROMPT */
  DO
   SAY 'DO YOU WANT TO IPL LINUX FROM MINIDISK 100? Y/N'
   PARSE UPPER PULL ANSWER .
   IF (ANSWER = 'Y') THEN
    DO
     'CP SPOOL CONSOLE STOP'                           /* CONSLOG OFF */
     'CP IPL 0100'                                     /* BOOT LINUX  */
    END
  END


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

Reply via email to