Re: Start DB2 Connect at linux boot

2024-04-17 Thread Tom Huegel
 Last update.
Well it has been a learning experience - thanks to all the teachers.
Here is what I learned.
1) I didn't have to change anything it was all setup.
2) /etc/inittab is not in the picture in SUSE 12
3) All I really had to do was configure and start the DB2 Fault Monitor.

A) Start up the fault monitor daemon:
root@host01: /opt/ibm/db2/V11.1/bin> ./db2fm -i db2inst1 -U

B) Start up the fault monitor service:
root@host01: /opt/ibm/db2/V11.1/bin> ./db2fm -i db2inst1 -u

Note:
The above command may return a non-zero return code:
root@host01: /opt/ibm/db2/V11.1/bin> ./db2fm -i db2inst1 -u
./db2fm return non-zero rc, please see log file
'/opt/ibm/db2/home/db2inst1/sqllib/db2dump/db2diag.log'
This is because the DB2 instance is already started. Stopping the instance
and proceeding to run the same command succeeds.

C) Turn on the fault monitor for the instance:
root@host01: /opt/ibm/db2/V11.1/bin> ./db2fm -i db2inst1 -f on


On Tue, Apr 16, 2024 at 5:10 PM Tom Huegel  wrote:

> I GOT IT!
> I think these two files are the key.
>  cat /etc/inittab
> ca:12345:ctrlaltdel:/sbin/shutdown -h now
> fmc:2345:respawn:/opt/ibm/db2/V11.1/bin/*db2fmcd* #DB2 Fault Monitor
> Coordinator
>
>  cat /etc/systemd/system/db2fmcd.service
> # DB2 fault monitor
> # Starts fmcd
> # Note: any customizations to this file will be lost the next time this is
> updated
>
> [Unit]
> Description=DB2 v11.1.2.2
>
> [Service]
> ExecStart=/opt/ibm/db2/V11.1/bin/*db2fmcd*
> Restart=always
>
> [Install]
> WantedBy=default.target
>
> Thanks EVERYONE
>
>
>
> On Tue, Apr 16, 2024 at 4:06 PM Tom Huegel  wrote:
>
>> It just keeps getting weirder.
>> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
>> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
>> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
>> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
>> [  OK  ] STOPPED DB2 V11.1.2.2."[FAILED] FAILED TO START DB2
>> V11.1.2.2."SEE 'SYSTEMCTL STATUS
>>  DB2FMCD.SERVICE' FOR DETAILS."2024-04-16T15:59:57.737519-05:00 LINUX
>> SYSTEMD[1]: FAILED TO
>>  START DB2 V11.1.2.2."
>>
>>
>>
>>
>> On Tue, Apr 16, 2024 at 2:49 PM Paul Rogers  wrote:
>>
>>> Hi Tom,
>>>
>>> Absolutely no experience, but perhaps it should be something like:
>>>ExecStart=/opt/ibm/db2/V11.1/bin/db2fmcd
>>> based on
>>>
>>>
>>> https://www.ibm.com/support/pages/db2-autostart-not-supported-red-hat-enterprise-linux-version-7
>>> and przytula's post of June 6th, 2017 (#3)
>>>https://ubuntuforums.org/showthread.php?t=2363029
>>>
>>> Good luck!
>>>
>>> Paul
>>>
>>> On Tue, Apr 16, 2024 at 12:55 PM Tom Huegel  wrote:
>>>
>>> >  OK I am getting closer I think.
>>> > EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
>>> > /OPT/IBM/DB2/V11.1/BIN/<=== I think it is telling me something
>>> is
>>> > missing here.
>>> > This is what's the   /etc/systemd/system/db2fmcd.service file .. I
>>> think I
>>> > need a program name to run. Any idea what is missing?
>>> >  ExecStart=/opt/ibm/db2/V11.1/bin/
>>> >
>>> > On Fri, Apr 12, 2024 at 3:45 PM Cortes, Marcy D. <
>>> > marcy.d.cor...@wellsfargo.com> wrote:
>>> >
>>> > > If you can’t undo what you did with the db2fm command (history
>>> command
>>> > > might be your friend), then you can probably edit the file
>>> > > /etc/systemd/system/db2fmcd.service and change it to 11.1
>>> > >
>>> > > I can’t check a real server anymore to tell you for sure because we
>>> no
>>> > > longer have db2 connect running so doing this from memory :)
>>> > >
>>> > > Reboot is easiest, but these may work
>>> > > systemctl stop db2fmcd
>>> > > edit it
>>> > > systemctl daemon-reload
>>> > > systemctl start db2fmcd
>>> > >
>>> > >
>>> > >
>>> > > From: Linux on 390 Port  On Behalf Of Tom
>>> > Huegel
>>> > > Sent: Friday, April 12, 2024 12:04 PM
>>> > > To: LINUX-390@VM.MARIST.EDU
>>> > > Subject: Re: Start DB2 Connect at linux boot
>>> > >
>>> > > Well I think this is progress. It looks like DB2 is attempting to
>>> startup
>>> > > but I have something wrong. Can anyon

Re: Start DB2 Connect at linux boot

2024-04-16 Thread Tom Huegel
I GOT IT!
I think these two files are the key.
 cat /etc/inittab
ca:12345:ctrlaltdel:/sbin/shutdown -h now
fmc:2345:respawn:/opt/ibm/db2/V11.1/bin/*db2fmcd* #DB2 Fault Monitor
Coordinator

 cat /etc/systemd/system/db2fmcd.service
# DB2 fault monitor
# Starts fmcd
# Note: any customizations to this file will be lost the next time this is
updated

[Unit]
Description=DB2 v11.1.2.2

[Service]
ExecStart=/opt/ibm/db2/V11.1/bin/*db2fmcd*
Restart=always

[Install]
WantedBy=default.target

Thanks EVERYONE



On Tue, Apr 16, 2024 at 4:06 PM Tom Huegel  wrote:

> It just keeps getting weirder.
> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
> [  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
> [  OK  ] STOPPED DB2 V11.1.2.2."[FAILED] FAILED TO START DB2
> V11.1.2.2."SEE 'SYSTEMCTL STATUS
>  DB2FMCD.SERVICE' FOR DETAILS."2024-04-16T15:59:57.737519-05:00 LINUX
> SYSTEMD[1]: FAILED TO
>  START DB2 V11.1.2.2."
>
>
>
>
> On Tue, Apr 16, 2024 at 2:49 PM Paul Rogers  wrote:
>
>> Hi Tom,
>>
>> Absolutely no experience, but perhaps it should be something like:
>>ExecStart=/opt/ibm/db2/V11.1/bin/db2fmcd
>> based on
>>
>>
>> https://www.ibm.com/support/pages/db2-autostart-not-supported-red-hat-enterprise-linux-version-7
>> and przytula's post of June 6th, 2017 (#3)
>>https://ubuntuforums.org/showthread.php?t=2363029
>>
>> Good luck!
>>
>> Paul
>>
>> On Tue, Apr 16, 2024 at 12:55 PM Tom Huegel  wrote:
>>
>> >  OK I am getting closer I think.
>> > EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
>> > /OPT/IBM/DB2/V11.1/BIN/<=== I think it is telling me something
>> is
>> > missing here.
>> > This is what's the   /etc/systemd/system/db2fmcd.service file .. I
>> think I
>> > need a program name to run. Any idea what is missing?
>> >  ExecStart=/opt/ibm/db2/V11.1/bin/
>> >
>> > On Fri, Apr 12, 2024 at 3:45 PM Cortes, Marcy D. <
>> > marcy.d.cor...@wellsfargo.com> wrote:
>> >
>> > > If you can’t undo what you did with the db2fm command (history command
>> > > might be your friend), then you can probably edit the file
>> > > /etc/systemd/system/db2fmcd.service and change it to 11.1
>> > >
>> > > I can’t check a real server anymore to tell you for sure because we no
>> > > longer have db2 connect running so doing this from memory :)
>> > >
>> > > Reboot is easiest, but these may work
>> > > systemctl stop db2fmcd
>> > > edit it
>> > > systemctl daemon-reload
>> > > systemctl start db2fmcd
>> > >
>> > >
>> > >
>> > > From: Linux on 390 Port  On Behalf Of Tom
>> > Huegel
>> > > Sent: Friday, April 12, 2024 12:04 PM
>> > > To: LINUX-390@VM.MARIST.EDU
>> > > Subject: Re: Start DB2 Connect at linux boot
>> > >
>> > > Well I think this is progress. It looks like DB2 is attempting to
>> startup
>> > > but I have something wrong. Can anyone interpret these messages? I see
>> > one
>> > > problem at least, but don't know how to fix it. DB2/V10. 5 sb
>> DB2/V11. 1
>> > ..
>> > > . . I was doing some
>> > >
>> > >
>> > >  Well I think this is progress. It looks like DB2 is attempting to
>> > startup
>> > >
>> > > but I have something wrong.
>> > >
>> > > Can anyone interpret these messages?
>> > >
>> > > I see one problem at least, but don't know how to fix it. DB2/V10.5 sb
>> > >
>> > > DB2/V11.1  I was doing some copy/paste from the instructions I
>> think
>> > >
>> > > that is where the V10.5 came from but now I can't get rid of it.
>> > >
>> > >
>> > >
>> > >  STARTING RMC-RESOURCE MONITIORING: 2024-04-12T10:31:53.657749-05:00
>> > LINUX
>> > >
>> > > SYSTEMD[1]: [/ETC/SYSTEMD/SYSTEM/DB2FMCD.SERVICE:9]
>> > >
>> > >EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
>> > >
>> > > /OPT/IBM/*DB2/V10.5*/BIN/"2024-04-12T10:31:53.57841-05:00
>> > >
>> > > LINUX SYSTEMD[1]: DB2
>> > >
>> > >
>> > >
>> > > ---

Re: Start DB2 Connect at linux boot

2024-04-16 Thread Tom Huegel
It just keeps getting weirder.
[  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
[  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
[  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
[  OK  ] STOPPED DB2 V11.1.2.2."[  OK  ] STARTED DB2 V11.1.2.2."
[  OK  ] STOPPED DB2 V11.1.2.2."[FAILED] FAILED TO START DB2 V11.1.2.2."SEE
'SYSTEMCTL STATUS
 DB2FMCD.SERVICE' FOR DETAILS."2024-04-16T15:59:57.737519-05:00 LINUX
SYSTEMD[1]: FAILED TO
 START DB2 V11.1.2.2."




On Tue, Apr 16, 2024 at 2:49 PM Paul Rogers  wrote:

> Hi Tom,
>
> Absolutely no experience, but perhaps it should be something like:
>ExecStart=/opt/ibm/db2/V11.1/bin/db2fmcd
> based on
>
>
> https://www.ibm.com/support/pages/db2-autostart-not-supported-red-hat-enterprise-linux-version-7
> and przytula's post of June 6th, 2017 (#3)
>https://ubuntuforums.org/showthread.php?t=2363029
>
> Good luck!
>
> Paul
>
> On Tue, Apr 16, 2024 at 12:55 PM Tom Huegel  wrote:
>
> >  OK I am getting closer I think.
> > EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
> > /OPT/IBM/DB2/V11.1/BIN/<=== I think it is telling me something is
> > missing here.
> > This is what's the   /etc/systemd/system/db2fmcd.service file .. I think
> I
> > need a program name to run. Any idea what is missing?
> >  ExecStart=/opt/ibm/db2/V11.1/bin/
> >
> > On Fri, Apr 12, 2024 at 3:45 PM Cortes, Marcy D. <
> > marcy.d.cor...@wellsfargo.com> wrote:
> >
> > > If you can’t undo what you did with the db2fm command (history command
> > > might be your friend), then you can probably edit the file
> > > /etc/systemd/system/db2fmcd.service and change it to 11.1
> > >
> > > I can’t check a real server anymore to tell you for sure because we no
> > > longer have db2 connect running so doing this from memory :)
> > >
> > > Reboot is easiest, but these may work
> > > systemctl stop db2fmcd
> > > edit it
> > > systemctl daemon-reload
> > > systemctl start db2fmcd
> > >
> > >
> > >
> > > From: Linux on 390 Port  On Behalf Of Tom
> > Huegel
> > > Sent: Friday, April 12, 2024 12:04 PM
> > > To: LINUX-390@VM.MARIST.EDU
> > > Subject: Re: Start DB2 Connect at linux boot
> > >
> > > Well I think this is progress. It looks like DB2 is attempting to
> startup
> > > but I have something wrong. Can anyone interpret these messages? I see
> > one
> > > problem at least, but don't know how to fix it. DB2/V10. 5 sb DB2/V11.
> 1
> > ..
> > > . . I was doing some
> > >
> > >
> > >  Well I think this is progress. It looks like DB2 is attempting to
> > startup
> > >
> > > but I have something wrong.
> > >
> > > Can anyone interpret these messages?
> > >
> > > I see one problem at least, but don't know how to fix it. DB2/V10.5 sb
> > >
> > > DB2/V11.1  I was doing some copy/paste from the instructions I
> think
> > >
> > > that is where the V10.5 came from but now I can't get rid of it.
> > >
> > >
> > >
> > >  STARTING RMC-RESOURCE MONITIORING: 2024-04-12T10:31:53.657749-05:00
> > LINUX
> > >
> > > SYSTEMD[1]: [/ETC/SYSTEMD/SYSTEM/DB2FMCD.SERVICE:9]
> > >
> > >EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
> > >
> > > /OPT/IBM/*DB2/V10.5*/BIN/"2024-04-12T10:31:53.57841-05:00
> > >
> > > LINUX SYSTEMD[1]: DB2
> > >
> > >
> > >
> > > --
> > > 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
> >
>
> --
> 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


Re: Start DB2 Connect at linux boot

2024-04-16 Thread Tom Huegel
 OK I am getting closer I think.
EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
/OPT/IBM/DB2/V11.1/BIN/<=== I think it is telling me something is
missing here.
This is what's the   /etc/systemd/system/db2fmcd.service file .. I think I
need a program name to run. Any idea what is missing?
 ExecStart=/opt/ibm/db2/V11.1/bin/

On Fri, Apr 12, 2024 at 3:45 PM Cortes, Marcy D. <
marcy.d.cor...@wellsfargo.com> wrote:

> If you can’t undo what you did with the db2fm command (history command
> might be your friend), then you can probably edit the file
> /etc/systemd/system/db2fmcd.service and change it to 11.1
>
> I can’t check a real server anymore to tell you for sure because we no
> longer have db2 connect running so doing this from memory :)
>
> Reboot is easiest, but these may work
> systemctl stop db2fmcd
> edit it
> systemctl daemon-reload
> systemctl start db2fmcd
>
>
>
> From: Linux on 390 Port  On Behalf Of Tom Huegel
> Sent: Friday, April 12, 2024 12:04 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: Re: Start DB2 Connect at linux boot
>
> Well I think this is progress. It looks like DB2 is attempting to startup
> but I have something wrong. Can anyone interpret these messages? I see one
> problem at least, but don't know how to fix it. DB2/V10. 5 sb DB2/V11. 1 ..
> . . I was doing some
>
>
>  Well I think this is progress. It looks like DB2 is attempting to startup
>
> but I have something wrong.
>
> Can anyone interpret these messages?
>
> I see one problem at least, but don't know how to fix it. DB2/V10.5 sb
>
> DB2/V11.1  I was doing some copy/paste from the instructions I think
>
> that is where the V10.5 came from but now I can't get rid of it.
>
>
>
>  STARTING RMC-RESOURCE MONITIORING: 2024-04-12T10:31:53.657749-05:00 LINUX
>
> SYSTEMD[1]: [/ETC/SYSTEMD/SYSTEM/DB2FMCD.SERVICE:9]
>
>EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
>
> /OPT/IBM/*DB2/V10.5*/BIN/"2024-04-12T10:31:53.57841-05:00
>
> LINUX SYSTEMD[1]: DB2
>
>
>
> --
> 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


Fwd: OT DB2 Autostart

2024-04-16 Thread Tom Huegel
X-posted on z/VM list
-- Forwarded message -
From: Tom Huegel 
Date: Fri, Apr 12, 2024 at 11:54 AM
Subject: Re: OT DB2 Autostart
To: The IBM z/VM Operating System 


Well I think this is progress. It looks like DB2 is attempting to startup
but I have something wrong.
Can anyone interpret these messages?
I see one problem at least, but don't know how to fix it. DB2/V10.5 sb
DB2/V11.1  I was doing some copy/paste from the instructions I think
that is where the V10.5 came from but now I can't get rid of it.

 STARTING RMC-RESOURCE MONITIORING: 2024-04-12T10:31:53.657749-05:00 LINUX
SYSTEMD[1]: [/ETC/SYSTEMD/SYSTEM/DB2FMCD.SERVICE:9]
   EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
/OPT/IBM/*DB2/V10.5*/BIN/"2024-04-12T10:31:53.57841-05:00
LINUX SYSTEMD[1]: DB2

On Thu, Apr 11, 2024 at 7:31 AM Tom Huegel  wrote:

> Oh my gosh.. I checked my spam folder and there were the responses from
> 390-LINUX.
> Thanks to everyone that responded.
> I'll give an update with the method that worked for me.
> Tom
>
>
> On Wed, Apr 10, 2024 at 8:50 PM Gregg Levine 
> wrote:
>
>> Hello!
>> Actually Tom H, I just checked my email and saw a series of good
>> responses, including yours Marcy, (I set a filter so that your work
>> email messages are not sent to the mail reader's bitbucket.)
>> -
>> Gregg C Levine gregg.drw...@gmail.com
>> "This signature fought the Time Wars, time and again."
>>
>> On Wed, Apr 10, 2024 at 5:13 PM Tom Huegel  wrote:
>> >
>> > I am very much a LINUX novice.
>> > Yea I asked on 390-linux yesterday but never got a response.
>> > Thanks Rick and Berry I can start with that info.
>> > MARCY that looks like the best solution for me. _ THANKS
>> >
>> > On Wed, Apr 10, 2024 at 3:59 PM marcy cortes 
>> wrote:
>> >>
>> >> Turning on db2 fault monitor should do what you want
>> >>
>> >> https://www.ibm.com/docs/en/db2/11.5?topic=server-db2-fault-monitor
>> >>
>> >>
>> >> Marcy
>> >>
>> >>
>> >> On Wed, Apr 10, 2024 at 1:42 PM Berry van Sleeuwen <
>> berry.vansleeu...@xs4all.nl> wrote:
>> >>>
>> >>> Just add DB2 startup in your startup process. A SYSV init script can
>> be included in SystemD. I guess DB2 has those scripts available, I don't
>> know if current versions also have SystemD style configurations.
>> >>>
>> >>> Indeed I'm not a fan of SystemD, if anything it scattered all startup
>> scripts around in the filesystem, so you cannot see what's started during
>> boot by just looking at one directory (previously /etc/init.d/rc3.d would
>> show what's started in level 3, nowadays I'm still guessing what will be
>> started.)
>> >>>
>> >>> Regards, Berry.
>> >>>
>> >>> Op 10-04-2024 om 22:02 schreef Rick Troth:
>> >>>
>> >>> Not really off-topic since so many of us are using VM to host Linux.
>> But there *is* the LINUX-390 list hosted at Marist.
>> >>>
>> >>> I recommend that you cobble-up a SysV style INIT script.
>> >>> These days, SystemD is the master of all things Linux, but #1 many
>> dislike it and #2 the older method is objectively easier to code.
>> >>>
>> >>> You already know how to bring it up manually, right? (And does it
>> persist? Can you then close your command windows and virtual terminals?)
>> >>> So throw that command (or those commands if there must be more than
>> one) into the "start)" stanza of an INIT script as follows:
>> >>>
>> >>>
>> >>> case $1 in
>> >>> start)
>> >>> ... whatever you need to bring it up ...
>> >>> ;;
>> >>> stop)
>> >>> ... whatever you need to bring it down ...
>> >>> ;;
>> >>> restart) # maybe
>> >>> $0 stop
>> >>> $0 start
>> >>> ;;
>> >>> # other stanzas as needed
>> >>> esac
>> >>>
>> >>>
>> >>> Call this script "db2" and place it into the directory /etc/init.d.
>> (Create that directory if it is missing.)
>> >>>
>> >>> At this point you have two options.
>> >>> If you have an INIT compatibility package installed, you can probably
>> get SystemD to use the script as-is. (Try the 'chkconfig' command.)
>> >>> If 

Re: Start DB2 Connect at linux boot

2024-04-12 Thread Tom Huegel
 Well I think this is progress. It looks like DB2 is attempting to startup
but I have something wrong.
Can anyone interpret these messages?
I see one problem at least, but don't know how to fix it. DB2/V10.5 sb
DB2/V11.1  I was doing some copy/paste from the instructions I think
that is where the V10.5 came from but now I can't get rid of it.

 STARTING RMC-RESOURCE MONITIORING: 2024-04-12T10:31:53.657749-05:00 LINUX
SYSTEMD[1]: [/ETC/SYSTEMD/SYSTEM/DB2FMCD.SERVICE:9]
   EXECUTABLE PATH SPECIFIES A DIRECTORY, IGNORING:
/OPT/IBM/*DB2/V10.5*/BIN/"2024-04-12T10:31:53.57841-05:00
LINUX SYSTEMD[1]: DB2

On Thu, Apr 11, 2024 at 2:00 AM Mario Izaguirre  wrote:

> Hi,
>
> If you use in Linux systemd , Try systemctl enable (service)
>
> If you use older linux versión, review chkconfig command to enable services
> in run level modes.
>
>
> Atentamente,
>
>
>
> Mario Izaguirre
> Barcelona, Spain
>
>
> El El mar, 9 abr 2024 a las 18:35, Tom Huegel 
> escribió:
>
> > I'm a LINUX novice. I need to have DB2 CONNECT autostart at LINUX boot
> > time. How do I do that? LINUX is SUSE.
> >
> > --
> > 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
>

--
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


Start DB2 Connect at linux boot

2024-04-09 Thread Tom Huegel
I'm a LINUX novice. I need to have DB2 CONNECT autostart at LINUX boot
time. How do I do that? LINUX is SUSE.

--
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


Re: Redbooks Rumor

2021-10-29 Thread Tom Huegel
I too have been a long time redbook user and can't imagine what the
internal politics were to kill one of the best resources users had...
Although I have always wondered why BigBlue called them RedBooks instead of
BlueBooks.

On Fri, Oct 29, 2021 at 9:07 AM Henry Schaffer  wrote:

> On Fri, Oct 29, 2021 at 8:39 AM Dave Jones  wrote:
>
> > If true, that would be one of the stupidest things IBM has ever done,
> >
>
>   Hmmm - this could be the start of a new thread. :-)
>
> --henry
>
> P.S. Some may remember the years pre-Gerstner.
>
> imho.
> > DJ
> >
> > ---
> > BEST REGARDS
> >
> > DAVE JONES
> >  Managing Director for zSystems Support, zLinux, and Cloud
> >  ++1 281.578.7544 (Cell)
> >  Web: www.itconline.com
> >  18502 Purdy Ct. Houston, TX  77084  USA
> >
> > On 10.28.2021 7:02 PM, Neale Ferguson wrote:
> > > I am hearing strong rumors that IBM is about to commit the type of
> > > corporate facepalm that is the stuff for future textbooks. Apparently
> > > Redbooks are no longer going to be a thing and the organization
> > > disbanded. If there’s one thing that has differentiated IBM in the
> > > mainframe space has been the quality of its documentation and, in
> > > particular, the type of HOW-TO information contained within Redbooks
> > > and Redpieces. These documents turn a “that’d be nice to do” into a
> > > proof-of-concept and finally into production. In doing so, they must
> > > be responsible for millions or billions of dollar in revenue to IBM.
> > >
> > > Many of the topics of Redbooks cover are complex and even
> > > intimidating. They provide a step-by-step approach to learning and
> > > implementing using a group of people actually doing what they’re
> > > writing about. This is invaluable.
> > >
> > > I hope these rumors are untrue but if not I think we should all be
> > > shouting from the roof until someone with some sense realizes how
> > > shortsighted this decision is.
> > >
> > > Neale
> > >
> > >
> > > --
> > > 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
> >
>
> --
> 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


KVM question.

2020-06-30 Thread Tom Huegel
This has probably been discussed quite a bit but I wanted to ask for some
real user feedback.

I have a customer that is interested a POC of z/VSE zLINUX VTAPE.
Unfortunately they do now have z/VM so the zLINUX would have to be in an
LPAR. So the question is 'do I gain/lose anything using KVM as the
hypervisor in the zLINUX LPAR?'.

Thanks
Tom

--
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


Re: zLINUX and z/VSE

2020-06-25 Thread Tom Huegel
Excellent Timothy, that's what I was looking for.

Thank you

Tom


On Thu, Jun 25, 2020 at 1:52 AM Timothy Sipples  wrote:

> More ideas in no particular order:
>
> * MQ queue managers working in conjunction with the MQ Client for z/VSE
> (no charge/"as is").
>
> * The VTAPE server is a good idea, but that can be even further extended
> if you place the IBM Spectrum Protect server on Linux on Z. VTAPE can then
> feed into Spectrum Protect.
>
> * The IBM z14 supports Secure Service Containers with Feature Code 0104,
> so it's possible to have highly secured, complementary container image
> runtimes via IBM Hyper Protect Virtual Servers.
>
> * z/VSE supports LDAP-based authentication. One option is to use z/VM's
> LDAP server, or it's possible to run a LDAP server on Linux on Z, such as
> OpenLDAP.
>
> * DevOps-related built tools can run on Linux on Z, for automated and
> coordinated deployments even into z/VSE.
>
> * IT service management servers of certain kinds (beyond the e-mail
> alerting mentioned, which is a good one) that are managing and monitoring
> z/VSE-hosted services.
>
> * Db2 was mentioned, but it's also possible to redirect VSAM access to a
> Linux on Z-hosted file system or database. All of these databases and data
> stores can then be encrypted, and the encryption/decryption performance on
> an IBM z14 machine is superb.
>
> * Encryption key management, for example IBM Security Key Lifecycle
> Manager for Linux on Z in support of storage device encryption (disk,
> virtual tape, tape) and other security requirements.
>
> * If you're running IBM's CICS Transaction Gateway then Linux on Z is the
> second best place to run it. (First best is z/OS.)
>
> * If you're still running any SNA gateway functions elsewhere then IBM
> Communications Server for Linux on Z could be a better option.
>
> * Dignus's compilers run very well on Linux on Z and also support z/VSE
> and z/VM CMS.
>
> * You can use Linux on Z in support of administrative and operational
> tasks. For example, you can serve z/VSE and z/VM documentation from Linux.
> You can run issue trackers, project managers, automated service mailboxes,
> and other tools to organize tasks.
>
> - - - - - - - - - -
> Timothy Sipples
> I.T. Architect Executive
> Digital Asset & Other Industry Solutions
> IBM Z & LinuxONE
> - - - - - - - - - -
> E-Mail: sipp...@sg.ibm.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://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


Re: zLINUX and z/VSE

2020-06-24 Thread Tom Huegel
Thanks David - Some good ideas here.

On Wed, Jun 24, 2020 at 3:37 PM David Boyes  wrote:

> >I have a customer that recently installed a new z/14.
>
> >They are a relatively small shop, they currently run z/VM and a couple of
> z/VSE  guests.
>
> >The z/14 has an IFL.
>
> >The manager asked me 'what can we do with that IFL?'
>
>
>
>   *   Run NJE software on Linux and use it to drive printing for VSE to a
> wide range of printers (Postscript, PCL, desktop, print by email
> attachment, PDF generation and authentication/verification of source)
>   *   DB2 offload
>   *   Utility functions like zipping up downloads w/o using your standard
> engine cycles.
>   *   Web based display of VSE output instead of hardcopy printing
>   *   Automated insertion of VSE output into document management systems
> for archival and review
>   *   Self-service pw reset and retrieval (with a little coding)
>   *   3270 emulator delivery in browser
>   *   VPN access to VSE and your general network
>   *   Pager support for VSE events
>   *   Email selected VSE events from log files.
>   *   Automated accessibility testing and monitoring for VSE-based
> services (health checks)
>   *   ….
>
>
>
> --
> 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


zLINUX and z/VSE

2020-06-24 Thread Tom Huegel
I don't know if this is really a question or just a thought.

I have a customer that recently installed a new z/14.
They are a relatively small shop, they currently run z/VM and a couple of
z/VSE guests.
The z/14 has an IFL.

The manager asked me 'what can we do with that IFL?'
I thought I'd ask here if anyone was using z/LINUX guests to support z/VSE
in some way. If so, what are you doing?

I'm just looking for ideas, I don't have an immediate problem that I am
trying to solve.

Thanks,
Tom

--
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


SUSE z/VM upgrade compatibility?

2020-06-11 Thread Tom Huegel
I have a customer that is running SUSE 11.3 guest under z/VM 6.4.
We want to upgrade them to z/VM 7.1.

Are there any compatibility issues?

Thanks
Tom

--
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


Re: zLINUX end user provisioning

2019-12-11 Thread Tom Huegel
In the past (z/VM 5.4) I setup XCAT to do LINUX provisioning .. it was a
bit of a struggle to get it working but it was free and once I got it going
it worked well enough for us.
z/VM 6.4 is different .. I haven't done anything with it.

On Wed, Dec 11, 2019 at 11:39 AM James Vincent 
wrote:

> I did see the "no budget for buying" but I have a shameless product plug.
> There is a very affordable, easy to use and vendor-supported product
> available called zPRO from Velocity Software that will clone (you get an
> exact copy), clone and personalize (exact copy with new network info, etc)
> or kickstart (brand new build) Linux servers on z/VM. It has system
> administration of the servers within a single LPAR, SSI cluster or across
> your Enterprise and can easily be customized to fit your needs.
>
> If you want to know more, let me know!
>
> -- *James Vincent*
> *-- Velocity Software, Inc.*
>
> --
> 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


Re: zLINUX end user provisioning

2019-12-11 Thread Tom Huegel
In the past (z/VM 5.4) I setup XCAT to do LINUX provisioning .. it was a
bit of a struggle to get it working but it was free and once I got it going
it worked well enough for us.
z/VM 6.4 is different .. I haven't done anything with it.

On Wed, Dec 11, 2019 at 11:04 AM Alan Altmark 
wrote:

> On Wednesday, 12/11/2019 at 04:18 GMT, "Hamilton, Robert"
>  wrote:
> > I'm interested in this too. I am following the read-only root
> documentation,
> > which is starting to show its age a little (RedPaper redp4322 is good,
> but
> > copyright 2008), but still has good stuff about gold instances,
> maintenance and
> > cloning.
> > The other documents I have are the workbooks from some VM and Linux
> > installation classes I've taken, but a lot of the preparation stuff is
> skipped
> > over.
> >
> > like, where and how to put an ISO. Nothing I've found in any cookbook
> says how
> > it was done, or what tools I can use to manage or unpack an ISO. BFS?
> OMVS? RPI?
> >
> > I'm just interested in the latest doc. I'm trying to install ClefOS and
> manage
> > it as cleanly as possible.
>
> Mike and I are in agreement about read-only root:  Don't do it.
> Intellectually appealing, but impractical.  It's good for a ysprog to play
> around with such things to see what's *possible* with the available tech,
> but just because a thing CAN be done doesn't mean it SHOULD be done.
>
> When we start to aggressively push process-changing Z tech into the Linux
> admin world, it creates a rift.  The x86 Linux admins wash their hands of
> Z, leaving it to a sysprog who isn't part of the Linux admin team to do
> Linux administration.  And the sysprog is now left with another job and no
> pay increase for doing it.  You don't get invited to the Linux admin
> parties and you're not part of strategy discussions.  You get left behind
> and sand gets kicked in your face.  You get exasperated eyerolls and the
> occasional "OK, Boomer."
>
> The real learning moment is when you simply ask your Linux admins, "How do
> you install new Linux servers in your virtualized environments?"  Based on
> that answer, you figure out how Z can fit into that model.  Just keep in
> mind that better tech isn't always "best".  By all means, ask them if
>  would be of value to them, but be prepared to accept
> "No" as an answer, no matter how much inherent mainframe coolness is
> there.
>
> Alan Altmark
>
> Senior Managing z/VM and Linux Consultant
> IBM Systems Lab Services
> IBM Z Delivery Practice
> ibm.com/systems/services/labservices
> office: 607.429.3323
> mobile; 607.321.7556
> alan_altm...@us.ibm.com
> IBM Endicott
>
>
> --
> 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


Re: Why Linux Developers Should Reconsider IBM Mainframes - Linux.com

2019-10-14 Thread Tom Huegel
I used to have Ford Galaxy "XL500" I liked that name. The car not so much.

On Mon, Oct 14, 2019 at 1:13 PM Alan Altmark 
wrote:

> On Monday, 10/14/2019 at 04:57 GMT, Michael MacIsaac 
>
> wrote:
> > Shoulda been 's390z'. IIRC it was decided less than a year before the
> > mainframe got rebranded to 'z'.
>
> Think of s390x and "s390 with extensions", a la 370/XA.  The external
> marketing term "z/Architecture" was very late.  Based on the internal
> technical name of the architecture, I would suggest just taking the "x"
> and running with it.
>
> Personally, I think they should have added 30 more degrees (360+10=370,
> 370+20=390, 390+30=420) and had S/420, but that's weird and too easily
> confused with AS/400.  So add 110 degrees and make it S/500?  Eeew.  I
> know, right?  Gotta have the '3'?  So maybe just add 1 and have S/391.
> Drats.  Can't have an odd number, so S/392.  Eeew**2.   No wonder they
> called it "z/Architecture".  Why number it when you can name it?
>
> Alan Altmark
>
> Senior Managing z/VM and Linux Consultant
> IBM Systems Lab Services
> IBM Z Delivery Practice
> ibm.com/systems/services/labservices
> office: 607.429.3323
> mobile; 607.321.7556
> alan_altm...@us.ibm.com
> IBM Endicott
>
>
> --
> 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


Re: Xymon

2019-01-23 Thread Tom Huegel
Thanks Martha. I have a customer (z/VM z/VSE) that does not have any tools
and are not willing to purchase any, yet they want me to monitor their
system. I am exploring options.

On Wed, Jan 23, 2019 at 2:40 PM Martha McConaghy <
martha.mccona...@marist.edu> wrote:

> SLES 12 on z/VM.  Should not matter to the clients, though.  We monitor
> z/OS, z/VM, hundreds of zLinux and hundreds of ESX based Linux/Windows.
> Also monitor all network equipment.
>
> Martha
>
> On 1/23/2019 3:29 PM, Tom Huegel wrote:
> > Martha, What platform do you run Xymon server on? Thanks - Tom
> >
> > On Wed, Jan 23, 2019 at 2:27 PM Martha McConaghy <
> > martha.mccona...@marist.edu> wrote:
> >
> >> We use Xymon to monitor all of our servers, regardless of platform.  I
> >> have not done VSE as we don't have it.   However, there is a client that
> >> works on z/OS, which we use a lot.  It probably can be modified to work
> >> on VSE.  I think Rich Smrcina wrote it.
> >>
> >> Martha
> >>
> >> On 1/23/2019 3:15 PM, Tom Huegel wrote:
> >>> Just wondering if anyone has used Xymon in z/LINUX to monitor other
> OS's
> >> ie
> >>> z/VSE?
> >>>
> >>> --
> >>> 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
> >> --
> >> Martha McConaghy
> >> Marist: System Architect/Technical Lead
> >> SHARE: Vice President
> >> Marist College IT
> >> Poughkeepsie, NY 12601
> >>
> >> --
> >> 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 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
>
> --
> Martha McConaghy
> Marist: System Architect/Technical Lead
> SHARE: Vice President
> Marist College IT
> Poughkeepsie, NY 12601
>
> --
> 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 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: Xymon

2019-01-23 Thread Tom Huegel
Martha, What platform do you run Xymon server on? Thanks - Tom

On Wed, Jan 23, 2019 at 2:27 PM Martha McConaghy <
martha.mccona...@marist.edu> wrote:

> We use Xymon to monitor all of our servers, regardless of platform.  I
> have not done VSE as we don't have it.   However, there is a client that
> works on z/OS, which we use a lot.  It probably can be modified to work
> on VSE.  I think Rich Smrcina wrote it.
>
> Martha
>
> On 1/23/2019 3:15 PM, Tom Huegel wrote:
> > Just wondering if anyone has used Xymon in z/LINUX to monitor other OS's
> ie
> > z/VSE?
> >
> > --
> > 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
>
> --
> Martha McConaghy
> Marist: System Architect/Technical Lead
> SHARE: Vice President
> Marist College IT
> Poughkeepsie, NY 12601
>
> --
> 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 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


Xymon

2019-01-23 Thread Tom Huegel
Just wondering if anyone has used Xymon in z/LINUX to monitor other OS's ie
z/VSE?

--
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 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/


Re: The Mainframe vs. the Server Farm: A Comparison

2017-05-25 Thread Tom Huegel
Don't forget to consider the mainframe has a much smaller enironmental
footprint that say 500 COTS.
The cost savings in power comsumption, air conditioning, and floor space
can be huge.

On Thu, May 25, 2017 at 10:21 AM, Willemina Konynenberg  wrote:

> But according to the datasheets, upgrading, say, an H06 to an H13
> "requires planned down time", so if you started small and then want to
> grow, the only feasible (non-down-time) upgrade path is to buy a 2nd
> mainframe, which, as you point out "won't scale painlessly".
>
>
> With a COTS based system, you work with a cluster configuration from the
> start (without requiring additional licenses), and have a rather more
> granular and disruption-free upgrade path.
> And because it is designed from the ground up as a cluster, it is
> designed to be maintainable WHILE WORKING.  Replacing any hardware
> component of the cluster (ECC memory, CPU, I/O board, main board,
> network component, rack, ...) can be done while the system is running.
>
> So there isn't really any *functional* advantage to using a mainframe.
> The question is whether you want to be running a cluster of, say, 2 - 5
> mainframes, or, say, 10 - 500 COTS boxen.  I.e. "what do you want to
> spend your money on".
>
> And no, you should not then have a bunch of sysadmins running around
> manually managing those 500 COTS boxen.  That's supposed to be automated...
>
>
> WFK
>
> On 05/25/17 16:22, John Campbell wrote:
> > As I recall from Appendix A of the "Linux for S/390" redbook, the S/390
> > (and, likely, zSeries) is designed to be maintainable WHILE WORKING.
> >
> > The multi-dimensional ECC memory allows a memory card to be replaced
> WHILE
> > the system is running.  Likewise, power supplies the CPs.
> >
> > I have to agree that the "second" zSeries box won't scale painlessly;
> The
> > work to load balance would NOT be fun (and the second box has its own
> > issues w/r/t the management team, too).
> >
> > I recall, when dealing with the idea of putting an S/390 into a Universal
> > Server Farm in Secaucus, NJ (I had some fun helping define the various
> > networks as this predated the "hyperchannel" within the BFI ("Big Iron")
> as
> > part of this USF integration) when it was killed for non-technical
> reasons.
> >
> > -soup
> >
> > On Thu, May 25, 2017 at 8:41 AM, Philipp Kern  wrote:
> >
> >> On 24.05.2017 00:03, John Campbell wrote:
> >>> Cool...
> >>>
> >>> Though the real key is that the mainframe is designed for something at
> or
> >>> beyond five 9s (99.999%) uptime.
> >>>
> >>> [HUMOR]
> >>> Heard from a Tandem guy:  "Your application, as critical as it is, is
> on
> >> a
> >>> nine 5s (55.555%) platform."
> >>> [/HUMOR]
> >>
> >> Mostly you trade complexity in hardware with complexity in software.
> >> Mainframes do not scale limitless either, so you trade being able to
> >> grow your service by adding hardware with doing it within the boundaries
> >> of a sysplex.
> >>
> >> Your first statement is also imprecise. It's designed for five 9s
> >> excluding scheduled downtime. If you use the fact that hardware is
> >> unrealiable (after subtracting your grossly overstated unreliability) to
> >> your advantage, you end up with a system where any component can fail
> >> and it doesn't matter. You win.
> >>
> >> Again, it then comes down to the trade-off question if you're willing to
> >> pay for the smart software and the smart brains to maintain it rather
> >> than paying IBM to provide service for the mainframe.
> >>
> >> Kind regards
> >> Philipp Kern
> >>
> >> --
> >> 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/
> >>
> >
> >
> >
> > --
> > John R. Campbell Speaker to Machines  souperb at gmail
> dot
> > com
> > MacOS X proved it was easier to make Unix user-friendly than to fix
> Windows
> > "It doesn't matter how well-crafted a system is to eliminate errors;
> > Regardless
> >  of any and all checks and balances in place, all systems will fail
> because,
> >  somewhere, there is meat in the loop." - me
> >
> > --
> > 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 

Re: Killer penguins?!

2017-02-20 Thread Tom Huegel
In her dream was she dressed like a window?

On Wed, Feb 15, 2017 at 1:05 PM, Dave Jones  wrote:

> I think the more immediate question would be what did she eat last night
> before going to bed? That should probably be avoided in the future
>
> DJ
>
>
> On 02/15/2017 12:31 PM, Phil Smith III wrote:
> > My wife reports that last night she dreamed that she was in Australia and
> > was attacked by thousands of penguins. I asked if they were talking, and
> she
> > said no, they were silent-so not just killer penguins, *NINJA* killer
> > penguins!!!
> >
> >
> >
> > Is there a support group for this?
> >
> >
> >
> >
> > --
> > 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/
>
> --
> ITC-email-sig
>
> *David Jones **|**Managing Director for zSystems Services **|**z/VM,
> Linux, and Cloud
> 703.237.7370 (Office) **|**281.578.7544 (Cell)*
>
> *Information Technology Company *
>
> --
> 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: UBUNTU on HERCULES

2016-06-24 Thread Tom Huegel
Thanks Mark I'll give that a try when I get the chance.
Also I was looking at Hercules 4.0 and there is a new parm 'ARCHLVL' that
is a replacement for ARCHMODE and has more options for setting the machine
architecture bits. The only binaries are for windows (I don't have a
windows machine) but maybe I can following the instructions and compile the
source for LINUX.
I probably won't get back to it until next week.

On Fri, Jun 24, 2016 at 10:12 AM, Mark Post <mp...@suse.com> wrote:

> >>> On 6/24/2016 at 07:33 AM, Tom Huegel <tehue...@gmail.com> wrote:
> > It looks like this is not a totally new problem. I googled STFLE and had
> > several hits the problem showed up in 2009 concerning z9-z10 machines.
>
> No, it's not new at all.  I played around with Hercules last night, and
> figured out that in addition to using 3.12, I needed the following added to
> my hercules.cnf file:
> ARCHMODE  z/Arch
> MODPATH /usr/lib64/hercules/
> LDMOD dyncrypt
>
> After that I was able to boot SLES12 SP1 without getting the "more recent
> processor" message and abend.  For whatever reason, I also had dyninst also
> on the LDMOD statement, but that didn't seem necessary for things to work.
>
>
> 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://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: UBUNTU on HERCULES

2016-06-24 Thread Tom Huegel
It looks like this is not a totally new problem. I googled STFLE and had
several hits the problem showed up in 2009 concerning z9-z10 machines.
Here is the link if anyone cares to read it. It is informative although not
conclusive.
 http://tech-insider.org/mainframes/research/2009/1209.html


On Thu, Jun 23, 2016 at 8:44 PM, Alan Altmark <alan_altm...@us.ibm.com>
wrote:

> On Thursday, 06/23/2016 at 10:09 GMT, Tom Huegel <tehue...@gmail.com>
> wrote:
> > I'm telling Hercules it is s z13 (2964 N30) but I don't know that
> Hercules
> > does anything with that other than reflect it in the STSI instruction...
> > How does UBUNTU determine the hardware level?
>
> Did my post from earlier today not get re-distributed?
> --
> To be clear, the checks are not based on a machine type or model, per se.
> Rather, the OS is checking for the availability of needed instructions,
> service processor functionality, and I/O subsystem capability
> (collectively called 'facilities').  So you could change the CPU ID to
> report a zEC12, for example, but unless the various facilities the OS
> wants are available, you will still get BADCCC.
>
> I.e. a zEC12 GA2 machine will have more facilities available than a GA1
> machine, but the machine type and model remains unchanged.
>
> To see how instruction behavior is assessed, look at the STORE FACILITIES
> LIST EXTENDED (STFLE) instruction.
> 
>
> The host cannot use CPU type-model information to determine functional
> capability.  That way there be flames and damnation for all Eternity.
>
> Alan Altmark
>
> Senior Managing z/VM and Linux Consultant
> Lab Services System z Delivery Practice
> IBM Systems & Technology Group
> ibm.com/systems/services/labservices
> office: 607.429.3323
> mobile; 607.321.7556
> alan_altm...@us.ibm.com
> IBM Endicott
>
> --
> 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: UBUNTU on HERCULES

2016-06-23 Thread Tom Huegel
Thanks Mark,
I'm telling Hercules it is s z13 (2964 N30) but I don't know that Hercules
does anything with that other than reflect it in the STSI instruction...
How does UBUNTU determine the hardware level?

Tom

On Thu, Jun 23, 2016 at 2:14 PM, Mark Post <mp...@suse.com> wrote:

> >>> On 6/23/2016 at 04:42 PM, Tom Huegel <tehue...@gmail.com> wrote:
> > I am having a problem trying to install UBUNTU s390x on Hercules.
> > Hercules is 3.11 on OpenSuse LEAP 42.x 64-bit.
> > The error I get is "The Linux kernel requires more recent processor
> > hardware."
> > HHCCP011I CPU: Disabled wait state
> > PSW=0002 8000 BAD
> >
> > Is there a minimum Hercules requirement?
> > Or is it something I might find in the Hercules config file? I have
> z/ARCH
> > specified.
>
> I don't think it's a Hercules requirement, necessarily.  Ubuntu requires a
> zEC12 or later machine to run.  If you can get Hercules to report that,
> then you should be OK.
>
>
> 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://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/


UBUNTU on HERCULES

2016-06-23 Thread Tom Huegel
I am having a problem trying to install UBUNTU s390x on Hercules.
Hercules is 3.11 on OpenSuse LEAP 42.x 64-bit.
The error I get is "The Linux kernel requires more recent processor
hardware."
HHCCP011I CPU: Disabled wait state
PSW=0002 8000 BAD

Is there a minimum Hercules requirement?
Or is it something I might find in the Hercules config file? I have z/ARCH
specified.

Thanks for any help or suggestions.
Tom

--
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/


OpenSuse Available?

2016-06-16 Thread Tom Huegel
A colleague mentioned that OpenSuse was available for s390x but I can't
find anything on the OpenSuse website. Google searches were inclusive.

Is OpenSuse s390x available somewhere for download/installation on z/VM
system?

Thanks

--
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: How to unformat a dasd drive?

2016-05-17 Thread Tom Huegel
If you are z/VM you can use TRACKWRITE (currently in the authors edition)
pipe stage to write just about anything you want to an ECKD device..

On Tue, May 17, 2016 at 9:36 AM, Mark Post  wrote:

> >>> On 5/17/2016 at 11:51 AM, Scott Rohling 
> wrote:
> > I'm wondering if something like this would work?:
> >
> > You can add 'count=xx' to only write so many blocks...  not sure how many
> > it takes to wipe formatting info - nothing to play with at the moment..
> >
> >
> > dd if=/dev/zero of=/dev/dasdX iflag=nocache oflag=direct bs=4096
>
> It doesn't seem to work. You're still going to be limited by the
> dasd_eckd_mod driver to writing in the formatted space and not the raw
> device itself.  I even tried turning on the raw_track_access and that
> didn't help either.  Trying to use both that and oflag=direct caused an I/O
> error and the dd aborted.
>
>
> 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://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: Simple DASD question

2016-04-22 Thread Tom Huegel
Mm probably not..
It's golf day no more time for work today.. Maybe I'll just grab a mod 27
on Monday.



On Fri, Apr 22, 2016 at 11:57 AM, Mark Post <mp...@suse.com> wrote:

> >>> On 4/22/2016 at 11:20 AM, Tom Huegel <tehue...@gmail.com> wrote:
> > Although when I try to reboot
> >
> >  [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46... 6s / no
> > limit) [ BUSY ] A start job is running for dev-disk-by\x2d
> > uuid-d8b46... 6s / no limit) [ BUSY ]
>
> Again, this looks like the bug in SLES12 that is fixed by later
> maintenance.  Was that applied before adding the DASD volume to the file
> system?
>
>
> 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://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: Simple DASD question

2016-04-22 Thread Tom Huegel
Although when I try to reboot

 [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46... 6s / no
limit) [ BUSY ] A start job is running for dev-disk-by\x2d
uuid-d8b46... 6s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46... 7s / no limit) [ BUSY ] A start job is
 running for dev-disk-by\x2duuid-d8b46... 7s / no limit) [ BUSY ] A start
job is running for dev-disk-by\x2duuid-d8b46... 8s / no li
mit) [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46... 8s /
no limit) [ BUSY ] A start job is running for dev-disk-by
\x2duuid-d8b46... 9s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46... 9s / no limit) [ BUSY ] A start jo
b is running for dev-disk-by\x2duuid-d8b46...10s / no limit) [ BUSY ] A
start job is running for dev-disk-by\x2duuid-d8b46...10s / n
o limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46...11s / no limit) [** [0m] A start job is
running for dev
-disk-by\x2duuid-d8b46...11s / no limit) [ * [0m] A start job is
running for dev-disk-by\x2duuid-d8b46...12s / no limit) [**
 [0m] A start job is running for dev-disk-by\x2duuid-d8b46...12s / no
limit) [ BUSY ] A start job is running for dev-disk-by\x2duuid
-d8b46...13s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46...13s / no limit) [ BUSY ] A start job is run
ning for dev-disk-by\x2duuid-d8b46...14s / no limit) [ BUSY ] A start job
is running for dev-disk-by\x2duuid-d8b46...14s / no limit)
 [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46...15s / no
limit) [ BUSY ] A start job is running for dev-disk-by\x2d
uuid-d8b46...15s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46...16s / no limit) [ BUSY ] A start job is
 running for dev-disk-by\x2duuid-d8b46...16s / no limit) [ BUSY ] A start
job is running for dev-disk-by\x2duuid-d8b46...17s / no li
mit) [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46...17s /
no limit) [ BUSY ] A start job is running for dev-disk-by
\x2duuid-d8b46...18s / no limit) [** [0m] A start job is running for
dev-disk-by\x2duuid-d8b46...18s / no limit) [ * [0m] A
start job is running for dev-disk-by\x2duuid-d8b46...19s / no limit) [
** [0m] A start job is running for dev-disk-by\x2duuid-d8b
46...19s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46...20s / no limit) [ BUSY ] A start job is running
 for dev-disk-by\x2duuid-d8b46...20s / no limit) [ BUSY ] A start job is
running for dev-disk-by\x2duuid-d8b46...21s / no limit) [ B
USY ] A start job is running for dev-disk-by\x2duuid-d8b46...21s / no
limit) [ BUSY ] A start job is running for dev-disk-by\x2duuid
-d8b46...22s / no limit) [ BUSY ] A start job is running for
dev-disk-by\x2duuid-d8b46...22s / no limit) [ BUSY ] A start job is run
ning for dev-disk-by\x2duuid-d8b46...23s / no limit) [ BUSY ] A start job
is running for dev-disk-by\x2duuid-d8b46...23s / no limit)
 [ BUSY ] A start job is running for dev-disk-by\x2duuid-d8b46...24s / no
limit)

















RUNNING   SCZVMLX2

On Fri, Apr 22, 2016 at 7:59 AM, Tom Huegel <tehue...@gmail.com> wrote:

> Thank-you...
> Maybe someday I will learn how it all works... I just don't do that much
> with LINUX..
>
>
> sles12:~ # fdasd -a /dev/dasdb
> reading volume label ..: VOL1
> reading vtoc ..: ok
> auto-creating one partition for the whole disk...
> writing volume label...
> writing VTOC...
> rereading partition table...
> sles12:~ # btrfs device add /dev/dasdb1 /
> sles12:~ # btrfs filesystem show
> Label: none  uuid: d8b46146-19c1-48d8-b024-80547e728787
> Total devices 2 FS bytes used 2.74GiB
> devid1 size 5.71GiB used 3.53GiB path /dev/dasda3
> devid2 size 6.88GiB used 0.00B path /dev/dasdb1
> Btrfs v3.16+20140829
> sles12:~ # df -h
> Filesystem  Size  Used Avail Use% Mounted on
> /dev/dasda3  13G  3.0G  9.4G  24% /
> devtmpfs439M  8.0K  439M   1% /dev
> tmpfs   446M 0  446M   0% /dev/shm
> tmpfs   446M  7.0M  439M   2% /run
> tmpfs   446M 0  446M   0% /sys/fs/cgroup
> /dev/dasda3  13G  3.0G  9.4G  24% /var/tmp
> /dev/dasda3  13G  3.0G  9.4G  24% /var/spool
> /dev/dasda3  13G  3.0G  9.4G  24% /var/opt
> /dev/dasda3  13G  3.0G  9.4G  24% /var/log
> /dev/dasda1 194M   24M  161M  13% /boot/zipl
> /dev/dasda3  13G  3.0G  9.4G  24% /var/lib/pgsql
> /dev/dasda3  13G  3.0G  9.4G  24% /var/lib/named
> /dev/dasda3  13G  3.0G  9.4G  24% /var/lib/mailman
> /dev/dasda3  13G  3.0G  9.4G  24% /usr/local
> /dev/dasda3  13G  3.0G  9.4G  24% /tmp
> /dev/dasda3  13G  3.0G  9.4G  24% /var/crash
> /dev/dasda3  13G  3.0G  9.4G  24% /srv
> /dev/dasda3  13G  3.0G  9.4G  24% /opt
> /dev/dasda3  13G  3.0G  9.4G  24% /home
> /dev/dasda3  13G  3.0G  9.4G  24% /boot/grub

Re: Simple DASD question

2016-04-22 Thread Tom Huegel
Thank-you...
Maybe someday I will learn how it all works... I just don't do that much
with LINUX..


sles12:~ # fdasd -a /dev/dasdb
reading volume label ..: VOL1
reading vtoc ..: ok
auto-creating one partition for the whole disk...
writing volume label...
writing VTOC...
rereading partition table...
sles12:~ # btrfs device add /dev/dasdb1 /
sles12:~ # btrfs filesystem show
Label: none  uuid: d8b46146-19c1-48d8-b024-80547e728787
Total devices 2 FS bytes used 2.74GiB
devid1 size 5.71GiB used 3.53GiB path /dev/dasda3
devid2 size 6.88GiB used 0.00B path /dev/dasdb1
Btrfs v3.16+20140829
sles12:~ # df -h
Filesystem  Size  Used Avail Use% Mounted on
/dev/dasda3  13G  3.0G  9.4G  24% /
devtmpfs439M  8.0K  439M   1% /dev
tmpfs   446M 0  446M   0% /dev/shm
tmpfs   446M  7.0M  439M   2% /run
tmpfs   446M 0  446M   0% /sys/fs/cgroup
/dev/dasda3  13G  3.0G  9.4G  24% /var/tmp
/dev/dasda3  13G  3.0G  9.4G  24% /var/spool
/dev/dasda3  13G  3.0G  9.4G  24% /var/opt
/dev/dasda3  13G  3.0G  9.4G  24% /var/log
/dev/dasda1 194M   24M  161M  13% /boot/zipl
/dev/dasda3  13G  3.0G  9.4G  24% /var/lib/pgsql
/dev/dasda3  13G  3.0G  9.4G  24% /var/lib/named
/dev/dasda3  13G  3.0G  9.4G  24% /var/lib/mailman
/dev/dasda3  13G  3.0G  9.4G  24% /usr/local
/dev/dasda3  13G  3.0G  9.4G  24% /tmp
/dev/dasda3  13G  3.0G  9.4G  24% /var/crash
/dev/dasda3  13G  3.0G  9.4G  24% /srv
/dev/dasda3  13G  3.0G  9.4G  24% /opt
/dev/dasda3  13G  3.0G  9.4G  24% /home
/dev/dasda3  13G  3.0G  9.4G  24% /boot/grub2/s390x-emu
sles12:~ #

On Fri, Apr 22, 2016 at 7:19 AM, Mark Post <mp...@suse.com> wrote:

> >>> On 4/22/2016 at 10:07 AM, Tom Huegel <tehue...@gmail.com> wrote:
> > This is what I have fresh after my re-re-re-re-install.
> > It seems "btrfs device add /dev/dasdb1 /" would be a good thing to do
> but I
> > get message about dasdb1 not existing...
>
> Have you used YaST or run fdasd to create it?
> fdasd -a /dev/dasdb
>
>
> 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://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: Simple DASD question

2016-04-22 Thread Tom Huegel
So far I have failed with my feeble attempts to add the second disk dasdb
(0251) to the btrfs filesystem.
This is what I have fresh after my re-re-re-re-install.
It seems "btrfs device add /dev/dasdb1 /" would be a good thing to do but I
get message about dasdb1 not existing...


sles12:~ # lsdasd
Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks
==
0.0.0250   active  dasda 94:0ECKD  4096   7042MB1802880
0.0.0251   active  dasdb 94:4ECKD  4096   7042MB1802880
sles12:~ # btrfs filesystem show
Label: none  uuid: d8b46146-19c1-48d8-b024-80547e728787
Total devices 1 FS bytes used 2.74GiB
devid1 size 5.71GiB used 3.53GiB path /dev/dasda3
Btrfs v3.16+20140829
sles12:~ # df -h
Filesystem  Size  Used Avail Use% Mounted on
/dev/dasda3 5.8G  3.0G  2.5G  55% /
devtmpfs439M  8.0K  439M   1% /dev
tmpfs   446M 0  446M   0% /dev/shm
tmpfs   446M  7.0M  439M   2% /run
tmpfs   446M 0  446M   0% /sys/fs/cgroup
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/tmp
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/spool
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/opt
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/log
/dev/dasda1 194M   24M  161M  13% /boot/zipl
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/lib/pgsql
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/lib/named
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/lib/mailman
/dev/dasda3 5.8G  3.0G  2.5G  55% /usr/local
/dev/dasda3 5.8G  3.0G  2.5G  55% /tmp
/dev/dasda3 5.8G  3.0G  2.5G  55% /var/crash
/dev/dasda3 5.8G  3.0G  2.5G  55% /srv
/dev/dasda3 5.8G  3.0G  2.5G  55% /opt
/dev/dasda3 5.8G  3.0G  2.5G  55% /home
/dev/dasda3 5.8G  3.0G  2.5G  55% /boot/grub2/s390x-emu
sles12:~ #


On Thu, Apr 21, 2016 at 2:37 PM, Mark Post  wrote:

> >>> On 4/21/2016 at 05:33 PM, Grzegorz Powiedziuk 
> wrote:
> > then pvcreate, vgextend, lvextend and filesystem resize.
>
> No, we're trying to get him set up with LVM, just btrfs.
>
>
> 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://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: Simple DASD question

2016-04-21 Thread Tom Huegel
I don't know.. I've done a couple of re-installs and I still don't
see dasdb (251) being used.
This is SLES12 SP1. I activate and format my two drives and then take all
of the defaults.

蘿

On Thu, Apr 21, 2016 at 11:50 AM, Tom Huegel <tehue...@gmail.com> wrote:

> Since this is a new install I'll just go back to step one and start with
> reinstalling..
> I'll let you know how it works out.
>
> On Thu, Apr 21, 2016 at 11:08 AM, Robert J Brenneman <bren...@gmail.com>
> wrote:
>
>> On Thu, Apr 21, 2016 at 2:00 PM, Grzegorz Powiedziuk <
>> gpowiedz...@gmail.com>
>> wrote:
>>
>> > I see. I never used btrfs before so it makes sense.
>> > So  isn't using LVM with btrfs on top of it complicating things
>> more?
>> >
>>
>> Basically yes.
>>
>> The default SLES 12 install does not use LVM though, it only uses the
>> btrfs
>> functions to achieve similar results.
>>
>> Doing both LVM and btrfs is not impossible, but you need to be thoughtful
>> about how you combine those two.
>>
>> --
>> Jay Brenneman
>>
>> --
>> 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: Simple DASD question

2016-04-21 Thread Tom Huegel
Since this is a new install I'll just go back to step one and start with
reinstalling..
I'll let you know how it works out.

On Thu, Apr 21, 2016 at 11:08 AM, Robert J Brenneman 
wrote:

> On Thu, Apr 21, 2016 at 2:00 PM, Grzegorz Powiedziuk <
> gpowiedz...@gmail.com>
> wrote:
>
> > I see. I never used btrfs before so it makes sense.
> > So  isn't using LVM with btrfs on top of it complicating things more?
> >
>
> Basically yes.
>
> The default SLES 12 install does not use LVM though, it only uses the btrfs
> functions to achieve similar results.
>
> Doing both LVM and btrfs is not impossible, but you need to be thoughtful
> about how you combine those two.
>
> --
> Jay Brenneman
>
> --
> 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: Simple DASD question

2016-04-21 Thread Tom Huegel
Oh well I must have done something wrong, it won't boot (IPL) now.
Booting default
(grub2)

[  OK  ] Started Show Plymouth Boot
Screen.

[  OK  ] Reached target
Paths.

[  OK  ] Reached target Basic
System.

[  OK  ] Found device
/dev/disk/by-uuid/f75ec84d-5640-4a2c-bced-e026dd7ec2b9.

[  OK  ] Found device
/dev/mapper/system-swap.

Buffer I/O error on device dm-2, logical block
3172336

Buffer I/O error on device dm-2, logical block
3172336

[  OK  ] Started Show Plymouth Boot
Screen.

[  OK  ] Reached target
Paths.

[  OK  ] Reached target Basic
System.

[  OK  ] Found device
/dev/disk/by-uuid/f75ec84d-5640-4a2c-bced-e026dd7ec2b9.

[  OK  ] Found device
/dev/mapper/system-swap.

 Starting Dracut Emergency
Shell...

Warning: /dev/disk/by-uuid/2103a597-f950-4b63-931e-675d2c52dbd9 does not
exist


Generating
"/run/initramfs/rdsosreport.txt"

Buffer I/O error on device dm-2, logical block
3172336

Buffer I/O error on device dm-2, logical block
3172336

Buffer I/O error on device dm-2, logical block
3172336

Buffer I/O error on device dm-2, logical block
3172336





Entering emergency mode. Exit the shell to
continue.

Type "journalctl" to view system
logs.

You might want to save "/run/initramfs/rdsosreport.txt" to a USB stick or
/boot
after mounting them and attach it to a bug
report.





dracut:/#
1




HOLDING   SCZVMLX2

On Thu, Apr 21, 2016 at 10:27 AM, Robert J Brenneman 
wrote:

> On Thu, Apr 21, 2016 at 12:27 PM, Grzegorz Powiedziuk <
> gpowiedz...@gmail.com
> > wrote:
>
> > /dev/mapper/system-root  5.3G  3.0G  2.0G  60% /opt
> > /dev/mapper/system-root  5.3G  3.0G  2.0G  60% /home
> > /dev/mapper/system-root  5.3G  3.0G  2.0G  60% /boot/grub2/s390x-emu
> >
> >
> > According to this,  the same logical volume is mounted multiple times.
> > Honestly it doesn't make sense to me.
> >
>
> That's part of what the new btrfs in SLES 12 does for you. It does
> management of multiple physical block devices as a single logical entity,
> as well as talking that single logical entity and using it to back multiple
> mount points ( now called subvolumes ? ) to do things like snapshot just
> the /home section so you can do a rollback if you need to.
>
> It's part of the new SLES support to restore off service if required.
>
> --
> Jay Brenneman
>
> --
> 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: Simple DASD question

2016-04-21 Thread Tom Huegel
Now I need just a little more help.
Would this be correct to use all of the new volume? " lvextend -l +100%PVS
/dev/system "
Thanks

sles12:~ # vgdisplay
  --- Volume group ---
  VG Name   system
  System ID
  Formatlvm2
  Metadata Areas2
  Metadata Sequence No  4
  VG Access read/write
  VG Status resizable
  MAX LV0
  Cur LV2
  Open LV   2
  Max PV0
  Cur PV2
  Act PV2
  VG Size   13.55 GiB
  PE Size   4.00 MiB
  Total PE  3470
  Alloc PE / Size   1709 / 6.68 GiB
  Free  PE / Size   1761 / 6.88 GiB
  VG UUID   8wdm3K-4TNN-yqqn-v4bG-vBFE-INMc-AIZCxT


On Wed, Apr 20, 2016 at 8:06 AM, Mark Post  wrote:

> >>> On 4/19/2016 at 04:42 PM, Michael J Nash  wrote:
> > Greeting Mark, please tell us why  use_lvmetad  has been disabled!
>
> It wasn't considered ready for enterprise use.
>
>
> 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://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: Simple DASD question

2016-04-19 Thread Tom Huegel
sles12:~ # lsdasd
Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks
==
0.0.0250   active  dasda 94:0ECKD  4096   7042MB1802880
0.0.0251   active  dasdb 94:4ECKD  4096   7042MB1802880
sles12:~ # df -h
Filesystem   Size  Used Avail Use% Mounted on
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /
devtmpfs 439M 0  439M   0% /dev
tmpfs446M  324K  446M   1% /dev/shm
tmpfs446M   46M  400M  11% /run
tmpfs446M 0  446M   0% /sys/fs/cgroup
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/tmp
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/spool
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/opt
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/log
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/lib/pgsql
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/lib/mailman
/dev/dasda1  194M   25M  160M  14% /boot/zipl
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/crash
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /usr/local
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /var/lib/named
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /tmp
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /srv
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /opt
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /home
/dev/mapper/system-root  5.3G  3.0G  2.0G  60% /boot/grub2/s390x-emu
sles12:~ # vgscan
sles12:~ # pvscan
sles12:~ # lvscan
sles12:~ # man vgscan
sles12:~ # vgscan -v
connect() failed on local socket: No such file or directory
Internal cluster locking initialisation failed.
WARNING: Falling back to local file-based locking.
Volume Groups with the clustered attribute will be inaccessible.
Wiping cache of LVM-capable devices
Wiping internal VG cache
Reading all physical volumes.  This may take a while...
Finding all volume groups
Finding volume group "system"
Found volume group "system" using metadata type lvm2
sles12:~ # pvscan -v
connect() failed on local socket: No such file or directory
Internal cluster locking initialisation failed.
WARNING: Falling back to local file-based locking.
Volume Groups with the clustered attribute will be inaccessible.
Wiping cache of LVM-capable devices
Wiping internal VG cache
Walking through all physical volumes
PV /dev/dasda2   VG system   lvm2 [6.68 GiB / 4.00 MiB free]
Total: 1 [6.68 GiB] / in use: 1 [6.68 GiB] / in no VG: 0 [0   ]
sles12:~ # lvscan -v
connect() failed on local socket: No such file or directory
Internal cluster locking initialisation failed.
WARNING: Falling back to local file-based locking.
Volume Groups with the clustered attribute will be inaccessible.
Finding all logical volumes
ACTIVE'/dev/system/root' [5.22 GiB] inherit
ACTIVE'/dev/system/swap' [1.45 GiB] inherit
sles12:~ #

On Tue, Apr 19, 2016 at 12:15 PM, Michael J Nash <miken...@us.ibm.com>
wrote:

> Greetings, please provide some more information.
> The output from the following commands will help.
>
> lsdasd will show you what devices are online.
> df -h will show you your utilization
> vgscan - will show you the lvm groups
> pvscan - will show you the physical volumes
> lvscan - will show you the lvm volumes
>
> You can use the man command on each of these commands to learn how to use
> them.
>
>
>
>
> From:   Mark Pace <pacemainl...@gmail.com>
> To: LINUX-390@VM.MARIST.EDU
> Date:   04/19/2016 02:58 PM
> Subject:Re: Simple DASD question
> Sent by:Linux on 390 Port <LINUX-390@VM.MARIST.EDU>
>
>
>
> You could try.
>
> sles003:~> /sbin/lsdasd
> Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks
>
> ==========
>
> 0.0.0201   active  dasda 94:0ECKD  ???7042MB???
>
>
> On Tue, Apr 19, 2016 at 2:51 PM, Tom Huegel <tehue...@gmail.com> wrote:
>
> > I am sure the answer must be simple.
> > How can I tell if a disk (3390-9) is actually being used?
> >
> > Background:
> > I just installed SUSE 12 specifying 2 3390-9 on the installation panel.
> > I tried to add a package and I get 'no space on DASD' condition.
> > I am guessing the installation only used the first disk, but how can I be
> > sure?
> > Assuming I can determine the second disk is unused I should be able to
> > extend the LVM to it and my problem would be solved. Right?
> >
> > Thanks
> > Tom
> >
> > --
> > For LINUX-390 subscribe / signoff / archiv

Re: Simple DASD question

2016-04-19 Thread Tom Huegel
Got it.. Thanks

On Tue, Apr 19, 2016 at 12:05 PM, Mark Post <mp...@suse.com> wrote:

> >>> On 4/19/2016 at 02:51 PM, Tom Huegel <tehue...@gmail.com> wrote:
> > I am sure the answer must be simple.
> > How can I tell if a disk (3390-9) is actually being used?
> >
> > Background:
> > I just installed SUSE 12 specifying 2 3390-9 on the installation panel.
> > I tried to add a package and I get 'no space on DASD' condition.
> > I am guessing the installation only used the first disk, but how can I be
> > sure?
>
> Several ways:
> lsdasd -> If it doesn't show up at all it's not being used
> df -> Same
>
> > Assuming I can determine the second disk is unused I should be able to
> > extend the LVM to it and my problem would be solved. Right?
>
> Since you're using LVM, then another way to check if the volume is being
> used by LVM is
> the "pvs" or "pvdisplay" commands.  If the volume doesn't show up there,
> it is not being used by LVM.
>
> Now, if you're going to add another disk to the configuration, make sure
> you
> - Use either YaST or dasd_configure to bring the disk online and have it
> be persistent across a reboot.
> - Re-run mkinitrd and zipl afterward because early on in SLES12 there was
> a bug that would cause new disks to not be activated properly on reboot.
>
>
> 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://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: Simple DASD question

2016-04-19 Thread Tom Huegel
But I have no idea if 0251 is actually used.. How can I see if it has
7042MB of free space or something less?


sles12:~ # /sbin/lsdasd
Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks
==
0.0.0250   active  dasda 94:0ECKD  4096   7042MB1802880
0.0.0251   active  dasdb 94:4ECKD  4096   7042MB1802880
sles12:~ #

On Tue, Apr 19, 2016 at 11:57 AM, Mark Pace <pacemainl...@gmail.com> wrote:

> You could try.
>
> sles003:~> /sbin/lsdasd
> Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks
>
> ==
> 0.0.0201   active  dasda 94:0ECKD  ???7042MB???
>
>
> On Tue, Apr 19, 2016 at 2:51 PM, Tom Huegel <tehue...@gmail.com> wrote:
>
> > I am sure the answer must be simple.
> > How can I tell if a disk (3390-9) is actually being used?
> >
> > Background:
> > I just installed SUSE 12 specifying 2 3390-9 on the installation panel.
> > I tried to add a package and I get 'no space on DASD' condition.
> > I am guessing the installation only used the first disk, but how can I be
> > sure?
> > Assuming I can determine the second disk is unused I should be able to
> > extend the LVM to it and my problem would be solved. Right?
> >
> > Thanks
> > Tom
> >
> > --
> > 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/
> >
>
>
>
> --
> The postings on this site are my own and don’t necessarily represent
> Mainline’s positions or opinions
>
> Mark D Pace
> Senior Systems Engineer
> Mainline Information Systems
>
> --
> 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/


Simple DASD question

2016-04-19 Thread Tom Huegel
I am sure the answer must be simple.
How can I tell if a disk (3390-9) is actually being used?

Background:
I just installed SUSE 12 specifying 2 3390-9 on the installation panel.
I tried to add a package and I get 'no space on DASD' condition.
I am guessing the installation only used the first disk, but how can I be
sure?
Assuming I can determine the second disk is unused I should be able to
extend the LVM to it and my problem would be solved. Right?

Thanks
Tom

--
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: ? FTP permissions on FEDORA ?

2016-03-25 Thread Tom Huegel
I am just thrilled we got it working today . I have been working on this on
and off for about three weeks.
I'm an old z/VM (VM/370) guy and can get very confused with LINUX..

Again my thanks to everyone who helped.


On Fri, Mar 25, 2016 at 1:09 PM, Grzegorz Powiedziuk <gpowiedz...@gmail.com>
wrote:

> Sometimes, I can't believe that issues like that are still there. I
> recently had a very similar issue with IBM KVM
> I mean it is just a simple ftp url ... it shouldn't be that hard to parse
> it even if user forgets or add to many of slashes somewhere out there.
> IBM KVM for example didn't like like url like this:
>  ftp://user:root@x.x.x.x/
> I had an ftpd server which was masking the real path into "/"
>
> That was to much for IBM KVM  (or actually Red Hat/Fedora which was under
> the hood). I've uncompressed the initrd and found the script which was
> parsing the url and  as far as I remember it needed /something/ to work
> properly ;)
>
>
> 2016-03-25 15:52 GMT-04:00 Tom Huegel <tehue...@gmail.com>:
>
> > the extra slash "/" .. that did it..
> >
> > Thank-you everyone that helped me with this.. I really appreciate it. -:)
> > Tom
> >
> > On Fri, Mar 25, 2016 at 12:42 PM, Offer Baruch <offerbar...@gmail.com>
> > wrote:
> >
> > > Try adding an extra / at the beginning of the path:
> > > ftp://root:pass4root@172.17.51.126//var/ftp/linins/
> > >
> > > That is a common issue as well...
> > >
> > > Offer
> > > On Mar 25, 2016 10:18 PM, "Grzegorz Powiedziuk" <gpowiedz...@gmail.com
> >
> > > wrote:
> > >
> > > > ok, now it is is probably one of many very common "little" issues
> with
> > > > paths and proper syntax.
> > > > Take your exact path from your "inst.repo" and paste it into your
> > > > webbrowser and make sure that you can see .treeinfo file in there.
> Can
> > > you?
> > > > Those installators are very sensitive about little things like
> missing
> > or
> > > > extra "/" at the end of the path.
> > > >
> > > > Also, another way to debug this is looking into ftp server log file
> > while
> > > > you run your install.
> > > > In the log you should be seeing what exactly from FTP server's
> > > perspective,
> > > > the linux install is trying to open.
> > > > This usually gives me an idea what am I  doing wrong.
> > > >
> > > >
> > > > 2016-03-25 15:00 GMT-04:00 Tom Huegel <tehue...@gmail.com>:
> > > >
> > > > > Thank you Grzegorz that information is most appreciated.
> > > > >  I am sure that would have been my next problem.
> > > > >
> > > > > Even after your suggested changes I still get this message..
> > > > >
> > > > > [7.441940] dracut-initqueue[665]: Warning: can't find installer
> > > > > mainimage path in .treeinfo
> > > > > [7.448315] dracut-initqueue[665]: % Total% Received % Xferd
> > > > > Average Speed   TimeTime Time  Current
> > > > > [7.448810] dracut-initqueue[665]: Dload  Upload   Total   Spent
> > > > > Left  Speed
> > > > > [7.466071] dracut-initqueue[665]: 0 00 00 0
> > > > > 0  0 --:--:-- --:--:-- --:--:-- 0   0 00
> > > > >   00 0  0  0 --:--:-- --:--:-- --:--:--
> > > > > 0
> > > > > [7.466511] dracut-initqueue[665]: curl: (9) Server denied you
> to
> > > > change
> > > > > to the given directory
> > > > > [7.468632] dracut-initqueue[665]: Warning: Downloading '
> > > > >
> > ftp://root:pass4root@172.17.51.126/var/ftp/linins/LiveOS/squashfs.img'
> > > f
> > > > > ailed!
> > > > >
> > > > >
> > > > > On Fri, Mar 25, 2016 at 10:05 AM, Grzegorz Powiedziuk <
> > > > > gpowiedz...@gmail.com
> > > > > > wrote:
> > > > >
> > > > > > update,
> > > > > > And your ins.repo should be pointing to that directory where iso
> is
> > > > > mounted
> > > > > > on ftp so:
> > > > > > ftp://./linins/  not to the iso image.
> > > > > > Gregory
> > > > > >
> > > > > > 2016-03-25 13:02 GMT-04:00 Grzegorz Powiedziuk <
> > > gpowiedz...@gmail.

Re: ? FTP permissions on FEDORA ?

2016-03-25 Thread Tom Huegel
the extra slash "/" .. that did it..

Thank-you everyone that helped me with this.. I really appreciate it. -:)
Tom

On Fri, Mar 25, 2016 at 12:42 PM, Offer Baruch <offerbar...@gmail.com>
wrote:

> Try adding an extra / at the beginning of the path:
> ftp://root:pass4root@172.17.51.126//var/ftp/linins/
>
> That is a common issue as well...
>
> Offer
> On Mar 25, 2016 10:18 PM, "Grzegorz Powiedziuk" <gpowiedz...@gmail.com>
> wrote:
>
> > ok, now it is is probably one of many very common "little" issues with
> > paths and proper syntax.
> > Take your exact path from your "inst.repo" and paste it into your
> > webbrowser and make sure that you can see .treeinfo file in there. Can
> you?
> > Those installators are very sensitive about little things like missing or
> > extra "/" at the end of the path.
> >
> > Also, another way to debug this is looking into ftp server log file while
> > you run your install.
> > In the log you should be seeing what exactly from FTP server's
> perspective,
> > the linux install is trying to open.
> > This usually gives me an idea what am I  doing wrong.
> >
> >
> > 2016-03-25 15:00 GMT-04:00 Tom Huegel <tehue...@gmail.com>:
> >
> > > Thank you Grzegorz that information is most appreciated.
> > >  I am sure that would have been my next problem.
> > >
> > > Even after your suggested changes I still get this message..
> > >
> > > [7.441940] dracut-initqueue[665]: Warning: can't find installer
> > > mainimage path in .treeinfo
> > > [7.448315] dracut-initqueue[665]: % Total% Received % Xferd
> > > Average Speed   TimeTime Time  Current
> > > [7.448810] dracut-initqueue[665]: Dload  Upload   Total   Spent
> > > Left  Speed
> > > [7.466071] dracut-initqueue[665]: 0 00 00 0
> > > 0  0 --:--:-- --:--:-- --:--:-- 0   0 00
> > >   00 0  0  0 --:--:-- --:--:-- --:--:--
> > > 0
> > > [7.466511] dracut-initqueue[665]: curl: (9) Server denied you to
> > change
> > > to the given directory
> > > [7.468632] dracut-initqueue[665]: Warning: Downloading '
> > > ftp://root:pass4root@172.17.51.126/var/ftp/linins/LiveOS/squashfs.img'
> f
> > > ailed!
> > >
> > >
> > > On Fri, Mar 25, 2016 at 10:05 AM, Grzegorz Powiedziuk <
> > > gpowiedz...@gmail.com
> > > > wrote:
> > >
> > > > update,
> > > > And your ins.repo should be pointing to that directory where iso is
> > > mounted
> > > > on ftp so:
> > > > ftp://./linins/  not to the iso image.
> > > > Gregory
> > > >
> > > > 2016-03-25 13:02 GMT-04:00 Grzegorz Powiedziuk <
> gpowiedz...@gmail.com
> > >:
> > > >
> > > > > the ISO image have to be mounted with a loop back device  for
> example
> > > > > mount -o loop /downloads/rhel-server-7.2-s390x-dvd.iso
> > /var/ftp/linins/
> > > > > And then you ftp into it so you can see actual content of iso image
> > > > > Gregory
> > > > >
> > > > >
> > > > > 2016-03-25 12:57 GMT-04:00 Tom Huegel <tehue...@gmail.com>:
> > > > >
> > > > >> Background:
> > > > >> I have FEDORA F23 running and it is working well.
> > > > >> I want to use this as a FTP server for installing other distros ,,
> > > > RedHat
> > > > >> and SUSE.
> > > > >> I've downloaded the ISO's from the respective vendors.
> > > > >>
> > > > >> On F23 I have started vsftp, stopped the firewall, created a
> > directory
> > > > in
> > > > >> /var/ftp/ called linins, mounted the ISO's there, chmod a=rwx
> > > > >> /var/ftp/linins
> > > > >>
> > > > >> Everything looks good.
> > > > >> From CMS I can FTP to the directory and download files.
> > > > >>
> > > > >> The Problem:
> > > > >> When I try to install either of the other OS's I get this error
> > > message:
> > > > >> " server denied you to change to the given directory"
> > > > >>
> > > > >> My path looks something like this:
> > > > >> inst.repo=
> > &g

Re: ? FTP permissions on FEDORA ?

2016-03-25 Thread Tom Huegel
Thank you Grzegorz that information is most appreciated.
 I am sure that would have been my next problem.

Even after your suggested changes I still get this message..

[7.441940] dracut-initqueue[665]: Warning: can't find installer
mainimage path in .treeinfo
[7.448315] dracut-initqueue[665]: % Total% Received % Xferd
Average Speed   TimeTime Time  Current
[7.448810] dracut-initqueue[665]: Dload  Upload   Total   Spent
Left  Speed
[7.466071] dracut-initqueue[665]: 0 00 00 0
0  0 --:--:-- --:--:-- --:--:-- 0   0 00
  00 0  0  0 --:--:-- --:--:-- --:--:--
0
[7.466511] dracut-initqueue[665]: curl: (9) Server denied you to change
to the given directory
[7.468632] dracut-initqueue[665]: Warning: Downloading '
ftp://root:pass4root@172.17.51.126/var/ftp/linins/LiveOS/squashfs.img' f
ailed!


On Fri, Mar 25, 2016 at 10:05 AM, Grzegorz Powiedziuk <gpowiedz...@gmail.com
> wrote:

> update,
> And your ins.repo should be pointing to that directory where iso is mounted
> on ftp so:
> ftp://./linins/  not to the iso image.
> Gregory
>
> 2016-03-25 13:02 GMT-04:00 Grzegorz Powiedziuk <gpowiedz...@gmail.com>:
>
> > the ISO image have to be mounted with a loop back device  for example
> > mount -o loop /downloads/rhel-server-7.2-s390x-dvd.iso /var/ftp/linins/
> > And then you ftp into it so you can see actual content of iso image
> > Gregory
> >
> >
> > 2016-03-25 12:57 GMT-04:00 Tom Huegel <tehue...@gmail.com>:
> >
> >> Background:
> >> I have FEDORA F23 running and it is working well.
> >> I want to use this as a FTP server for installing other distros ,,
> RedHat
> >> and SUSE.
> >> I've downloaded the ISO's from the respective vendors.
> >>
> >> On F23 I have started vsftp, stopped the firewall, created a directory
> in
> >> /var/ftp/ called linins, mounted the ISO's there, chmod a=rwx
> >> /var/ftp/linins
> >>
> >> Everything looks good.
> >> From CMS I can FTP to the directory and download files.
> >>
> >> The Problem:
> >> When I try to install either of the other OS's I get this error message:
> >> " server denied you to change to the given directory"
> >>
> >> My path looks something like this:
> >> inst.repo=
> >>
> >>
> ftp://root:mypasswordt@172.17.51.126/var/ftp/linins/rhel-server-7.2-s390x-dvd.iso
> >>  <==RedHat
> >>
> >> Any ideas what I am missing?
> >> Thanks
> >> Tom
> >>
> >> --
> >> 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/


? FTP permissions on FEDORA ?

2016-03-25 Thread Tom Huegel
Background:
I have FEDORA F23 running and it is working well.
I want to use this as a FTP server for installing other distros ,, RedHat
and SUSE.
I've downloaded the ISO's from the respective vendors.

On F23 I have started vsftp, stopped the firewall, created a directory in
/var/ftp/ called linins, mounted the ISO's there, chmod a=rwx
/var/ftp/linins

Everything looks good.
>From CMS I can FTP to the directory and download files.

The Problem:
When I try to install either of the other OS's I get this error message:
" server denied you to change to the given directory"

My path looks something like this:
inst.repo=
ftp://root:mypasswordt@172.17.51.126/var/ftp/linins/rhel-server-7.2-s390x-dvd.iso
 <==RedHat

Any ideas what I am missing?
Thanks
Tom

--
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: LINUX SSH problem.

2016-03-03 Thread Tom Huegel
/etc/securetty: No such file or directory

This one didn't work.
we sent a password packet, wait for reply
debug1:* Authentications that can continue:
publickey,gssapi-keyex,gssapi-with-mic,password   *<== What is this telling
me?
Permission denied, please try again.

This one (to a different server) worked.
we sent a password packet, wait for reply
debug1: Authentication succeeded (password).

On Thu, Mar 3, 2016 at 11:04 AM, Rick Troth <r...@casita.net> wrote:

> /etc/securetty?
>
> -- R; <><
>
>
> On Mar 3, 2016 1:22 PM, "Grzegorz Powiedziuk" <gpowiedz...@gmail.com>
> wrote:
>
> > In fedora21 (at least on x86) they switched to journualctl with logs and
> > stuff no longer goes to regular log files.
> > I am not sure with s390 fedora they did the same thing.
> >
> > Try something like
> > journalctl -u sshd --since=yesterday | tail -100
> >
> > I would also try to login from a different linux machine with "ssh -vvv
> > x.x.x.x "  for verbose and see if there is anything there.
> >
> > Someone mentioned problems with RW permissions to home directory. That
> > makes sense.
> >
> > Also if home filesystem is full or mounted RO, you might have the same
> > issue.
> >
> > Gregory
> >
> >
> > 2016-03-03 12:21 GMT-05:00 Offer Baruch <offerbar...@gmail.com>:
> >
> > > I think that ssh does not allow for your home directory to be write
> > enabled
> > > for the group (i have seen this on redhat).
> > > Make sure your home directory has the correct permissions...
> > >
> > > Good luck
> > > Offer Baruch
> > > On Mar 3, 2016 5:36 PM, "Tom Huegel" <tehue...@gmail.com> wrote:
> > >
> > > > I wish I had some idea of what I might have changed. Intentionally I
> > > > haven't changed anything.
> > > > There are no new messages in the /var/log/messages file after a
> failed
> > > > logon.
> > > >
> > > > Comparing /etc/parm.d/sshd to another system that allows SSH logons
> ...
> > > > they are identical.
> > > > cat
> > > > /etc/pam.d/sshd
> > > >
> > > > #%PAM-1.0
> > > >
> > > > auth   required
> > > > pam_sepermit.so
> > > > auth   substack
> > > > password-auth
> > > > auth   include
> > > > postlogin
> > > > # Used with polkit to reauthorize users in remote
> > > > sessions
> > > > -auth  optional pam_reauthorize.so
> > > > prepare
> > > > accountrequired
> > > > pam_nologin.so
> > > > accountinclude
> > > > password-auth
> > > > password   include
> > > > password-auth
> > > > # pam_selinux.so close should be the first session
> > > > rule
> > > > sessionrequired pam_selinux.so
> > > > close
> > > > sessionrequired
> > > > pam_loginuid.so
> > > > # pam_selinux.so open should only be followed by sessions to be
> > executed
> > > in
> > > > the user context
> > > > sessionrequired pam_selinux.so open
> > > > env_params
> > > > sessionoptional pam_keyinit.so force
> > > > revoke
> > > > sessioninclude
> > > > password-auth
> > > > sessioninclude
> > > > postlogin
> > > > # Used with polkit to reauthorize users in remote
> > > > sessions
> > > > -session   optional pam_reauthorize.so
> > > > prepare
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > On Thu, Mar 3, 2016 at 7:11 AM, van Sleeuwen, Berry <
> > > > berry.vansleeu...@atos.net> wrote:
> > > >
> > > > > Hi Tom,
> > > > >
> > > > > Could it be the pam configuration for ssh is changed? Perhaps the
> > > > password
> > > > > checking in pam?
> > > > >
> > > > > I once had such an issue when I made a typo in /etc/pam.d/sshd.
> After
> > > > this
> > > > > I couldn't login anymore. It showed up in the console log as
> "Error:
> > > PAM:
> > > > > Module is unknown for  from .". (This might be
> in
> > > > > /var/log/messages as well.)
> > > > >
> > > > > I had to correct the typo using &

Re: LINUX SSH problem.

2016-03-03 Thread Tom Huegel
Yes I do login as root always have, it works fine everyplace else.

selinux=0 is in the boot messages.

A possible clue - I can start VNCSERVER from the VM console but again when
I try to VNC to the server, again it gets rejected.


On Thu, Mar 3, 2016 at 10:09 AM, Christer Solskogen <
christer.solsko...@gmail.com> wrote:

> Do you happen to log in as root? Because that won't work.
>
> On Thu, Mar 3, 2016 at 6:21 PM, Offer Baruch <offerbar...@gmail.com>
> wrote:
> > I think that ssh does not allow for your home directory to be write
> enabled
> > for the group (i have seen this on redhat).
> > Make sure your home directory has the correct permissions...
> >
> > Good luck
> > Offer Baruch
> > On Mar 3, 2016 5:36 PM, "Tom Huegel" <tehue...@gmail.com> wrote:
> >
> >> I wish I had some idea of what I might have changed. Intentionally I
> >> haven't changed anything.
> >> There are no new messages in the /var/log/messages file after a failed
> >> logon.
> >>
> >> Comparing /etc/parm.d/sshd to another system that allows SSH logons ...
> >> they are identical.
> >> cat
> >> /etc/pam.d/sshd
> >>
> >> #%PAM-1.0
> >>
> >> auth   required
> >> pam_sepermit.so
> >> auth   substack
> >> password-auth
> >> auth   include
> >> postlogin
> >> # Used with polkit to reauthorize users in remote
> >> sessions
> >> -auth  optional pam_reauthorize.so
> >> prepare
> >> accountrequired
> >> pam_nologin.so
> >> accountinclude
> >> password-auth
> >> password   include
> >> password-auth
> >> # pam_selinux.so close should be the first session
> >> rule
> >> sessionrequired pam_selinux.so
> >> close
> >> sessionrequired
> >> pam_loginuid.so
> >> # pam_selinux.so open should only be followed by sessions to be
> executed in
> >> the user context
> >> sessionrequired pam_selinux.so open
> >> env_params
> >> sessionoptional pam_keyinit.so force
> >> revoke
> >> sessioninclude
> >> password-auth
> >> sessioninclude
> >> postlogin
> >> # Used with polkit to reauthorize users in remote
> >> sessions
> >> -session   optional pam_reauthorize.so
> >> prepare
> >>
> >>
> >>
> >>
> >>
> >>
> >> On Thu, Mar 3, 2016 at 7:11 AM, van Sleeuwen, Berry <
> >> berry.vansleeu...@atos.net> wrote:
> >>
> >> > Hi Tom,
> >> >
> >> > Could it be the pam configuration for ssh is changed? Perhaps the
> >> password
> >> > checking in pam?
> >> >
> >> > I once had such an issue when I made a typo in /etc/pam.d/sshd. After
> >> this
> >> > I couldn't login anymore. It showed up in the console log as "Error:
> PAM:
> >> > Module is unknown for  from .". (This might be in
> >> > /var/log/messages as well.)
> >> >
> >> > I had to correct the typo using "sed" in the Linux console.
> >> >
> >> > Met vriendelijke groet/With kind regards/Mit freundlichen Grüßen,
> >> > Berry van Sleeuwen
> >> >
> >> > -Original Message-
> >> > From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
> >> Tom
> >> > Huegel
> >> > Sent: Thursday, March 03, 2016 3:23 PM
> >> > To: LINUX-390@VM.MARIST.EDU
> >> > Subject: LINUX SSH problem.
> >> >
> >> > This seems strange to me (a LINUX novice) but I have FEDORA f21 system
> >> > that has been working fine until recently.
> >> > It seems strange LINUX starts up just fine but when I try to SSH
> >> > (Putty) into it I get the initial logon screen but the password is
> always
> >> > rejected.
> >> > From the z/VM console I can logon using the same password.
> >> >
> >> > I must have touched something *&&*&%.
> >> > Any idea how to fix it?
> >> > Thanks
> >> > Tom
> >> >
> >> > --
> >> > For LINUX-390 subscribe / signoff / archive access instructions, send
> >> > email to lists...@vm.marist.edu with the message: INFO LINUX-3

Re: LINUX SSH problem.

2016-03-03 Thread Tom Huegel
I have the latest PUTTY, but just for kicks I downloaded a different SSH
client. Same results.

On Thu, Mar 3, 2016 at 8:23 AM, <karlkings...@ongov.net> wrote:

> Update your PuTTY...
>
> I've seen this before and an updated PuTTY took care of it
>
>
>
>
> From:   Tom Huegel <tehue...@gmail.com>
> To: LINUX-390@VM.MARIST.EDU
> Date:   03/03/2016 10:34 AM
> Subject:Re: LINUX SSH problem.
> Sent by:Linux on 390 Port <LINUX-390@VM.MARIST.EDU>
>
>
>
> I wish I had some idea of what I might have changed. Intentionally I
> haven't changed anything.
> There are no new messages in the /var/log/messages file after a failed
> logon.
>
> Comparing /etc/parm.d/sshd to another system that allows SSH logons ...
> they are identical.
> cat
> /etc/pam.d/sshd
>
> #%PAM-1.0
>
> auth   required
> pam_sepermit.so
> auth   substack
> password-auth
> auth   include
> postlogin
> # Used with polkit to reauthorize users in remote
> sessions
> -auth  optional pam_reauthorize.so
> prepare
> accountrequired
> pam_nologin.so
> accountinclude
> password-auth
> password   include
> password-auth
> # pam_selinux.so close should be the first session
> rule
> sessionrequired pam_selinux.so
> close
> sessionrequired
> pam_loginuid.so
> # pam_selinux.so open should only be followed by sessions to be executed
> in
> the user context
> sessionrequired pam_selinux.so open
> env_params
> sessionoptional pam_keyinit.so force
> revoke
> sessioninclude
> password-auth
> sessioninclude
> postlogin
> # Used with polkit to reauthorize users in remote
> sessions
> -session   optional pam_reauthorize.so
> prepare
>
>
>
>
>
>
> On Thu, Mar 3, 2016 at 7:11 AM, van Sleeuwen, Berry <
> berry.vansleeu...@atos.net> wrote:
>
> > Hi Tom,
> >
> > Could it be the pam configuration for ssh is changed? Perhaps the
> password
> > checking in pam?
> >
> > I once had such an issue when I made a typo in /etc/pam.d/sshd. After
> this
> > I couldn't login anymore. It showed up in the console log as "Error:
> PAM:
> > Module is unknown for  from .". (This might be in
> > /var/log/messages as well.)
> >
> > I had to correct the typo using "sed" in the Linux console.
> >
> > Met vriendelijke groet/With kind regards/Mit freundlichen Grüßen,
> > Berry van Sleeuwen
> >
> > -Original Message-
> > From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
> Tom
> > Huegel
> > Sent: Thursday, March 03, 2016 3:23 PM
> > To: LINUX-390@VM.MARIST.EDU
> > Subject: LINUX SSH problem.
> >
> > This seems strange to me (a LINUX novice) but I have FEDORA f21 system
> > that has been working fine until recently.
> > It seems strange LINUX starts up just fine but when I try to SSH
> > (Putty) into it I get the initial logon screen but the password is
> always
> > rejected.
> > From the z/VM console I can logon using the same password.
> >
> > I must have touched something *&&*&%.
> > Any idea how to fix it?
> > Thanks
> > Tom
> >
> > --
> > 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/
> > This e-mail and the documents attached are confidential and intended
> > solely for the addressee; it may also be privileged. If you receive this
> > e-mail in error, please notify the sender immediately and destroy it. As
> > its integrity cannot be secured on the Internet, Atos? liability cannot
> be
> > triggered for the message content. Although the sender endeavours to
> > maintain a computer virus-free network, the sender does not warrant that
> > this transmission is virus-free and will not be liable for any damages
> > resulting from any virus transmitted. On all offers and agreements under
> > which Atos Nederland B.V. supplies goods and/or services of whatever
> > nature, the Terms of Delivery from Atos Nederland B.V. exclusively
> apply.
> > The Terms of Delivery shall be promptly submitted to you on your
> request.
> >
>
> --
>

Re: LINUX SSH problem.

2016-03-03 Thread Tom Huegel
I wish I had some idea of what I might have changed. Intentionally I
haven't changed anything.
There are no new messages in the /var/log/messages file after a failed
logon.

Comparing /etc/parm.d/sshd to another system that allows SSH logons ...
they are identical.
cat
/etc/pam.d/sshd

#%PAM-1.0

auth   required
pam_sepermit.so
auth   substack
password-auth
auth   include
postlogin
# Used with polkit to reauthorize users in remote
sessions
-auth  optional pam_reauthorize.so
prepare
accountrequired
pam_nologin.so
accountinclude
password-auth
password   include
password-auth
# pam_selinux.so close should be the first session
rule
sessionrequired pam_selinux.so
close
sessionrequired
pam_loginuid.so
# pam_selinux.so open should only be followed by sessions to be executed in
the user context
sessionrequired pam_selinux.so open
env_params
sessionoptional pam_keyinit.so force
revoke
sessioninclude
password-auth
sessioninclude
postlogin
# Used with polkit to reauthorize users in remote
sessions
-session   optional pam_reauthorize.so
prepare






On Thu, Mar 3, 2016 at 7:11 AM, van Sleeuwen, Berry <
berry.vansleeu...@atos.net> wrote:

> Hi Tom,
>
> Could it be the pam configuration for ssh is changed? Perhaps the password
> checking in pam?
>
> I once had such an issue when I made a typo in /etc/pam.d/sshd. After this
> I couldn't login anymore. It showed up in the console log as "Error: PAM:
> Module is unknown for  from .". (This might be in
> /var/log/messages as well.)
>
> I had to correct the typo using "sed" in the Linux console.
>
> Met vriendelijke groet/With kind regards/Mit freundlichen Grüßen,
> Berry van Sleeuwen
>
> -Original Message-
> From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Tom
> Huegel
> Sent: Thursday, March 03, 2016 3:23 PM
> To: LINUX-390@VM.MARIST.EDU
> Subject: LINUX SSH problem.
>
> This seems strange to me (a LINUX novice) but I have FEDORA f21 system
> that has been working fine until recently.
> It seems strange LINUX starts up just fine but when I try to SSH
> (Putty) into it I get the initial logon screen but the password is always
> rejected.
> From the z/VM console I can logon using the same password.
>
> I must have touched something *&&*&%.
> Any idea how to fix it?
> Thanks
> Tom
>
> --
> 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/
> This e-mail and the documents attached are confidential and intended
> solely for the addressee; it may also be privileged. If you receive this
> e-mail in error, please notify the sender immediately and destroy it. As
> its integrity cannot be secured on the Internet, Atos’ liability cannot be
> triggered for the message content. Although the sender endeavours to
> maintain a computer virus-free network, the sender does not warrant that
> this transmission is virus-free and will not be liable for any damages
> resulting from any virus transmitted. On all offers and agreements under
> which Atos Nederland B.V. supplies goods and/or services of whatever
> nature, the Terms of Delivery from Atos Nederland B.V. exclusively apply.
> The Terms of Delivery shall be promptly submitted to you on your request.
>

--
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/


LINUX SSH problem.

2016-03-03 Thread Tom Huegel
This seems strange to me (a LINUX novice) but I have FEDORA f21 system that
has been working fine until recently.
It seems strange LINUX starts up just fine but when I try to SSH
(Putty) into it I get the initial logon screen but the password is always
rejected.
>From the z/VM console I can logon using the same password.

I must have touched something *&&*&%.
Any idea how to fix it?
Thanks
Tom

--
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/


OT Open Mainframe Article

2016-02-25 Thread Tom Huegel
Maybe a little OT for z/VM but a decent read.

http://www.enterprisetimes.co.uk/2016/02/24/open-mainframe-project-continue-to-grow/

--
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: FEDORA F23 and KDE

2016-01-20 Thread Tom Huegel
I was wrong apparently the groupinstall never did work..@#!#%
I guess I just have to wait for the package fix..

[root@fedora ~]# dnf groupinstall "KDE Plasma Workspaces"
Last metadata expiration check performed 0:06:36 ago on Wed Jan 20 07:09:52
2016.
Error: nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390.
nothing provides pulseaudio-module-bluetooth needed by
bluedevil-5.4.2-1.fc23.s390.
package sddm-breeze-5.4.2-4.fc23.noarch requires plasma-workspace =
5.4.2-4.fc23, but none of the providers can be installed.
nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390x.
nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390
(try to add '--allowerasing' to command line to replace conflicting
packages)
[root@fedora ~]#

On Fri, Jan 8, 2016 at 7:45 AM, Mark Post <mp...@suse.com> wrote:

> >>> On 1/8/2016 at 09:11 AM, Tom Huegel <tehue...@gmail.com> wrote:
> > Here is what that shows..
> > [root@fedora ~]# ps ax | grep dm
> >74 ?S< 0:00 [dm_bufio_cache]
> >   820 ?S< 0:00 [kdmflush]
> >   831 ?S< 0:00 [kdmflush]
> >   862 ?S< 0:00 [xfs-buf/dm-0]
> >   863 ?S< 0:00 [xfs-data/dm-0]
> >   864 ?S< 0:00 [xfs-conv/dm-0]
> >   865 ?S< 0:00 [xfs-cil/dm-0]
> >   866 ?S  0:00 [xfsaild/dm-0]
> > 18164 pts/0S+ 0:00 grep --color=auto dm
> > [root@fedora ~]# netstat -lnp | grep 177
> > [root@fedora ~]#
>
> Yeah, it's definitely not running, which is almost certainly your problem.
>
>
> 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://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: FEDORA F23 and KDE

2016-01-08 Thread Tom Huegel
Here is what that shows..
[root@fedora ~]# ps ax | grep dm
   74 ?S< 0:00 [dm_bufio_cache]
  820 ?S< 0:00 [kdmflush]
  831 ?S< 0:00 [kdmflush]
  862 ?S< 0:00 [xfs-buf/dm-0]
  863 ?S< 0:00 [xfs-data/dm-0]
  864 ?S< 0:00 [xfs-conv/dm-0]
  865 ?S< 0:00 [xfs-cil/dm-0]
  866 ?S  0:00 [xfsaild/dm-0]
18164 pts/0S+ 0:00 grep --color=auto dm
[root@fedora ~]# netstat -lnp | grep 177
[root@fedora ~]#

On Thu, Jan 7, 2016 at 2:51 PM, Mark Post <mp...@suse.com> wrote:

> >>> On 1/7/2016 at 03:52 PM, Tom Huegel <tehue...@gmail.com> wrote:
> > When I try STARTX I get:
> > [root@fedora /]# startx
> > xauth:  file /root/.serverauth.2220 does not exist
> > xinit: unable to run server "/usr/bin/X": No such file or directory
> > Use the -- option, or make sure that /usr/bin is in your path and
> > that "/usr/bin/X" is a program or a link to the right type of server
> > for your display.
>
> Yeah, that isn't going to work because that tries to start an X server on
> the graphics console, which mainframes don't have.  Which is why /usr/bin/X
> never gets built in the first place.
>
> I would try the following:
> ps ax | grep dm  <---  You're looking for a running process by the name of
> xdm, kdm, gdm, something along those lines.
>
> netstat -lnp | grep 177  <--- You're looking for a process listening on
> port 177.  On my system, it's a UDP port, not TCP.
>
> If nothing is running and listening on port 177, then someone like Dan
> will have to tell you what to do to start it.  Somewhere there will be a
> systemd unit file that needs to be enabled and started.
>
>
> 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://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: FEDORA F23 and KDE

2016-01-07 Thread Tom Huegel
When I try STARTX I get:
[root@fedora /]# startx
xauth:  file /root/.serverauth.2220 does not exist
xinit: unable to run server "/usr/bin/X": No such file or directory
Use the -- option, or make sure that /usr/bin is in your path and
that "/usr/bin/X" is a program or a link to the right type of server
for your display.  Possible server names include:
XorgCommon X server for most displays
XvfbVirtual frame buffer
Xfake   kdrive-based virtual frame buffer
Xnest   X server nested in a window on another X server
Xephyr  kdrive-based nested X server
XvncX server accessed over VNC's RFB protocol
XdmxDistributed Multi-head X server
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error
Couldn't get a file descriptor referring to the console
[root@fedora /]#

On Thu, Jan 7, 2016 at 12:14 PM, Tom Huegel <tehue...@gmail.com> wrote:

> I don't know .. I get really confused easily.
>
> On Thu, Jan 7, 2016 at 11:52 AM, Mark Post <mp...@suse.com> wrote:
>
>> >>> On 1/7/2016 at 02:44 PM, Tom Huegel <tehue...@gmail.com> wrote:
>> > It appears the packaging problem has been resolved.
>> > I ran dnf groupinstall "KDE Plasma Workspaces" and it installed.
>> >
>> > But when I VNC to FEDORA F23 all I get is a blank blue screen (It looks
>> a
>> > lot like the screen made famous by MS).
>> > At the upper left corner part of the VNC window I see kde-TigerVNC.
>> > The cursor disappears when I move into the blue area... mouse clicks are
>> > unrecognized.
>> >
>> > Any ideas about what I am doing wrong now?
>>
>> Is kdm running?  And accepting remote logins?
>>
>>
>> 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://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: Curious about crash.

2015-12-23 Thread Tom Huegel
id pointer see previous messages --'
exname

end

return



readtrk1:

'PIPE (endchar ? )',   /* start the pipe
*/
   '| trackread' disk1 cc hh,  /* read a track
*/
'| trackdeblock ', /* deblock the track
*/
'| drop 2',/* drop HA & R0 records
*/
'| stem u1track.'  /* save the records in a
stem */
if rc ¬= 0 then do  /* device error?
*/
   call msg 00, '
'
   call msg 00, 'Invalid pointer see previous messages --'
exname

end

return

msg:   /*
messages*/
  parse arg rrc, txt   /* parse the message into
its parts */
  say txt  /* display the
message  */
  if rrc = 0 then
return
  signal finish/* wrap it up and
exit  */


finish:

   if pipelevel ¬= 'PIP' then, /* did we start with modern
pipes? */
  pickpipe cms '(quiet'/* no .. put back CMS
pipes*/
exit rrc   /*
exit*/

On Tue, Dec 22, 2015 at 4:18 PM, Mark Post <mp...@suse.com> wrote:

> >>> On 12/22/2015 at 05:40 PM, Rick Troth <r...@casita.net> wrote:
> > On 12/22/2015 04:16 PM, Tom Huegel wrote:
> >> My ignorance overflows..
> >> When I look on my INTEL LINUX I can find grub.cfg in boot/grub2 but I
> >> cannot find it in the zLINUX.
>
> Most likely because it doesn't exist on your system(s).
>
> > Probably me making ASSumptions.
> > GRUB recently learned how to play in z land,
>
> Not really.  GRUB still doesn't understand DASD or SCSI over FCP (as
> implemented by z Systems).  GRUB only knows how to read the file systems
> Linux uses to find the various kernels and initrds specified in
> /boot/grub2/grub.cfg.
>
> > and the distros have picked
> > that up.
>
> To my knowledge, only SUSE Linux Enterprise Server 12 and 12 SP1 offer
> this.
>
> -snip-
> > In any case, the fact that /boot/grub exists suggests that we do want to
> > go the GRUB route and not traditional ZIPL.
>
> The zipl command is still needed on z Systems.  It's just not as
> front-and-center as it used to be in the past.  In particular, SUSE doesn't
> provide an /etc/zipl.conf any more, since there's no real need for customer
> modifications there.
>
> The way things work is that:
> 1. A Linux kernel needs to be booted from DASD or SCSI over FCP.  That
> means that zipl has to write out the pointers to the kernel and initrd so
> that the boot loader can find them.
> 2. Once the Linux system gets up to a point where GRUB can be invoked, it
> then tries to find both grub.cfg and then the Linux kernels and initrds
> that it references.
> 3. After the user specifies a specific kernel/initrd combination, possibly
> adding parameters to what is in /boot/grub2/grub.cfg, or the timeout
> happens, GRUB then boots the "real" system.
>
>
> 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://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: Curious about crash.

2015-12-22 Thread Tom Huegel
My ignorance overflows..
When I look on my INTEL LINUX I can find grub.cfg in boot/grub2 but I
cannot find it in the zLINUX.

ls /boot
bootmap symvers-2.6.32-573.8.1.el6.s390x.gz
config-2.6.32-431.el6.s390x System.map-2.6.32-431.el6.s390x
config-2.6.32-573.8.1.el6.s390x System.map-2.6.32-573.8.1.el6.s390x
grubtape0
initramfs-2.6.32-431.el6.s390x.img  vmlinuz-2.6.32-431.el6.s390x
symvers-2.6.32-431.el6.s390x.gz vmlinuz-2.6.32-573.8.1.el6.s390x
[root@tom129 /]# ls /boot/grub
ls /boot/grub
splash.xpm.gz


Two additional points: 1) I'll post my XCAT experience as best I can
remember, but probably not until I return from the holiday break in
January. 2) I wrote up the little exec (pipe trackread) I had mentioned to
compare raw dasd tracks but I couldn't determine the problem because there
were too many differences.. But if anyone would like the exec I can post it
here.. Someone may have a use for it.



On Tue, Dec 22, 2015 at 9:37 AM, Rick Troth <r...@casita.net> wrote:

> On 12/22/2015 11:55 AM, Tom Huegel wrote:
> > Why these LINUX machines are setup the way they are is a mystery to me.
> As
> > part of the lab exercise I used XCAT to provision the machines..
>
> So we're all learning from your experience.
> Kind of you to walk point with XCAT for the rest of us.   :-)
>
>
> > Following what Rick said I was able to boot the failing machine.. I don't
> > know what to do next, but it is booted.
>
> Fab!
>
> Now you can try to run that 'diff' which Russ asked for.
>
>
> mv grub.cfg grub.cfg-BAK
> grub2-mkconfig -o /boot/grub2/grub.cfg
> diff grub.cfg-BAK grub.cfg
>
>
> I don't know what to tell you about stamping a now-good bootstrap (with
> GRUB).
> In times past it would be 'mkinitrd' followed by 'zipl'. Can someone say
> if that's viable here?
>
> -- R; <><
>
> --
> 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: Curious about crash.

2015-12-22 Thread Tom Huegel
Why these LINUX machines are setup the way they are is a mystery to me. As
part of the lab exercise I used XCAT to provision the machines..

Following what Rick said I was able to boot the failing machine.. I don't
know what to do next, but it is booted.

On Mon, Dec 21, 2015 at 6:45 PM, Rick Troth <r...@casita.net> wrote:

> On 12/16/2015 09:45 AM, Tom Huegel wrote:
> > VFS: Cannot open root device "disk/by-path/ccw-0.0.0100-part2" or
> > unknown-block(0,0)
> > Please append a correct "root=" boot option; here are the available
> > partitions:
>
> Nothin.
> No partitions. (More significantly, no disks at all.)
>
> I didn't see it mentioned, but if the two systems use the same device
> addresses then you might be able to boot from the good system.
> Guessing that the INITRD is shot. So ...
>
> #cp link good 100 500 rr
> #cp ipl 500 clear
>
>  ... and the INITRD there will have the needed modules and startup magic
> to "see" your 100 disk. You do not need R/W access to the link. It
> should not try to mount that disk (or a partition thereof) as root.
> You're only using the bootstrap, the IPL text.
>
> -- R; <><
>
> --
> 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: Curious about crash.

2015-12-17 Thread Tom Huegel
Like I mentioned earlier this is not production system that is down. It is
just a lab system that can be re-installed easily. It would be nice to have
some idea of what killed it in the first place.
Using DITTO I was visually trying to compare the DASD from the working and
nonworking systems, but that was inconclusive. If I get a chance later I'll
write a quick PIPE to do trackreads and compare the two disks, maybe
that'll show something.
Thanks for all of the tips and comments.
Tom


On Thu, Dec 17, 2015 at 6:14 AM, Jonathan Quay 
wrote:

> Isn't it complaining about not finding the root filesystem, not about not
> finding the /boot filesystem?  I would take a look at that partition in
> question that it can't find.
>
> --
> 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: Curious about crash.

2015-12-16 Thread Tom Huegel
Well Mark, I tried all 3 ipl's they all failed with the same message.

On Wed, Dec 16, 2015 at 12:43 PM, Mark Post <mp...@suse.com> wrote:

> >>> On 12/16/2015 at 10:44 AM, Tom Huegel <tehue...@gmail.com> wrote:
> -snip-
> > CP I 100
>
> You're IPLing from device number 100, so that means the disk is available
> to the guest.
>
> -snip-
> > Kernel command line: root=/dev/disk/by-path/ccw-0.0.0100-part2 rd_NO_LUKS
> > LANG=en_US.UTF-8  KEYTABLE=us rd_NO_MD SYSFONT=latarcyrheb
> > -sun16  rd_DASD=0.0.0100 rd_NO_LVM rd_NO_DM
> > BOOT_IMAGE=0
>
> I'm not sure, but it's possible the rd_dasd parameter is case sensitive.
> On our systems that use dracut, the parameter is actually rd.dasd, not
> rd_dasd.  The same with the other parms: rc.something, not rd_something.
>
> -snip-
> > VFS: Cannot open root device "disk/by-path/ccw-0.0.0100-part2" or
> > unknown-block(0,0)
>
> And up to this point, I see nothing from the DASD driver talking about
> activating device number 100.  Which is what leads me to wonder about the
> kernel parms you have.
>
> Something you could try to work around the problem would be this:
> ipl 100 parm rd.dasd=0.0.0100
>
> and if that doesn't work, then
> ipl 100 parm rd_dasd=0.0.0100
>
> and if that doesn't work, then just for grins
> ipl 100 parm rd.dasd=0.0.0100 rd_dasd=0.0.0100
>
>
> 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://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: Curious about crash.

2015-12-16 Thread Tom Huegel
Right the kernel appears to be different.
>From the working system:
Linux version 2.6.32-431.66.1.el6.s390x (
mockbu...@s390-002.build.bos.redhat.com) (gcc version 4.4.7 20120313 (Red
Hat 4.4.7-4) (GCC
) ) #1 SMP Fri Oct 2 13:20:16 EDT
2015

setup: Linux is running as a z/VM guest operating system in 64-bit mode



On Wed, Dec 16, 2015 at 7:46 AM, R P Herrold <herr...@owlriver.com> wrote:

> On Wed, 16 Dec 2015, Alan Altmark wrote:
>
> > On Wednesday, 12/16/2015 at 02:48 GMT, Tom Huegel <tehue...@gmail.com>
> > wrote:
>
> > > Now the registered machine fails to boot, the other one works fine.
> >
> > A gamma ray collided with a 1 and knocked it over, turning it into a 0.
> > That's the only explanation I can think of.  I used to think it was
> > sunspots or coronal mass ejections, but I've moved on.
>
> Assumedly the non-registered machine is still running the
> older kernel (please check which kernals are installed thus:
> rpm -qa kernel\*
> )
>
> As such mkinitrd (which seems to be failing, perhaps due for a
> improperly specified path to an initrd, was in play (per the
> earlier message quoted)
>
> I have found 'grub2' and grubby, to be quite sensitive to the
> configuration file it is handed.  There are 'order issues' on
> what needs to appear before and after other items, not well
> documented.  From my notes:
>
> The following will generate the  correct grub.cfg file
> ( /boot/grub2/ is RHEL / ClefOS 7 and later ... )
>
> cd /boot/grub2/
> mv grub.cfg grub.cfg-BAK
> grub2-mkconfig -o /boot/grub2/grub.cfg
>
> but sadly the 'fix' does not persist when a new kernel is
> installed. not sure why as I have been off solving other
> issues
>
> -- Russ herrold
>
> --
> 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/


Curious about crash.

2015-12-16 Thread Tom Huegel
I have 2 lab z/VM guest machines both are RHEL 6.5, one registered one not
registered. I recently ran 'yum update' on both and all seemed to go well
until I did a reboot.
Now the registered machine fails to boot, the other one works fine.

I'm probably not going to fix it (unless someone sees an easy fix) I am
more curious as to whether I did something wrong, or any guesses as to what
happened.
Anyways here is the last few messages:

VFS: Cannot open root device "disk/by-path/ccw-0.0.0100-part2" or
unknown-block(0,0)
Please append a correct "root=" boot option; here are the available
partitions:
Kernel panic - not syncing: VFS: Unable to mount root fs on
unknown-block(0,0)
CPU: 0 Not tainted 2.6.32-573.8.1.el6.s390x
#1
Process swapper (pid: 1, task: 7fe83370, ksp:
7fe8b958)
7fe8bd20 7fe8bca0 0002

   7fe8bd40 7fe8bcb8 7fe8bcb8
004f7108
   0011  7eb63000
03d281bb7da8
   000d 000c 7fe8bd10

    0010582c 7fe8bca0
7fe8bce0
Call
Trace:

([<0010572c>]
show_trace+0xe8/0x138)
 [<004f6f42>]
panic+0xde/0x250
 [<008744c2>]
mount_block_root+0x292/0x33c
 [<008747d6>]
prepare_namespace+0x1e2/0x220
 [<00873890>]
kernel_init+0x464/0x47c
 [<0010a746>]
kernel_thread_starter+0x6/0xc
 [<0010a740>]
kernel_thread_starter+0x0/0xc
HCPGIR450W CP entered; disabled wait PSW 00020001 8000  001156BA

--
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: Curious about crash.

2015-12-16 Thread Tom Huegel
;disk/by-path/ccw-0.0.0100-part2" or
unknown-block(0,0)
Please append a correct "root=" boot option; here are the available
partitions:
Kernel panic - not syncing: VFS: Unable to mount root fs on
unknown-block(0,0)
CPU: 0 Not tainted 2.6.32-573.8.1.el6.s390x
#1

Process swapper (pid: 1, task: 7fe83370, ksp:
7fe8b958)

7fe8bd20 7fe8bca0 0002


   7fe8bd40 7fe8bcb8 7fe8bcb8
004f7108
   0011  7eb63000
03d281bb7da8
   000d 000c 7fe8bd10

    0010582c 7fe8bca0
7fe8bce0
Call
Trace:

([<0010572c>]
show_trace+0xe8/0x138)

 [<004f6f42>]
panic+0xde/0x250

 [<008744c2>]
mount_block_root+0x292/0x33c

 [<008747d6>]
prepare_namespace+0x1e2/0x220

 [<00873890>]
kernel_init+0x464/0x47c

 [<0010a746>]
kernel_thread_starter+0x6/0xc

 [<0010a740>]
kernel_thread_starter+0x0/0xc

HCPGIR450W CP entered; disabled wait PSW 00020001 8000 
001156BA







RUNNING   SCZVMLX2


On Wed, Dec 16, 2015 at 7:35 AM, Gregg Levine <gregg.drw...@gmail.com>
wrote:

> Hello!
> Actually Alan you're thinking of why hundreds of satellites ignored
> yesterday.
>
> Actually it looks like that penguin ignored the root setting for
> things. First time I've seen one that revolting.
>
> Is it possible to see the log entries before that first line?
> -
> Gregg C Levine gregg.drw...@gmail.com
> "This signature fought the Time Wars, time and again."
>
>
> On Wed, Dec 16, 2015 at 10:19 AM, Alan Altmark <alan_altm...@us.ibm.com>
> wrote:
> > On Wednesday, 12/16/2015 at 02:48 GMT, Tom Huegel <tehue...@gmail.com>
> > wrote:
> >> Now the registered machine fails to boot, the other one works fine.
> >
> > A gamma ray collided with a 1 and knocked it over, turning it into a 0.
> > That's the only explanation I can think of.  I used to think it was
> > sunspots or coronal mass ejections, but I've moved on.
> >
> > Alan Altmark
> >
> > Senior Managing z/VM and Linux Consultant
> > Lab Services System z Delivery Practice
> > IBM Systems & Technology Group
> > ibm.com/systems/services/labservices
> > office: 607.429.3323
> > mobile; 607.321.7556
> > alan_altm...@us.ibm.com
> > IBM Endicott
> >
> > --
> > 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/


FEDORA 23 install issue

2015-12-08 Thread Tom Huegel
I am trying to do a z/VM install of F23 via a virtual reader IPL. This
worked with F21.

Here is the error.

[  565.043571] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqu
eue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=?
terminal=? res=success'
[  565.043705] fedora.hds.com systemd[1]: Reached target Remote File
Systems (Pre).
[  565.043840] fedora.hds.com systemd[1]: Starting Remote File Systems
(Pre).
[  565.043964] fedora.hds.com systemd[1]: Reached target Remote File
Systems.
[  565.044090] fedora.hds.com systemd[1]: Starting Remote File
Systems.
[  565.044223] fedora.hds.com systemd[1]: Starting dracut pre-mount
hook...
[  565.053115] fedora.hds.com systemd[1]: Started dracut pre-mount
hook.
[  565.053155] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mo
unt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=?
terminal=? res=success'
[  565.053290] fedora.hds.com systemd[1]: Mounting
/sysroot...

[  565.049012] fedora.hds.com kernel: audit: type=1130
audit(1449584485.950:15): pid=1 uid=0 auid=4294967295 ses=4294967295
subj=ker
nel msg='unit=dracut-pre-mount comm="systemd"
exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=?
res=success'
[  565.057205] fedora.hds.com mount[1449]: mount.nfs: Failed to resolve
server live: No address associated with hostname
[  565.057779] fedora.hds.com systemd[1]: sysroot.mount: Mount process
exited, code=exited status=32
[  565.057911] fedora.hds.com systemd[1]: Failed to mount
/sysroot.
[  565.058037] fedora.hds.com systemd[1]: Dependency failed for Initrd Root
File System.
[  565.058164] fedora.hds.com systemd[1]: Dependency failed for Reload
Configuration from the Real Root.
[  565.058297] fedora.hds.com systemd[1]: initrd-parse-etc.service: Job
initrd-parse-etc.service/start failed with result 'dependenc
y'.

[  565.058425] fedora.hds.com systemd[1]: initrd-parse-etc.service:
Triggering OnFailure= dependencies.
[  565.058580] fedora.hds.com systemd[1]: initrd-root-fs.target: Job
initrd-root-fs.target/start failed with result 'dependency'.
[  565.058714] fedora.hds.com systemd[1]: initrd-root-fs.target: Triggering
OnFailure= dependencies.
[  565.058843] fedora.hds.com systemd[1]: sysroot.mount: Unit entered
failed state.
[  565.058967] fedora.hds.com systemd[1]: Stopped dracut pre-pivot and
cleanup hook.

Here is my PRM file. I haven't been able to find any doc that something has
changed.

ro ramdisk_size=4 cio_ignore=all,!0.0.0009
vnc
rd.dasd=0.0.0250,251,252,253,254,255
rd.dasd=0.0.025f
ip=172.17.51.126::172.17.50.1:255.255.254.0:fedora.hds.com:enccw0.0.0340:none

rd.znet=qeth,0.0.0340,0.0.0341,0.0.0342,layer2=0,portno=0

http_proxy=http://thuegel:p...@xx.xx.xx.xx:8080
proxy=http://thuegel:p...@xx.xx.xx.xx:8080
root=live:
https://dl.fedoraproject.org/pub/fedora-secondary/releases/23/Server/s
390x/os/images/install.img

nameserver=xx.xx.xx.xx

Has anyone seen this?
Thanks
Tom

--
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: FEDORA 23 install issue

2015-12-08 Thread Tom Huegel
Dan,
That line is OK, it is just the display that looks funky.

I get the error after several screens of this:
[ [32m  OK   [0m] Started Show Plymouth Boot
Screen.

[ [32m  OK   [0m] Reached target
Paths.

[ [32m  OK   [0m] Reached target Basic
System.

[   27.999173] dracut-initqueue[719]: % Total% Received % Xferd
Average Speed   TimeTime Time  Current
[   27.999768] dracut-initqueue[719]: Dload  Upload   Total   Spent
Left  Speed
[   52.072388] dracut-initqueue[719]: 0 00 00 0
0  0 --:--:-- --:--:-- --:--:-- 0   0 00
  00 0  0  0 --:--:-- --:--:-- --:--:-- 0   0 0
0 00 0  0  0 --:--:--  0:00:01 --:--:
-- 0   0 00 00 0  0  0 --:--:--  0:00:02
--:--:-- 0   0 00 00 0  0
0 --:--:--  0:00:03 --:--:-- 0   0 00 00 0
0  0 --:--:--  0:00:04 --:--:-- 0   0 00
 00 0  0  0 --:--:--  0:00:05 --:--:-- 0   0 0
0 00 0  0  0 --:--:--  0:00:06 --:--:-
- 0   0 00 00 0  0  0 --:--:--  0:00:07
--:--:-- 0   0  260M0 491520 0   6083  0
 12:27:36  0:00:08 12:27:28 10080   0  260M0  784k0 0
88874  0  0:51:10  0:00:09  0:51:01  162k   0  260M0 1616
k0 0   161k  0  0:27:30  0:00:10  0:27:20  336k   0  260M0
2256k0 0   204k  0  0:21:39  0:00:11  0:21:28
  470k   0  260M0 2608k0 0   215k  0  0:20:37  0:00:12
0:20:25  510k   1  260M1 2896k0 0   222k  0

On Tue, Dec 8, 2015 at 7:53 AM, Dan Horák <dho...@redhat.com> wrote:

> On Tue, 8 Dec 2015 07:22:21 -0800
> Tom Huegel <tehue...@gmail.com> wrote:
>
> > I am trying to do a z/VM install of F23 via a virtual reader IPL. This
> > worked with F21.
> >
> > Here is the error.
> >
> > [  565.043571] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
> > auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqu
> > eue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=?
> > terminal=? res=success'
> > [  565.043705] fedora.hds.com systemd[1]: Reached target Remote File
> > Systems (Pre).
> > [  565.043840] fedora.hds.com systemd[1]: Starting Remote File Systems
> > (Pre).
> > [  565.043964] fedora.hds.com systemd[1]: Reached target Remote File
> > Systems.
> > [  565.044090] fedora.hds.com systemd[1]: Starting Remote File
> > Systems.
> > [  565.044223] fedora.hds.com systemd[1]: Starting dracut pre-mount
> > hook...
> > [  565.053115] fedora.hds.com systemd[1]: Started dracut pre-mount
> > hook.
> > [  565.053155] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
> > auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mo
> > unt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=?
> > terminal=? res=success'
> > [  565.053290] fedora.hds.com systemd[1]: Mounting
> > /sysroot...
> >
> > [  565.049012] fedora.hds.com kernel: audit: type=1130
> > audit(1449584485.950:15): pid=1 uid=0 auid=4294967295 ses=4294967295
> > subj=ker
> > nel msg='unit=dracut-pre-mount comm="systemd"
> > exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=?
> > res=success'
> > [  565.057205] fedora.hds.com mount[1449]: mount.nfs: Failed to
> > resolve server live: No address associated with hostname
> > [  565.057779] fedora.hds.com systemd[1]: sysroot.mount: Mount process
> > exited, code=exited status=32
> > [  565.057911] fedora.hds.com systemd[1]: Failed to mount
> > /sysroot.
> > [  565.058037] fedora.hds.com systemd[1]: Dependency failed for
> > Initrd Root File System.
> > [  565.058164] fedora.hds.com systemd[1]: Dependency failed for Reload
> > Configuration from the Real Root.
> > [  565.058297] fedora.hds.com systemd[1]: initrd-parse-etc.service:
> > Job initrd-parse-etc.service/start failed with result 'dependenc
> > y'.
> >
> > [  565.058425] fedora.hds.com systemd[1]: initrd-parse-etc.service:
> > Triggering OnFailure= dependencies.
> > [  565.058580] fedora.hds.com systemd[1]: initrd-root-fs.target: Job
> > initrd-root-fs.target/start failed with result 'dependency'.
> > [  565.058714] fedora.hds.com systemd[1]: initrd-root-fs.target:
> > Triggering OnFailure= dependencies.
> > [  565.058843] fedora.hds.com systemd[1]: sysroot.mount: Unit entered
> > failed state.
> > [  565.058967] fedora.hds.com systemd[1]: Stopped dracut pre-pivot and
> > cleanup hook.
> >
> > Here is my PRM file. I haven't been able to find any doc that
> > something has changed.

Re: FEDORA 23 install issue

2015-12-08 Thread Tom Huegel
Dan/Jan,

I tried Jan's suggestion and replaced
root=live:
https://dl.fedoraproject.org/pub/fedora-secondary/releases/23/Server/s390x/os/images/install.img
with:
inst.repo=
https://dl.fedoraproject.org/pub/fedora-secondary/releases/23/Server/s390x/os/

Now it is working..
Thanks

On Tue, Dec 8, 2015 at 8:43 AM, Dan Horák <dho...@redhat.com> wrote:

> On Tue, 8 Dec 2015 08:25:12 -0800
> Tom Huegel <tehue...@gmail.com> wrote:
>
> > Dan,
> > That line is OK, it is just the display that looks funky.
>
> ah, then the mail client :-)
>
> But do you have more of the logs? I can't see an other error in the
> parts you posted.
>
>
> Dan
>
> > I get the error after several screens of this:
> > [ [32m  OK   [0m] Started Show Plymouth Boot
> > Screen.
> >
> > [ [32m  OK   [0m] Reached target
> > Paths.
> >
> > [ [32m  OK   [0m] Reached target Basic
> > System.
> >
> > [   27.999173] dracut-initqueue[719]: % Total% Received % Xferd
> > Average Speed   TimeTime Time  Current
> > [   27.999768] dracut-initqueue[719]: Dload  Upload   Total   Spent
> > Left  Speed
> > [   52.072388] dracut-initqueue[719]: 0 00 00 0
> > 0  0 --:--:-- --:--:-- --:--:-- 0   0 00
> >   00 0  0  0 --:--:-- --:--:-- --:--:-- 0   0
> > 0 0 00 0  0  0 --:--:--  0:00:01 --:--:
> > -- 0   0 00 00 0  0  0 --:--:--
> > 0:00:02
> > --:--:-- 0   0 00 00 0  0
> > 0 --:--:--  0:00:03 --:--:-- 0   0 00 00 0
> > 0  0 --:--:--  0:00:04 --:--:-- 0   0 00
> >  00 0  0  0 --:--:--  0:00:05 --:--:-- 0   0 0
> > 0 00 0  0  0 --:--:--  0:00:06 --:--:-
> > - 0   0 00 00 0  0  0 --:--:--
> > 0:00:07
> > --:--:-- 0   0  260M0 491520 0   6083  0
> >  12:27:36  0:00:08 12:27:28 10080   0  260M0  784k0 0
> > 88874  0  0:51:10  0:00:09  0:51:01  162k   0  260M0 1616
> > k0 0   161k  0  0:27:30  0:00:10  0:27:20  336k   0
> > 260M0 2256k0 0   204k  0  0:21:39  0:00:11  0:21:28
> >   470k   0  260M0 2608k0 0   215k  0  0:20:37  0:00:12
> > 0:20:25  510k   1  260M1 2896k0 0   222k  0
> >
> > On Tue, Dec 8, 2015 at 7:53 AM, Dan Horák <dho...@redhat.com> wrote:
> >
> > > On Tue, 8 Dec 2015 07:22:21 -0800
> > > Tom Huegel <tehue...@gmail.com> wrote:
> > >
> > > > I am trying to do a z/VM install of F23 via a virtual reader IPL.
> > > > This worked with F21.
> > > >
> > > > Here is the error.
> > > >
> > > > [  565.043571] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
> > > > auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqu
> > > > eue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=?
> > > > addr=? terminal=? res=success'
> > > > [  565.043705] fedora.hds.com systemd[1]: Reached target Remote
> > > > File Systems (Pre).
> > > > [  565.043840] fedora.hds.com systemd[1]: Starting Remote File
> > > > Systems (Pre).
> > > > [  565.043964] fedora.hds.com systemd[1]: Reached target Remote
> > > > File Systems.
> > > > [  565.044090] fedora.hds.com systemd[1]: Starting Remote File
> > > > Systems.
> > > > [  565.044223] fedora.hds.com systemd[1]: Starting dracut
> > > > pre-mount hook...
> > > > [  565.053115] fedora.hds.com systemd[1]: Started dracut pre-mount
> > > > hook.
> > > > [  565.053155] fedora.hds.com audit[1]: SERVICE_START pid=1 uid=0
> > > > auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-mo
> > > > unt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=?
> > > > addr=? terminal=? res=success'
> > > > [  565.053290] fedora.hds.com systemd[1]: Mounting
> > > > /sysroot...
> > > >
> > > > [  565.049012] fedora.hds.com kernel: audit: type=1130
> > > > audit(1449584485.950:15): pid=1 uid=0 auid=4294967295
> > > > ses=4294967295 subj=ker
> > > > nel msg='unit=dracut-pre-mount comm="systemd"
> > > > exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=?
> > > > res=success'
> > > > [  565.057205] fedora.hds.com mount[1449]: mount.nfs: Failed to
> > > &g

FEDORA F23 and KDE

2015-12-08 Thread Tom Huegel
When I try to do this:
[root@fedora ~]# dnf groupinstall "KDE Plasma Workspaces"

I get this:
Last metadata expiration check performed 2:55:39 ago on Tue Dec  8 14:04:18
2015.
Error: nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390.
nothing provides pulseaudio-module-bluetooth needed by
bluedevil-5.4.2-1.fc23.s390.
package sddm-breeze-5.4.2-4.fc23.noarch requires plasma-workspace =
5.4.2-4.fc23, but none of the providers can be installed.
nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390x.
nothing provides plasmashell >= 5.4 needed by
plasma-workspace-5.4.2-4.fc23.s390
(try to add '--allowerasing' to command line to replace conflicting
packages)

I searched but can't find any clue as how to fix it.

Any ideas?
Thanks
Tom

--
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: Changing SSI cluster name on z/VM

2015-10-21 Thread Tom Huegel
There is a package on the IBM VM download "RENSSI" that you might want to
take a look at. It's purpose is not to change the cluster names but to
change member names. There may be some useful information there.

On Wed, Oct 21, 2015 at 12:53 PM, O'Brien, Dennis L <
dennis.l.o'br...@bankofamerica.com> wrote:

> Troy,
> You'll probably need to run FORMSSI to rebuild the PDR.
>
> You'll need the whole cluster down to rebuild the PDR.  Either bring one
> member up in REPAIR mode to make the change, or access the PDR volume from
> a system that is outside of the cluster.  I expect that changing the SSI
> name in SYSTEM CONFIG requires the whole cluster to be down, too.
>
>
>   Dennis
> O'Brien
>
> "I'll tell you what--we're having an earth--"  -- Al Michaels,
> broadcasting Game 3 of the World Series, before the feed was cut by the
> Loma Prieta earthquake, 17 Oct 1989
>
>
> -Original Message-
> From: Linux on 390 Port [mailto:LINUX-390@vm.marist.edu] On Behalf Of
> Troy Slaughter
> Sent: Wednesday, October 21, 2015 11:20
> To: LINUX-390@vm.marist.edu
> Subject: Changing SSI cluster name on z/VM
>
> I, once, ran across some "use at your own risk" steps to change the SSI
> cluster name of a z/VM system.  I can't seem to locate them now.  Does
> anyone know how to do this?
>
> Steps I do know.
>
> Change OWNER info for those volume that have SSI specified..(spool,
> page...)
> Update SYSTEM CONFIG file with new SSI name.
>
> There was a few other steps that escape me.
>
> [cid:_2_0A7184240A7181B80054F44C86257CBE]
>
> ___
> Troy Slaughter | Software Consultant | Enterprise Enablement
> 50 South Lasalle Street, LQ 18SW, Chicago, Illinois, 60603 | Phone
> 312-557-6322 | Cell 312-208-3735 | t...@ntrs.com 
> Please visit northerntrust.com
> CONFIDENTIALITY NOTICE: This communication is confidential, may be
> privileged and is meant only for the intended recipient. If you are not the
> intended recipient, please notify the sender ASAP and delete this message
> from your system.  NTAC:3NS-20
>
> P Please consider the environment before printing this e-mail.
>
>
> --
> 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/
>
> --
> This message, and any attachments, is for the intended recipient(s) only,
> may contain information that is privileged, confidential and/or proprietary
> and subject to important terms and conditions available at
> http://www.bankofamerica.com/emaildisclaimer.   If you are not the
> intended recipient, please delete this message.
>
> --
> 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/


HYPERPAV problem RHEL6.5

2015-06-30 Thread Tom Huegel
I must be doing something wrong but I sure don't see it.
Has anyone seen this behavior?
Thanks
Tom

 Devices dedicated in z/VM directory.
   DEDICATE B600 B600
   DEDICATE B640 B640
   DEDICATE B641 B641
   DEDICATE B642 B642
   DEDICATE B643 B643

From a class B user
CP Q PAV
Device B600 is a base HyperParallel Access Volume device in Pool 0
Device B640 is an alias HyperParallel Access Volume device in Pool 0
Device B641 is an alias HyperParallel Access Volume device in Pool 0
Device B642 is an alias HyperParallel Access Volume device in Pool 0
Device B643 is an alias HyperParallel Access Volume device in Pool 0


From the z/LINUX virtual machine
CP Q V PAV
HYPERPAV BASE  B600 ON B600 0ZB600 POOL 0
HYPERPAV ALIAS B640 ON B640 POOL 0
HYPERPAV ALIAS B641 ON B641 POOL 0
HYPERPAV ALIAS B642 ON B642 POOL 0
HYPERPAV ALIAS B643 ON B643 POOL 0


Set them online to LINUX
chccwdev -e
b600,b640-b643

Setting device 0.0.b600
online
dasd-eckd 0.0.b600: New DASD 3390/0E (CU 3990/01) with 262668 cylinders, 15
heads, 224 sectors
dasd-eckd 0.0.b600: DASD with 4 KB/block, 189120960 KB total size, 48
KB/track, linux disk layout
 dasdb:(nonl)
dasdb1

Done

Setting device 0.0.b640
online
dasd-eckd 0.0.b640: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
heads, 0 sectors
Done

Setting device 0.0.b641
online
dasd-eckd 0.0.b641: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
heads, 0 sectors
Done

Setting device 0.0.b642
online
dasd-eckd 0.0.b642: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
heads, 0 sectors
Done

Setting device 0.0.b643
online
dasd-eckd 0.0.b643: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
heads, 0 sectors
Done

[root@tom128
~]#



As seen by LINUX OS.
lsdasd

Bus-ID Status  Name  Device  Type  BlkSz  Size
Blocks
==

0.0.b640   active  ??? : ECKD
0
0.0.b641   active  ??? : ECKD
0
0.0.b642   active  ??? : ECKD
0
0.0.b643   active  ??? : ECKD
0
0.0.0100   active  dasda 94:0ECKD  4096   7042MB
1802880
0.0.b600   n/f dasdb 94:4
ECKD
[root@tom128 ~]#

WHY DOESN'T LINUX SEE THE ALIAS
VOLUMES?

--
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: HYPERPAV problem RHEL6.5

2015-06-30 Thread Tom Huegel
Thanks for the responses.
My problem was with the sequence of events.
I was doing dasdfmt of the base after attaching the devices (base and
aliases).
Then I thought just chccwdev -d and then chccwdev -e would be enough.
What I needed to do was after dasdfmt to attach (detach first if necessary)
the aliases.
Then I see what I expected.
lsdasd

Bus-ID Status  Name  Device  Type  BlkSz  Size
Blocks
==

0.0.b640   alias
ECKD
0.0.b641   alias
ECKD
0.0.b642   alias
ECKD
0.0.b643   alias
ECKD
0.0.0100   active  dasda 94:0ECKD  4096   7042MB
1802880
0.0.b600   active  dasdb 94:4ECKD  4096   184688MB
47280240
[root@tom128 ~]# dasd-eckd 0.0.b600: SIM - SRC:
62600280


On Tue, Jun 30, 2015 at 9:51 AM, Vitale, Joseph joseph.vit...@bnymellon.com
 wrote:

 I have done this 2 ways.  For RH, I also update /etc/dasd.conf

 COMMAND DEF HYPERPAVALIAS 7EE0 FOR BASE 800
 MDISK 800 3390  32760 LX7E10 MR READ WRITE MULT


 COMMAND DEF HYPERPAVALIAS 7EE0 FOR BASE 800
 MDISK 800 3390 DEVNO 7E38 MR READ WRITE MULT

 Joe

 Joseph Vitale
 Technology Services Group
 Mainframe Operating Systems

 Pershing Plaza
 95 Christopher Columbus Drive
 Floor 14
 Jersey City,  N.J.  07302
 Work  201-395-1509
 Cell917-903-0102

 -Original Message-
 From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Tom
 Huegel
 Sent: Tuesday, June 30, 2015 12:44 PM
 To: LINUX-390@VM.MARIST.EDU
 Subject: HYPERPAV problem RHEL6.5

 I must be doing something wrong but I sure don't see it.
 Has anyone seen this behavior?
 Thanks
 Tom

  Devices dedicated in z/VM directory.
DEDICATE B600 B600
DEDICATE B640 B640
DEDICATE B641 B641
DEDICATE B642 B642
DEDICATE B643 B643

 From a class B user
 CP Q PAV
 Device B600 is a base HyperParallel Access Volume device in Pool 0 Device
 B640 is an alias HyperParallel Access Volume device in Pool 0 Device B641
 is an alias HyperParallel Access Volume device in Pool 0 Device B642 is an
 alias HyperParallel Access Volume device in Pool 0 Device B643 is an alias
 HyperParallel Access Volume device in Pool 0


 From the z/LINUX virtual machine
 CP Q V PAV
 HYPERPAV BASE  B600 ON B600 0ZB600 POOL 0 HYPERPAV ALIAS B640 ON B640 POOL
 0 HYPERPAV ALIAS B641 ON B641 POOL 0 HYPERPAV ALIAS B642 ON B642 POOL 0
 HYPERPAV ALIAS B643 ON B643 POOL 0


 Set them online to LINUX
 chccwdev -e
 b600,b640-b643

 Setting device 0.0.b600
 online
 dasd-eckd 0.0.b600: New DASD 3390/0E (CU 3990/01) with 262668 cylinders,
 15 heads, 224 sectors dasd-eckd 0.0.b600: DASD with 4 KB/block, 189120960
 KB total size, 48 KB/track, linux disk layout
  dasdb:(nonl)
 dasdb1

 Done

 Setting device 0.0.b640
 online
 dasd-eckd 0.0.b640: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
 heads, 0 sectors Done

 Setting device 0.0.b641
 online
 dasd-eckd 0.0.b641: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
 heads, 0 sectors Done

 Setting device 0.0.b642
 online
 dasd-eckd 0.0.b642: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
 heads, 0 sectors Done

 Setting device 0.0.b643
 online
 dasd-eckd 0.0.b643: New DASD 3390/0A (CU 3990/01) with 0 cylinders, 0
 heads, 0 sectors Done

 [root@tom128
 ~]#



 As seen by LINUX OS.
 lsdasd

 Bus-ID Status  Name  Device  Type  BlkSz  Size
 Blocks

 ==

 0.0.b640   active  ??? : ECKD
 0
 0.0.b641   active  ??? : ECKD
 0
 0.0.b642   active  ??? : ECKD
 0
 0.0.b643   active  ??? : ECKD
 0
 0.0.0100   active  dasda 94:0ECKD  4096   7042MB
 1802880
 0.0.b600   n/f dasdb 94:4
 ECKD
 [root@tom128 ~]#

 WHY DOESN'T LINUX SEE THE ALIAS
 VOLUMES?

 --
 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/

 The information contained in this e-mail, and any attachment, is
 confidential and is intended solely for the use of the intended recipient.
 Access, copying or re-use of the e-mail or any attachment, or any
 information contained therein, by any other person is not authorized. If
 you are not the intended recipient please return the e-mail to the sender
 and delete it from your computer. Although we attempt to sweep e-mail and
 attachments for viruses, we do not guarantee that either are virus-free and
 accept no liability for any damage sustained as a result of viruses.

 Please refer to http://disclaimer.bnymellon.com/eu.htm for certain
 disclosures relating to European legal entities

Re: PAV z/VM and LINUX s390x (SUSE) question

2015-06-10 Thread Tom Huegel
Got it..
Thanks

On Wed, Jun 10, 2015 at 12:00 PM, Mark Post mp...@suse.com wrote:

  On 6/10/2015 at 02:08 PM, Tom Huegel tehue...@gmail.com wrote:
  Hi all.
  This should be a simple question for someone who has done it before.
  How do I get z/LINUX to recognize and use pav alias volumes?

 You mean like this?
 # lsdasd
 Bus-ID Status  Name  Device  Type  BlkSz  Size  Blocks

 ==
 0.0.27e0   alias ECKD
 0.0.0160   active  dasda 94:0DIAG  51297MB  20
 0.0.2601   active  dasdb 94:4ECKD  4096   7043MB1803060

  I have the volumes defined, they are attached to the LINUX system
  everything shows up when I do Q PAV..
 
  What am I missing?

 Do you have both a base volume _and_ an alias from the same pool attached
 to the Linux guest?  Are they both online from the Linux perspective?


 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://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/


PAV z/VM and LINUX s390x (SUSE) question

2015-06-10 Thread Tom Huegel
Hi all.
This should be a simple question for someone who has done it before.
How do I get z/LINUX to recognize and use pav alias volumes?

I have the volumes defined, they are attached to the LINUX system
everything shows up when I do Q PAV..

What am I missing?

Thanks
Tom

--
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: z/Linux IPL UNIT ERROR

2015-05-27 Thread Tom Huegel
200 is your virtual disk address that is a mdisk on 611E. Follow Neale's
DDR instructions for DASD 200..

On Wed, May 27, 2015 at 3:54 AM, Mauro Souza thoriu...@gmail.com wrote:

 I think you should try to IPL from the 0200 address.

 Have you (or someone else) formatted any dasd recently? This message looks
 like a dasd has been killed...
 On May 27, 2015 03:38, Mainframe Mainframe mainframe1...@gmail.com
 wrote:

  I am trying from
  611E, thats my z/Linux volser for this guest.
 
  On Wed, May 27, 2015 at 11:46 AM, Mark Post mp...@suse.com wrote:
 
On 5/27/2015 at 01:29 AM, Mainframe Mainframe 
  mainframe1...@gmail.com
   wrote:
  
Below is the output ..
   
00: CP  Q V DA
00: DASD 0190 3390 ZVM1RES R/O107 CYL ON DASD  B908
 SUBCHANNEL
  =
0008
00: DASD 0191 3390 Q58D2F R/O  5 CYL ON DASD  8D2F
 SUBCHANNEL =
   0009
00: DASD 019D 3390 ZVM1RES R/O146 CYL ON DASD  B908
 SUBCHANNEL
  =
0007
00: DASD 019E 3390 ZVM1RES R/O250 CYL ON DASD  B908
 SUBCHANNEL
  =
0006
00: DASD 0200 3390 LX611E R/W  30050 CYL ON DASD  611E
 SUBCHANNEL =
   
00: DASD 0205 3390 LX3617 R/O 50 CYL ON DASD  3617
 SUBCHANNEL =
   000A
00: DASD 0207 9336 (VDSK) R/W4194296 BLK ON DASD  VDSK
 SUBCHANNEL =
   0001
  
   And which of these devices are you trying to IPL from?
  
  
   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://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: Creating an accessible disk

2015-04-03 Thread Tom Huegel
Here is an example.
In your directory you have a MDISK statement similar to this one.
 MDISK 191 3390 2540 0020 USRVOL MR READPW WRITEPWMULTIPW
Your students will need the following.
LINK youruserid 191 192 RR   -- this can either be in their directory or
in their profile exec or they can enter it manually
  if it is in the
profile exec or entered manually they will need the readpw (READPW)

If entered manually they will also need to access it. ie ACC 192 D

Your requirements as far as mini-disk addresses and access mode may be
different.

I hope this helps.


On Thu, Apr 2, 2015 at 1:59 PM, Alan Altmark alan_altm...@us.ibm.com
wrote:

 On Thursday, 04/02/2015 at 04:25 EDT, Cameron Seay cws...@gmail.com
 wrote:
  My apologies.  I didn't realize this was an issue with VM, and I can see
  why. I was thinking about NFS and doing something quick and dirty that
  way.  The write access is immaterial.  I at least want them to link to
 one
  of my disks.  Read only will be fine.  Can I just attach another
 minidisk
  to my guest and let them have read only access to it?

 You will have an MDISK entry for the disk in your directory entry.  They
 each will have LINK to it in theirs.

 If you ATTACH a volume to your ID, no one can LINK to it and no one else
 can ATTACH it.

 Alan Altmark

 Senior Managing z/VM and Linux Consultant
 Lab Services System z Delivery Practice
 IBM Systems  Technology Group
 ibm.com/systems/services/labservices
 office: 607.429.3323
 mobile; 607.321.7556
 alan_altm...@us.ibm.com
 IBM Endicott

 --
 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: Adding Memory Question

2015-02-17 Thread Tom Huegel
Just change the directory entry for your sandbox LINUX to something like
this.

USER zlinuxname zlinuxpass 4G 4G  G

Don't worry too much about the performance for now, that can always be
tuned later.

If you don't know how to edit the directory come back and I am sure someone
can walk you through it.

BTW you can use the INDicate command to see z/VM utilization and paging
numbers.

On Tue, Feb 17, 2015 at 10:14 AM, Andrew Westerfield 
andrew.westerfi...@its.ms.gov wrote:

 Yep, there are options.

 If you want your intended server to have 4GB of memory, it's going to eat
 up most of the storage you have defined as central.
 Are you running any other servers in the same z/VM LPAR, and is the z/VM
 memory backed up with any page space?

 Before adding any memory to your intended server, s'good to make sure
 there's memory to give.




 Andrew Westerfield
 MS Department of Information Technology Services
 www.its.ms.gov



 -Original Message-
 From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
 Dazzo, Matt
 Sent: Tuesday, February 17, 2015 11:59 AM
 To: LINUX-390@VM.MARIST.EDU
 Subject: Re: Adding Memory Question

 Yes I can shutdown the servers linux and or vm if need be. I looked on the
 HMC and the vm lpar is configured with central - 4608MB, Expanded - 1536MB.
 Do I have any options?

 tks Matt

 q stor
 STORAGE = 4608M CONFIGURED = 4608M INC = 128M STANDBY = 0  RESERVED = 0
 Ready; T=0.01/0.01 12:54:31

 -Original Message-
 From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
 Andrew Westerfield
 Sent: Tuesday, February 17, 2015 12:50 PM
 To: LINUX-390@VM.MARIST.EDU
 Subject: Re: Adding Memory Question

 Hi Matt,

 Couple of questions.

 1. You mention your servers were intended as a sandbox. Does this mean you
 can shut down the intended server?
 2. Does your z/VM LPAR have real memory to give?

 The easiest way to add more memory would be to shutdown the intended
 server, add more memory to the server's USER DIRECTORY on z/VM, and restart
 the server.

 There is a way to dynamically add more memory to a running server if you
 can't shut down the server and memory had already been set aside prior.
 The command 'q stor' on your z/VM system will show how much memory the
 LPAR has defined.

 Good luck



 Andrew Westerfield
 MS Department of Information Technology Services www.its.ms.gov


 -Original Message-
 From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of
 Dazzo, Matt
 Sent: Tuesday, February 17, 2015 11:28 AM
 To: LINUX-390@VM.MARIST.EDU
 Subject: Adding Memory Question

 We are running z/vm 6.0 with 2 RH 5.5 servers that was intended as a sand
 box for an application that never launched several years ago. We are now
 looking at testing an application that calls for 4GB memory to run. The
 intended server only has 1GB, pls see below. I am a newbie at best with vm
 / linux, what is the process to add 4GB of memory and how do I know if can?
 Thanks Matt

 [root@lnftp01 DB2_ESE]# free -m
  total   used   free sharedbuffers cached
 Mem:  10004365630   90
  283
 -/+ buffers/cache:   62   937
 Swap:  2271  0   2271



 --
 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/
 DISCLAIMER: This email and any files transmitted with it are confidential
 and intended solely for the use of the individual or entity to whom they
 are addressed. If you have received this email in error please notify the
 system manager. This message contains confidential information and is
 intended only for the individual named. If you are not the named addressee
 you should not disseminate, distribute or copy this e-mail. Please notify
 the sender immediately by e-mail if you have received this e-mail by
 mistake and delete this e-mail from your system. If you are not the
 intended recipient you are notified that disclosing, copying, distributing
 or taking any action in reliance on the contents of this information is
 strictly prohibited.

 --
 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 

Re: Network Config Question

2015-01-29 Thread Tom Huegel
Thanks Peter .. I tried everything I could think of for the 3rd network
line and I stoll can't get it to work.. So frustrating.

On Wed, Jan 28, 2015 at 2:52 PM, Alan Altmark alan_altm...@us.ibm.com
wrote:

 On Wednesday, 01/28/2015 at 03:07 EST, Tom Huegel tehue...@gmail.com
 wrote:
  You're probably right, but that entry is just an example and will
  be deleted once I get my problem solved and can create actual VM's.
  Thanks for pointing that out, it is a good point for everyone to note.

 Wouldn't matter anyway since the ESM has the password encrypted and the
 one in the directory doesn't matter.

 Alan Altmark

 Senior Managing z/VM and Linux Consultant
 Lab Services System z Delivery Practice
 IBM Systems  Technology Group
 ibm.com/systems/services/labservices
 office: 607.429.3323
 mobile; 607.321.7556
 alan_altm...@us.ibm.com
 IBM Endicott

 --
 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: XCAT disks, and documentation generally

2015-01-28 Thread Tom Huegel
I believe the region and group references refer to DIRMAINT groupings.. You
may want to brush-up a bit on DIRMAINT.

On Wed, Jan 28, 2015 at 5:42 AM, Marci Beach beac...@us.ibm.com wrote:

 I think the info you need is within the
 http://sourceforge.net/p/xcat/wiki/XCAT_Documentation/ doc in link
 entitled *xCAT UI Tutorial on zVM and zLinux*
 http://xcat.sourceforge.net/pdf/xCAT-UI-Tutorial.pdf.
 In this doc there is section 6. called Adding resources. There is a window
 in step 2 called Add didk to pool.

 Here is a sample of that window with the entries as you would desire to
 create the disk pools you desire for housing your cloned guests. Where
 VOLID27 would be
 replaced with your mod-27 volids.




 You would go through same procedure for the LINUX54 disk pool as well.

Hope this helps..

   Marci Beach





 From:Bishop, Peter peter.bis...@hp.com
 To:LINUX-390@VM.MARIST.EDU
 Date:01/27/2015 10:12 PM
 Subject:XCAT disks, and documentation generally
 Sent by:Linux on 390 Port LINUX-390@VM.MARIST.EDU
 --



 Hi,

 Firstly a specific question:  I believe that the disk pool used by XCAT
 for its ISO images is completely different to the one used for housing the
 data used by the cloned guests.  In my case the first pool is called XCAT1
 and the second pools are LINUX27 and LINUX54 (mod-27 and mod-54
 respectively).  Am I right?  If so, a follow-up question - where do I
 specify the latter pools in XCAT?  Nowhere?  Somewhere?  I am missing
 something basic, I believe.  I have the XCAT GUI going and the IVP passes
 all the disk tests.  We are not using CMO yet but expect to do so if
 required (more later if appropriate).

 Now a general observation and a question:  the z/VM v6.3 documentation on
 OpenStack and XCAT is somewhat scattered and perhaps sparse, at least
 compared with the excellent and voluminous documentation on CP, CMS, etc.
  Can anyone recommend a good overview?  I'm reading the SourceForge pages,
 and the z/VM v6.3 manuals, but have yet to find an all-in-one
 zXCAT-Up-And-Running reference.

 SourceForge pages:

 http://sourceforge.net/p/xcat/wiki/XCAT_zVM/
 http://sourceforge.net/p/xcat/wiki/XCAT_zVM_Setup/
 http://sourceforge.net/p/xcat/wiki/XCAT_Documentation/

 z/VM v6.3 manuals:
 SC24-6248-01:  Enabling z/VM for OpenStack (Support for OpenStack Icehouse
 Release)
 SC24-6234-07:  Systems Management Application Programming

 For example, relating to my specific question above, there are references
 in both sets of documents to regions and groups where I was expecting
 terms like SFS disk pool and DASD volume, which I don't believe are
 interchangeable, and hence my need for a beginner-type doc.  If they are
 interchangeable, it's not obvious to a young player (not that I'm young,
 just a noob).

 As mentioned, these are very good and get one going, but appear a bit
 disorganised to this uneducated reader.  Maybe it's a case of DIY doco, but
 I'd like to think not.  Perhaps some training!  OK, enough dreaming.

 Best regards,
 Peter

 --
 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/


Network Config Question

2015-01-28 Thread Tom Huegel
I have the following problem when I try to provision. I used to be able to
do this, but I managed to zap some xCAT tables and am starting from scratch
again.

Thanks.

sl11d130: Adding a disk to SL11D130's directory entry... Done
sl11d130: Adding 3390 disk for sl11d130 as 100 ... Done

Operating system for sl11d130 set
sl11d130: Searching for acceptable network device
sl11d130: Setting up networking on XCATVSW2 (layer:2 | DHCP:0)
sl11d130: (Error) Missing network information
sl11d130: (Solution) Specify the mask, gateway, and nameservers for the
subnet in the networks table


netname netmask mgtifname gateway dhcpserver tftpserver
nameserversntpserverslogserversdynamicrangestaticrangestaticrangeincrementnodehostnameddnsdomainvlaniddomaincommentsdisabl

10_10_10_0-255_255_255_0   10.10.10.0 255.255.255.0 eth1
10.10.10.10

172_17_50_0-255_255_254_0 172.17.50.0 255.255.254.0 eth0 172.17.50.1
172.17.51.121
Showing 1 to 2 of 2 entries

USER SL11D130 XCAT 2G 2G G
   INCLUDE SUSE
   CPU 00
   MACHINE ESA
   CONSOLE 0009 3215 T
   NICDEF 0A00 TYPE QDIO LAN SYSTEM XCATVSW2 MACID ED
   SPOOL 000C 2540 READER *
   SPOOL 000D 2540 PUNCH A
   SPOOL 000E 1403 A
   MDISK 0100 3390 1 5000 XCLX08 MR ALL ALL ALL
 PROFILE SUSE
 COMMAND SET VSWITCH XCATVSW2 GRANT USERID
 COMMAND COUPLE 0A00 TO SYSTEM XCATVSW2
 COMMAND SET OBSERVER OPERATOR
 CPU 00
 IPL CMS PARM AUTOCR
 MACH ESA 2
 OPTION APPLMON

--
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: Network Config Question

2015-01-28 Thread Tom Huegel
You're probably right, but that entry is just an example and will
be deleted once I get my problem solved and can create actual VM's.
Thanks for pointing that out, it is a good point for everyone to note.

On Wed, Jan 28, 2015 at 11:59 AM, Nix, Robert P. nix.rob...@mayo.edu
wrote:

 As an aside: You probably shouldn¹t post directory entries containing
 passwords to a mailing list.

 --
 Robert P. Nix | Sr IT Systems Engineer |  Data Center Infrastructure
 Services
 507-284-0844 | nix.rob...@mayo.edu
 applewebdata://7C28AA03-E9D7-4519-A679-80B7EC6A010B/nix.rob...@mayo.edu
 Mayo Clinic| 200 First Street SW | Rochester, MN 55905

 Mayo Clinic, a mission-driven worldwide leader in health care for 150
 years.
 http://150years.mayoclinic.org/





 On 1/28/15, 10:35 AM, Tom Huegel tehue...@gmail.com wrote:

 
 Showing 1 to 2 of 2 entries
 
 USER SL11D130 XCAT 2G 2G G
INCLUDE SUSE
CPU 00
MACHINE ESA
CONSOLE 0009 3215 T
NICDEF 0A00 TYPE QDIO LAN SYSTEM XCATVSW2 MACID ED
SPOOL 000C 2540 READER *
SPOOL 000D 2540 PUNCH A
SPOOL 000E 1403 A
MDISK 0100 3390 1 5000 XCLX08 MR ALL ALL ALL
  PROFILE SUSE
  COMMAND SET VSWITCH XCATVSW2 GRANT USERID
  COMMAND COUPLE 0A00 TO SYSTEM XCATVSW2
  COMMAND SET OBSERVER OPERATOR
  CPU 00
  IPL CMS PARM AUTOCR
  MACH ESA 2
  OPTION APPLMON

 --
 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: Iaas - SCO vs IBM Wave vs xCat vs zPro - ZPRO

2015-01-20 Thread Tom Huegel
If you want to play remember xCAT is a freebie. If you are z/VM 6.3 you
have xCAT and can jump right in.


On Tue, Jan 20, 2015 at 2:08 PM, Barton Robinson 
bar...@velocitysoftware.com wrote:

 zPRO has been out for about 4 years and was a project started almost 10
 years ago.  We had many customers create their own self service
 applications using our web technology, it seemed reasonable to take
 their ideas and make a common product.

 ZPRO V2 is built on ALL native z/VM functionality, meaning, we don't
 have any requirement for Linux servers, agents, SMAPI, JAVA and a lot of
 other things I find frustrating.  KEEP IT VERY SIMPLE (AND VERY
 INEXPENSIVE)

 With our webserver (ZVWS, formerly ESAWEB) being a native z/VM
 webserver, eliminating SMAPI (and anybody who has tried to use SMAPI
 knows that is a VERY GOOD thing) was easy.  No java agents mean any
 browser works.  Since ZVWS is already installed in a few hundred
 installations, most of those already have the full infrastructure
 installed - zPRO installation takes about 10 minutes by a junior systems
 programmer.  It is NON-INTRUSIVE, meaning that if it is there it works,
 if not there, everything functions.  I don't like system hooks or asking
 customers to rebuild lpars because of some software product.

 Next week, our demo system will be back online again with Version 2.
 We've been giving preliminary demonstrations of V2. Most installations
 are asking for self service so you will be able to clone a Linux
 server, a CMS guest, a 2nd level z/VM server AND logon to it.
 Can't provide an external IP address so no SSH in, i can't afford
 someone from say Ukraine or North Korea creating a server on my system
 and hacking the world.

 Watch this space, there is a lot of back ground activity now that will
 soon be very visible.

 And to answer your final question:  ZPRO can be configured to clone a
 server using disk pool A on LPAR1.  Installing WAS is not a mainframe
 thing - but having golden images of your target server means you have
 consistency and a lot less time diagnosing problems.

 Can wave/zPro/xcat be configured and automated to a level where user may
 just say give me redhat 7 created on  disk pool A and on  LPAR 1 and
 install WAS.


 If you would like a demonstration, please do contact me.




 On 1/20/2015 11:04 AM, Grzegorz Powiedziuk wrote:

 Hello,
 I am trying to do some sort of a comparison between these products and
 more
 digging I do  then more I am lost.
 There are many presentations out there with big words like cloud,
 orchestrate, cut costs bla bla bla  but it is hard get to the bottom
 of it.

 Correct me if I am wrong but so far it seams that

 1. SCO is rather developed for project managers who can just click and
 deploy without understanding the platform at all. They can just chose
 images, create patterns, add scripts to be executed on top of an image.
 Patterns - who provide these? IBM provides these or user have to create
 their own (for example installation of WebSphere or Apache server after
 deployment).
 It does not support SSI and zFCP  (only edevices)

 2. IBM Wave seems to be more for system admins who are just tired of 3270
 and constant punching virtual kernels. User can do most of z/VM's tasks
 from a GUI and it looks awesome. Admin of IBM Wave have to understand Z
 and
 z/VM very well.  But on the other hand, I see that IBM Wave supports users
 and groups. You can create a non privileged user and give him access to
 only to specific projects.  For example web server. So it kind of looks
 like SCO. If that is the case - why bother with SCO, isn't IBM Wave
 better?
 Am I wrong?

 3.  zPRO. I wish I could find some demo videos about this one. From my
 understanding it is more like an IBM Wave. Designed for system admins not
 project managers. Not meant to be IaaS product right?

 4. xCAT. Also rather for system admins only right?

 When I try to sum it up in my head, it comes out that only SCO is an IaaS
 solution (a very limited but still) because only SCO allows someone who
 knows nothing about Z to deploy a virtual machine and add some software on
 top of it.
 And SCO seems to be using xcat for doing actual system work.

 Can Wave/zPro/xCat be used as an IaaS ? OR those are completely not meant
 to be an IaaS solution.
 I guess I should ask:
 Can wave/zPro/xcat be configured and automated to a level where user may
 just say give me redhat 7 created on  disk pool A and on  LPAR 1 and
 install WAS.

 Thank you
 Gregory

 --
 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: Can't get FEDORA21 installer to start IPL z/VM RDR.

2015-01-14 Thread Tom Huegel
The first change worked ip=1xx.xx.xx.126::1xx.xx.xx.1:255.255.254.0:
fedora.hhh.com:enccw0.0.0340:none.
The second change did not. inst.repo. .. Not Found was the error.
When I changed it back to root=live all went well.

Thanks for your help.



On Wed, Jan 14, 2015 at 12:58 AM, Jan Stodola jstod...@redhat.com wrote:

 Hi Tom,
 see comments bellow.

 On 01/14/2015 12:01 AM, Tom Huegel wrote:

 MY PRM FILE
 ro ramdisk_size=4 cio_ignore=all,!0.0.0009
 vnc
 rd.dasd=0.0.0250,251,252,253,254
 rd.dasd=0.0.025f
 ip=1xx.xx.xx.126::1xx.xx.xx.1:255.255.254.0:fedora.hhh.com:eth0:none


 There is a new naming scheme for network devices, which is based on
 subchannels:
 ip=1xx.xx.xx.126::1xx.xx.xx.1:255.255.254.0:fedora.hhh.com:e
 nccw0.0.0340:none

  rd.znet=qeth,0.0.0340,0.0.0341,0.0.0342,layer2=0,portno=0

 http_proxy=http://aaa:bb...@xx.xx.xx.xx:8080

 proxy=http://aaa:bb...@xx.xx.xx.xx:8080

 root=live:
 http://mirrors.kernel.org/fedora-econdary/releases/21/Server/s390x/os
 /images/install.img


 it it recommended to use inst.repo= instead of root=
 also a typo in the URL? ../fedora-econdary/..

 inst.repo=http://mirrors.kernel.org/fedora-secondary/
 releases/21/Server/s390x/os/

  nameserver=1xx.xx.xx.1


 Let's see if the changes fix your issue.

 Regards,
 Jan

 --
 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/


Can't get FEDORA21 installer to start IPL z/VM RDR.

2015-01-13 Thread Tom Huegel
This worked the last time I did it .. FEDORA18.
Any ideas?


[  291.090419] dracut-initqueue[848]: Warning: Could not
boot.
 Mounting Configuration File
System...
[ [32m  OK   [0m] Mounted Configuration File
System.
[ [32m  OK   [0m] Started Show Plymouth Boot
Screen.
[ [32m  OK   [0m] Reached target
Paths.
[ [32m  OK   [0m] Reached target Basic
System.
[  291.090419] dracut-initqueue[848]: Warning: Could not
boot.
[  291.092246] dracut-initqueue[848]: Warning: /dev/root does not
exist
 Starting Dracut Emergency
Shell...
Warning: /dev/root does not
exist


Generating
/run/initramfs/rdsosreport.txt




Entering emergency mode. Exit the shell to
continue.
Type journalctl to view system
logs.
You might want to save /run/initramfs/rdsosreport.txt to a USB stick or
/boot
after mounting them and attach it to a bug
report.




dracut:/#


MY PRM FILE
ro ramdisk_size=4 cio_ignore=all,!0.0.0009
vnc
rd.dasd=0.0.0250,251,252,253,254
rd.dasd=0.0.025f
ip=1xx.xx.xx.126::1xx.xx.xx.1:255.255.254.0:fedora.hhh.com:eth0:none

rd.znet=qeth,0.0.0340,0.0.0341,0.0.0342,layer2=0,portno=0

http_proxy=http://aaa:bb...@xx.xx.xx.xx:8080

proxy=http://aaa:bb...@xx.xx.xx.xx:8080

root=live:
http://mirrors.kernel.org/fedora-econdary/releases/21/Server/s390x/os
/images/install.img

nameserver=1xx.xx.xx.1

--
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: Performance Toolkit and zLinux

2014-08-26 Thread Tom Huegel
Although zVPS is a fine product and I am sure well worth the price it
provides much more than the basic information I am looking for.

All I need in my lab on the occasions when someone wants to run a zLINUX
guest is provided by the APPLdata and PTK.
Thanks Berry.
A GOOGLE search pointed me to an OMEGAMON doc with instructions to enable
data collection.
 modprobe appldata_os
modprobe appldata_mem
modprobe appldata_net_sum
echo 1  /proc/sys/appldata/os
echo 1  /proc/sys/appldata/mem
echo 1  /proc/sys/appldata/net_sum
echo 1  /proc/sys/appldata/interval
echo 1  /proc/sys/appldata/timer
Tom


On Tue, Aug 26, 2014 at 5:48 AM, Bill Bitner bit...@vnet.ibm.com wrote:

 The RMF agent that runs inside the Linux on System z guest was
 re-written the other year and changed the interface. We chose not
 to update the Performance Toolkit handling of that interface as
 other things have changed since the introduction of the RMF agent
 to Linux. You can still use the RMF client (the link provided
 earlier will point to information ont that) that supports z/OS as
 well. There was a statement of direction in 2011 for these changes.

 Performance Toolkit will report on the z/VM Appldata that Linux
 provides on all the current distributions. While this doesn't
 provide process level information, it does provide a Linux view
 of some important metrics. It is also very low overhead.

 Additionally, OMEGAMON XE for z/VM and Linux provides both the z/VM
 and the Linux agents. Perhaps not the first choice for a PoC, but
 wanted to mention for completeness.

 Bill Bitner - z/VM Customer Focus and Care - IBM Endicott - 607-429-3286
 The postings on this site are my own and don't necessarily represent IBMs
 positions, strategies or opinions.

 --
 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/


Performance Toolkit and zLinux

2014-08-25 Thread Tom Huegel
IBM used to have the RMF module to download for zLINUX so it could be
monitored via Performance Toolkit.
Currently z/VM 6.3 SUSE11 that module no longer available. Is there a
replacement?, What is it?

Thanks

--
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: Performance Toolkit and zLinux

2014-08-25 Thread Tom Huegel
I want something free..


On Mon, Aug 25, 2014 at 1:44 PM, Rich Smrcina r...@velocitysoftware.com
wrote:

 zVPS.


 On 08/25/2014 03:39 PM, Tom Huegel wrote:

 IBM used to have the RMF module to download for zLINUX so it could be
 monitored via Performance Toolkit.
 Currently z/VM 6.3 SUSE11 that module no longer available. Is there a
 replacement?, What is it?

 Thanks

 --
 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/




 --

 Richard Smrcina
 Sr. Systems Engineer

 Velocity Software Inc.
 Main: (650) 964-8867
 Main: (877) 964-8867
 r...@velocitysoftware.com mailto://r...@velocitysoftware.com
 
 
 Signature
 http://www.velocitysoftware.com/
 *Follow us:*
 facebook http://www.facebook.com/pages/Velocity-Software/356098274460840
 LinkedIn
 http://www.linkedin.com/company/1798379?trk=tyah twitter
 https://twitter.com/VelocitySoftw Xing
 https://www.xing.com/companies/velocitysoftwaregmbh

 --
 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/


xCAT CLONE problem

2014-08-14 Thread Tom Huegel
I am trying to do a 'simple' clone using xcat (z/VM 6.3) but I get this
error.
There appears to be plenty of space in the diskpool.
xcat created a directory entry for the target node.
Has anyone else seen this problem?

USER CTLMF125 X 2G 2G G
2INCLUDE SUSE11
3CPU 00
4MACHINE ESA
5CONSOLE 0009 3215 T
6NICDEF 0800 TYPE QDIO LAN SYSTEM XCATVSW2 MACID D9
7SPOOL 000C 2540 READER *
8SPOOL 000D 2540 PUNCH A
9SPOOL 000E 1403 A
00010MDISK 0100 3390 1 3338 XCLX02 MR LINUX LINUX LINUX

ctlmf125: Cloning xcsls01
ctlmf125: Linking source disk (0100) as (1100)
ctlmf125: Creating user directory entry
ctlmf125: Granting VSwitch (XCATVSW1) access for CTLMF125
ctlmf125: Granting VSwitch (XCATVSW2) access for CTLMF125
ctlmf125: Granting VSwitch (XCATVSW2) access for CTLMF125
ctlmf125: Adding minidisk (0100)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: Disks added (1). Disks in user entry (0)
ctlmf125: (Error) Disks not present in user entry
ctlmf125: (Solution) Verify disk pool(XCLINUX1) has free disks
ctlmf125: Detatching source disk (0100) at (1100)
ctlmf125: Done

Clone a zVM node.
FREEXT G= XCLINUX1


  GROUP   REGION  VOLUMESTART  SIZE   (END)OWNER   ADDR
  -- -- -- --  
XCLINUX1 XCLX03   XCLX03  1   3338   3338 .FREE.   
XCLINUX1 XCLX05   XCLX05  1   3338   3338 .FREE.   
XCLINUX1 XCLX04   XCLX04  1   3338   3338 .FREE.   
XCLINUX1 XCLX06   XCLX06  1   3338   3338 .FREE.   
XCLINUX1 XCLX08   XCLX08  1  10016  10016 .FREE.   
XCLINUX1 XCLX09   XCLX09  1  10016  10016 .FREE.   
XCLINUX1 XCLX0A   XCLX0A  1  10016  10016 .FREE.   

--
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/


qeth.90d7eb---error SUSE11 install

2014-07-30 Thread Tom Huegel
I am trying to install SUSE11 SP3 s390x and keep getting this error.

*qeth.90d7eb: 0.0.0800: MAC address 02:00:00:ff:ff:ed is not authorized *
*Any idea what I am doing wrong?*


*Thanks *
*Tom*

--
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: qeth.90d7eb---error SUSE11 install

2014-07-30 Thread Tom Huegel
Yea Alan, I kind of figured that something like that was going on. I don't
specify any MACID on the NICDEF or any SET NIC commands.
There must be something in the SUSE11 installation script.
I'm using xCAT (z/VM 6.3) to do the provisioning. It all seemed to be
working as shown in the xCAT tutorial (SourceForge) but something is going
on here.

I'll keep digging.
Thanks


On Wed, Jul 30, 2014 at 7:32 AM, Alan Altmark alan_altm...@us.ibm.com
wrote:

 On Wednesday, 07/30/2014 at 10:16 EDT, Tom Huegel tehue...@gmail.com
 wrote:
  I am trying to install SUSE11 SP3 s390x and keep getting this error.
 
  *qeth.90d7eb: 0.0.0800: MAC address 02:00:00:ff:ff:ed is not authorized
 *
  *Any idea what I am doing wrong?*

 Something is trying to override the CP-assigned unicast MAC address with
 MACPROTECT ON.  Do you have a MAC address specified in your configuration?
  If so, remove it.

 Alan Altmark

 Senior Managing z/VM and Linux Consultant
 IBM System Lab Services and Training
 ibm.com/systems/services/labservices
 office: 607.429.3323
 mobile; 607.321.7556
 alan_altm...@us.ibm.com
 IBM Endicott

 --
 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: qeth.90d7eb---error SUSE11 install

2014-07-30 Thread Tom Huegel
Thanks Alan you got me thinking.

Here is what I ended up doing.
There is a table in xCAT for mac addresses. What I did was to manually
change that address to match the z/VM assigned address from the NICDEF ..
Then it all worked.

I suppose another, maybe better way would to use the xCAT generated mac
address in the NICDEF statement.

Whatever works..
Tom




On Wed, Jul 30, 2014 at 8:55 AM, Alan Altmark alan_altm...@us.ibm.com
wrote:

 On Wednesday, 07/30/2014 at 11:14 EDT, Tom Huegel tehue...@gmail.com
 wrote:
  Yea Alan, I kind of figured that something like that was going on. I
 don't
  specify any MACID on the NICDEF or any SET NIC commands.
  There must be something in the SUSE11 installation script.
  I'm using xCAT (z/VM 6.3) to do the provisioning. It all seemed to be
  working as shown in the xCAT tutorial (SourceForge) but something is
 going
  on here.

 Not surprising, as other platforms don't protect the MAC address.

 If MAC addresses are to be assigned, then they need to be specified in the
 NICDEF or via COMMAND SET NIC during the vNIC manufacturing process, not
 at the whim of a some random guest.  Only trustworthy guests that have a
 specific documented need to set their MAC address should be permitted to
 do so.

 IMO, of course.

 Alan Altmark

 Senior Managing z/VM and Linux Consultant
 IBM System Lab Services and Training
 ibm.com/systems/services/labservices
 office: 607.429.3323
 mobile; 607.321.7556
 alan_altm...@us.ibm.com
 IBM Endicott

 --
 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: Which DASD is free

2014-06-23 Thread Tom Huegel
I wrote a REXX program that reads through a disk (any disk that can be
attached or linked to a CMS vm) and reports what is finds. i.e. VOL1
labels, CMS1 labels, CMS files, gaps between labels, overlaps etc.
It is not the first defense, but I find it helpful to answer the question
'What's On MY Disk?'.
I summited it to the VMWORKSHOP, I don't know if it has been uploaded yet
to their tools page. It's called WOMYD (What'sOnMYDisk).

If not you can contact me and I'll give it to you.
Tom



On Sun, Jun 22, 2014 at 11:22 AM, Cameron Seay cws...@gmail.com wrote:

 That's why I love this forum.  When I have a question that on the surface
 may appear to be pretty simple, you guys educate me in that with enterprise
 technologies, nothing is simple.  These answers have been extremely
 insightful.  The main guy that sets our physical environment up chimed in
 and and told me that all is well.  He has a storage management strategy
 that will streamline these issues.  It's just that we had a lot of cooks in
 the kitchen.  We will fix that. Thanks again!


 On Sun, Jun 22, 2014 at 2:04 PM, John Campbell soup...@gmail.com wrote:

  Ah, yes, DASD volumes...
 
  (chuckles)
 
  I spent a LOT of time doing AIX support-- both before p5 hypervisors and
  after-- so, really, what is a DASD volume?
 
  Is it a physical volume?  (Which, using a hypervisor, may be mapped into
 a
  logical volume, or, via a SAN, is declared physical also despite being
  mapped across one-- or more-- actual physical devices.)
 
  Is it a logical volume?  A logical volume at the hypervisor level looks
  like a physical volume to the instance which likely contains multiple
  logical volumes.
 
  With the abstraction of volumes the way they've been of late, the
 word, I
  believe, is becoming more and more ambiguous.
 
  Though, really, the query for free DASD -- devices -- implies physical
  volumes.
 
  Mind you, with the expanded use of SANs, all bets are off as to where the
  LUNs really map to.
 
  (sighs)
 
  As we move away from the good old days of 2311s, 2314s, 3330s, 3350s,
 when
  someone asks What is a volume?, I believe the answer, more and more,
  becomes It depends...
 
  (smirks)
 
  -soup
 
 
  On Sun, Jun 22, 2014 at 1:46 PM, Mark Post mp...@suse.com wrote:
 
On 6/22/2014 at 08:37 AM, John Campbell soup...@gmail.com wrote:
Ah, yes, so Q DASD FREE will report on free space... but will it
 return
CONTIGUOUS free space (ISTR minidisk granularity is in cylinders)?
   Or
will it just be the count of cylinders (or whatever granularity the
device, like FBA, which might not be reported in cylinders) that
  haven't
been allocated somewhere within the knowledge of the z/VM system?
  
   That command will only report entire DASD volumes.  By definition, any
   volume that has been used for minidisks is attached to SYSTEM, and will
  not
   be shown.  So, yes, as many contiguous cylinders as the volume
 contains.
  
  
   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://www.marist.edu/htbin/wlvindex?LINUX-390
   --
   For more information on Linux on System z, visit
   http://wiki.linuxvm.org/
  
 
 
 
  --
  John R. Campbell Speaker to Machines  souperb at gmail
 dot
  com
  MacOS X proved it was easier to make Unix user-friendly than to fix
 Windows
  It doesn't matter how well-crafted a system is to eliminate errors;
  Regardless
   of any and all checks and balances in place, all systems will fail
  because,
   somewhere, there is meat in the loop. - me
 
  --
  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/
 



 --
 Cameron Seay, Ph.D.
 Department of Computer Systems Technology
 School of Technology
 NC A  T State University
 Greensboro, NC
 336 334 7717 x2251

 --
 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 

Re: FEDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-04-15 Thread Tom Huegel
I did the install using btrfs (whatever that is... don't laugh I am a VM
guy not too much into LINUX) file system and it worked.


On Tue, Apr 15, 2014 at 7:37 AM, R P Herrold herr...@owlriver.com wrote:

 On Tue, 15 Apr 2014, Dan Horák wrote:

  Because when I reinstalled the guest with /boot on a regular partition
  it survived a kernel update (includes rerun of zipl). Rick Troth
  reported the same problem when he used a kickstart
  (http://s390.koji.fedoraproject.org/test/ks/f20-lvm.ks) that also uses
  all-on-LVM setup.

 Testing the hypothesis on an all-on-LVM F 20 setup, I added
 to: yum.conf
 a line: exclude=kernel
 and ran updates

 [root@clef01 ~]# grep exclude /etc/yum.conf
 exclude=kernel

 Then after rebooting, the unit restarts without any
 intervention.

 One has to think the initrd is not getting properly fixed up,
 to be able to access the LVM only setup, so it probably makes
 sense to revise:
 http://s390.koji.fedoraproject.org/test/ks/f20-lvm.ks
 accordingly, pending a fix.  Dan, is there a bug number on
 this?


 2. from the ks.cfg:

 ...
 logvol /boot  --size=500 --name=Boot --vgname=Fedora
 logvol swap  --fstype=swap --size=2048 --name=Swap
 --vgname=Fedora
 ...

 Looking at the KS I see also that the swap is going through
 another layer of redirection through LVM, rather than natively
 being placed on the disk.  There are two schools of thought
 here (having swap on LV permits resizing, vs. assumed more
 robust access and performance) but it may make sense to
 migrate it out of the LVM as well

 I moved to a 'file based' swap at '/' but on the LVM thus,
 which permits resizing:

 cd /
 fallocate --length 1GiB RPHswapfile
 mkswap /RPHswapfile

 and amended the fstab and rebooted, without incident

 [root@clef01 ~]# grep swap /etc/fstab
 # /dev/mapper/Fedora-Swap swap  swapdefaults0 0
 RPHswapfile   swap  swapdefaults0 0

 so permitting me to reclaim that swap LV space

 -- Russ herrold

 --
 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: FEDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-04-15 Thread Tom Huegel
 PID: 482 Comm: plymouth Not tainted
3.13.9-200.fc20.s390x #1
[2.094306] task: 3f38df38 ti: 3c988000 task.ti:
3c988000
[2.094309] User PSW : 070500018000 00401063ce26 (0x401063ce26)
[2.094311]R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:1 AS:0 CC:0
PM:0 EA:3
User GPRS:  00401063e418 
98ec5f30


//lib/dracut/hooks/emergency/50-plymouth-emergency.sh: line 4:   483
Segmentation fault  plymouth --hide-splash 2 /dev/null

Generating /run/initramfs/rdsosreport.txt
[2.106102] random: nonblocking pool is initialized


Entering emergency mode. Exit the shell to continue.
Type journalctl to view system logs.
You might want to save /run/initramfs/rdsosreport.txt to a USB stick or
/boot
after mounting them and attach it to a bug report.



:/#
:/#


On Tue, Apr 15, 2014 at 11:04 AM, Tom Huegel tehue...@gmail.com wrote:

 I did the install using btrfs (whatever that is... don't laugh I am a VM
 guy not too much into LINUX) file system and it worked.


 On Tue, Apr 15, 2014 at 7:37 AM, R P Herrold herr...@owlriver.com wrote:

 On Tue, 15 Apr 2014, Dan Horák wrote:

  Because when I reinstalled the guest with /boot on a regular partition
  it survived a kernel update (includes rerun of zipl). Rick Troth
  reported the same problem when he used a kickstart
  (http://s390.koji.fedoraproject.org/test/ks/f20-lvm.ks) that also uses
  all-on-LVM setup.

 Testing the hypothesis on an all-on-LVM F 20 setup, I added
 to: yum.conf
 a line: exclude=kernel
 and ran updates

 [root@clef01 ~]# grep exclude /etc/yum.conf
 exclude=kernel

 Then after rebooting, the unit restarts without any
 intervention.

 One has to think the initrd is not getting properly fixed up,
 to be able to access the LVM only setup, so it probably makes
 sense to revise:
 http://s390.koji.fedoraproject.org/test/ks/f20-lvm.ks
 accordingly, pending a fix.  Dan, is there a bug number on
 this?


 2. from the ks.cfg:

 ...
 logvol /boot  --size=500 --name=Boot --vgname=Fedora
 logvol swap  --fstype=swap --size=2048 --name=Swap
 --vgname=Fedora
 ...

 Looking at the KS I see also that the swap is going through
 another layer of redirection through LVM, rather than natively
 being placed on the disk.  There are two schools of thought
 here (having swap on LV permits resizing, vs. assumed more
 robust access and performance) but it may make sense to
 migrate it out of the LVM as well

 I moved to a 'file based' swap at '/' but on the LVM thus,
 which permits resizing:

 cd /
 fallocate --length 1GiB RPHswapfile
 mkswap /RPHswapfile

 and amended the fstab and rebooted, without incident

 [root@clef01 ~]# grep swap /etc/fstab
 # /dev/mapper/Fedora-Swap swap  swapdefaults0 0
 RPHswapfile   swap  swapdefaults0 0

 so permitting me to reclaim that swap LV space

 -- Russ herrold

 --
 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: FEDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-04-15 Thread Tom Huegel
By it worked I meant the HCPGIR453W error went away and I was able to boot
the Linux Kernel.


On Tue, Apr 15, 2014 at 12:21 PM, Rick Troth ri...@velocitysoftware.comwrote:

 Don't let the filesystems scare you. (see below)


 On 04/15/2014 02:04 PM, Tom Huegel wrote:
  I did the install using btrfs (whatever that is... don't laugh I am a VM
  guy not too much into LINUX) file system and it worked.

 Based on your note some 45 min later, I have to ask: it worked means
 what worked?

 As Russ reports, kickstart installation (to EXT4 on top of LVM) works.
 Problem is that when one applies service, _and the kernel is updated_,
 reboot fails.
 In VM speak,  new IPL text is stamped on the minidisk, and it goes wrong.

 So ... you would do well to use _EXT4+LVM and then defer updating your
 kernel_ until the problem is fixed.
 OR ... if you can install so that _/boot has its own partition_ (or even
 its own disk), that would be safer still.

 --- snip ---

 Filesystems ... Think CMS EDF, the stuff you see when you eyeball your
 191 with DITTO. That's all there is to it. Different ideas, different
 requirements, and other factors have led to many filesystems being
 created over time. Linux supports more filesystem types than any other
 op sys. BTRFS and EXT4 are just two of them.

 BTRFS and ZFS do some of what LVM does, so people often dispense with
 LVM when using BTRFS or ZFS.

 The most common filesystem used in new Linux installations (I state w/o
 proof) is presently EXT4. Before that it was EXT3. At one point,
 ReiserFS had some traction. (long sordid story - not going there) Going
 back further, EXT2 was common on Linux before journalling was recognized
 as vital.

 LVM is the logical volume manager which can host any supported Linux
 filesystem. Think of it as an alternative to partitioning. (But most
 people still render individual disks as one large partition, even when
 it's not strictly required.) Feed disks or partitions into LVM as PVs
 and then mount filesystems on the other side of LVM as LVs. Some links
 which may help ... good bedtime reading ...

   * http://en.wikipedia.org/wiki/List_of_file_systems
 (sadly, CMS EDF doesn't show up in the list)

   * http://en.wikipedia.org/wiki/Btrfs

   * http://en.wikipedia.org/wiki/Ext4
  -and-
   * http://en.wikipedia.org/wiki/Ext2

   * http://en.wikipedia.org/wiki/Logical_Volume_Manager_%28Linux%29




 --

 Rick Troth
 Senior Software Developer

 Velocity Software Inc.
 Mountain View, CA 94041
 Main: (877) 964-8867
 Direct: (614) 594-9768
 ri...@velocitysoftware.com mailto:ri...@velocitysoftware.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/


--
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: FREDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-03-27 Thread Tom Huegel
I haven't been back to this for a while, but I just gave it a try this
morning from step #1 with the same result. The only difference is I have
upgraded z/VM.. z/VM Version 6 Release 3.0, service level 1302 (64-bit)
HCPVMI232E IPL UNIT ERROR; IRB 00404017 0040 0020 0080
HCPGIR450W CP entered; disabled wait PSW 000E 0232

Tom


On Thu, Mar 27, 2014 at 4:17 AM, Dan Horák dho...@redhat.com wrote:

 On Tue, 18 Feb 2014 07:59:36 -0800
 Tom Huegel tehue...@gmail.com wrote:

  This is what is happening at the end of the install on the first boot.
  What is crazy is this worked earlier.. Now it fails every time..
  z/VM6.2 RSU 1302.
 
  Detaching DM devices.
  Detaching DM 253:4.
  Detaching DM 253:3.
  Detaching DM 253:2.
  Detaching DM 253:1.
  Not all DM devices detached, 1 left.
  Detaching DM devices.
  Not all DM devices detached, 1 left.
  Cannot finalize remaining file systems and devices, giving up.
  Storage is finalized.
  Storage cleared - system reset.
  HCPVMI232E IPL UNIT ERROR; IRB 00404017 E008 0020 0080
  HCPGIR450W CP entered; disabled wait PSW 000E 0232

 hmm, this happened to me yesterday after updating and rebooting
 F-20 guest, it is z/VM 6.1 service level 1301 :-( I tried re-running
 zipl, but it didn't help


 Dan

  On Thu, Feb 13, 2014 at 12:56 AM, Dan Horák dho...@redhat.com wrote:
 
   On Wed, 12 Feb 2014 11:52:47 -0800
   Tom Huegel tehue...@gmail.com wrote:
  
This is not good.
This was working, but when I tried to demo it for someone it
stopped working.
I'm seeing the HCPGIR453W after the installation of F20 on the
first and any subsequent disk boot.
   
Anyone experience anything like this?
  
   Do you have some logs or any more information? Does zIPL load and
   start? Or does the guest stop when running the Linux kernel?
  
  
   Dan
  
   --
   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: FREDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-03-27 Thread Tom Huegel
Dan,
By fresh install do you mean you went all of the way to downloading the
INITRD and KERNEL IMG files and starting from there?
I didn't go back that far. I started by punching to the rdr and IPLing
00C...
Tom


On Thu, Mar 27, 2014 at 9:19 AM, Dan Horák dho...@redhat.com wrote:

 On Thu, 27 Mar 2014 09:13:19 -0500
 Tom Huegel tehue...@gmail.com wrote:

  I haven't been back to this for a while, but I just gave it a try this
  morning from step #1 with the same result. The only difference is I
  have upgraded z/VM.. z/VM Version 6 Release 3.0, service level 1302
  (64-bit) HCPVMI232E IPL UNIT ERROR; IRB 00404017 0040 0020
  0080 HCPGIR450W CP entered; disabled wait PSW 000E 0232

 FWIW I did a fresh reinstall and the problem went away, at least for the
 first boot after finishing the installation


 Dan

  Tom
 
 
  On Thu, Mar 27, 2014 at 4:17 AM, Dan Horák dho...@redhat.com wrote:
 
   On Tue, 18 Feb 2014 07:59:36 -0800
   Tom Huegel tehue...@gmail.com wrote:
  
This is what is happening at the end of the install on the first
boot. What is crazy is this worked earlier.. Now it fails every
time.. z/VM6.2 RSU 1302.
   
Detaching DM devices.
Detaching DM 253:4.
Detaching DM 253:3.
Detaching DM 253:2.
Detaching DM 253:1.
Not all DM devices detached, 1 left.
Detaching DM devices.
Not all DM devices detached, 1 left.
Cannot finalize remaining file systems and devices, giving up.
Storage is finalized.
Storage cleared - system reset.
HCPVMI232E IPL UNIT ERROR; IRB 00404017 E008 0020 0080
HCPGIR450W CP entered; disabled wait PSW 000E 0232
  
   hmm, this happened to me yesterday after updating and rebooting
   F-20 guest, it is z/VM 6.1 service level 1301 :-( I tried re-running
   zipl, but it didn't help
  
  
   Dan
  
On Thu, Feb 13, 2014 at 12:56 AM, Dan Horák dho...@redhat.com
wrote:
   
 On Wed, 12 Feb 2014 11:52:47 -0800
 Tom Huegel tehue...@gmail.com wrote:

  This is not good.
  This was working, but when I tried to demo it for someone it
  stopped working.
  I'm seeing the HCPGIR453W after the installation of F20 on the
  first and any subsequent disk boot.
 
  Anyone experience anything like this?

 Do you have some logs or any more information? Does zIPL load
 and start? Or does the guest stop when running the Linux kernel?


 Dan


 --
 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/

 --
 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

Re: FREDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-02-18 Thread Tom Huegel
This is what is happening at the end of the install on the first boot.
What is crazy is this worked earlier.. Now it fails every time.. z/VM6.2
RSU 1302.

Detaching DM devices.
Detaching DM 253:4.
Detaching DM 253:3.
Detaching DM 253:2.
Detaching DM 253:1.
Not all DM devices detached, 1 left.
Detaching DM devices.
Not all DM devices detached, 1 left.
Cannot finalize remaining file systems and devices, giving up.
Storage is finalized.
Storage cleared - system reset.
HCPVMI232E IPL UNIT ERROR; IRB 00404017 E008 0020 0080
HCPGIR450W CP entered; disabled wait PSW 000E 0232


On Thu, Feb 13, 2014 at 12:56 AM, Dan Horák dho...@redhat.com wrote:

 On Wed, 12 Feb 2014 11:52:47 -0800
 Tom Huegel tehue...@gmail.com wrote:

  This is not good.
  This was working, but when I tried to demo it for someone it stopped
  working.
  I'm seeing the HCPGIR453W after the installation of F20 on the first
  and any subsequent disk boot.
 
  Anyone experience anything like this?

 Do you have some logs or any more information? Does zIPL load and
 start? Or does the guest stop when running the Linux kernel?


 Dan

 --
 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: zLinux Question

2014-02-14 Thread Tom Huegel
Would the zLINUX run native or as z/VM guests?


On Fri, Feb 14, 2014 at 10:11 AM, Eric Covener cove...@gmail.com wrote:

  It takes quite some good skills on both Linux and System Z to properly
  understand and manage such an environment, IMHO.

 +1, this is a 2-beard problem!

 --
 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/


FREDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-02-12 Thread Tom Huegel
This is not good.
This was working, but when I tried to demo it for someone it stopped
working.
I'm seeing the HCPGIR453W after the installation of F20 on the first and
any subsequent disk boot.

Anyone experience anything like this?

Thanks
Tom

--
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: EXTERNAL: FREDORA F20 boot HCPGIR453W CP entered; program interrupt loop

2014-02-12 Thread Tom Huegel
This is a fresh install..


On Wed, Feb 12, 2014 at 2:43 PM, Hodge, Robert L robert.l.ho...@lmco.comwrote:

 No experience like that. Did you apply Fedora 20 patches for the kernel
 without running zipl afterwards?

 -Original Message-
 From: Linux on 390 Port [mailto:LINUX-390@VM.MARIST.EDU] On Behalf Of Tom
 Huegel
 Sent: Wednesday, February 12, 2014 12:53 PM
 To: LINUX-390@VM.MARIST.EDU
 Subject: EXTERNAL: FREDORA F20 boot HCPGIR453W CP entered; program
 interrupt loop

 This is not good.
 This was working, but when I tried to demo it for someone it stopped
 working.
 I'm seeing the HCPGIR453W after the installation of F20 on the first and
 any subsequent disk boot.

 Anyone experience anything like this?

 Thanks
 Tom

 --
 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: ABENDS

2014-02-06 Thread Tom Huegel
Dan,
Let me know when the new code is available and I'll give it a try.
Tom


On Thu, Feb 6, 2014 at 3:56 AM, Dan Horák dho...@redhat.com wrote:

 On Thu, 6 Feb 2014 10:17:40 +0100
 Dan Horák dho...@redhat.com wrote:

  On Wed, 5 Feb 2014 09:38:45 -0800
  Tom Huegel tehue...@gmail.com wrote:
 
   Thanks Dan that helped.
   I still get several abends during boot processing, but once that
 finishes
   everything appears to work OK.
 
  good to hear :-) a proper fix for prelink is on the way
 
  the abends during boot are from plymouth and they look harmless, but
  I'll look on them too

 and the plymouth (and maybe other) crashes are also results of the
 prelink bug, they will go away when new initrd is created, which is
 done after every kernel update, or can be done also manually

 Tom, thanks for the help resolving this issue.


 Dan

 --
 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: ABENDS

2014-02-05 Thread Tom Huegel
Dan,
If I get a chance I'll try it on my z/VM 5.4 system.
Right now I am updating my 6.2 to 6.3 once I get to 6.3 I'll try F-20 there.
Tom


On Wed, Feb 5, 2014 at 3:48 AM, Dan Horák dho...@redhat.com wrote:

 On Tue, 4 Feb 2014 12:56:53 -0800
 Tom Huegel tehue...@gmail.com wrote:

  This is the first one during boot. Then they just never stop. Eventually
 I
  see a logon message, but attempting to logon only cause more messages...

 and it becomes more interesting, I see the same exceptions in my F-20
 guest after the migration to zEC12 and to z/VM 6.1, a RHEL-7 guest runs
 in the same LPAR without problem. The difference between them is glibc -
 F-20 is 2.18 based, while RHEL-7 is 2.17. Also running F-20 on zEC12 in
 z/VM 5.4 is without problem. So, interesting ...


 Dan

  Starting Show Plymouth Boot Screen...
  [0.985347] User process fault: interruption code 0x40004 in
 libc-2.18.so
  [4010029000+1ae000]
  [0.985352] failing address: 40100C6000
  [0.985355] CPU: 0 PID: 358 Comm: plymouthd Not tainted
  3.12.8-300.fc20.s390x #1
  [0.985357] task: 7ff4b3f0 ti: 0166 task.ti:
  0166
  [0.985360] User PSW : 070500018000 0040100b11e4
 (0x40100b11e4)
  [0.985362]R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:1 AS:0 CC:0
  PM:0 EA:3
  User GPRS: 0001 0040100cdef8 0040100c6fd5
  0040
  [0.985366]0005 0022
  03fffd6f6000 0002
  [0.985368]03f30d60 005c
  005c 03f30da0
  [0.985370]0040101db000 00401019caf0
  0040100b11d4 03f30c48
  [0.985379] User Code: 0040100b11d8: a73aahi
  %r3,-1
 0040100b11dc: 5030b0bc   st  %r3,188(%r11)
#0040100b11e0: a774ffef   brc 7,40100b11be
0040100b11e4: 92002000   mvi 0(%r2),0
 0040100b11e8: c0195f20   larl%r1,40101dd028
 0040100b11ee: e3201004   lg  %r2,0(%r1)
 0040100b11f4: b9040032   lgr %r3,%r2
 0040100b11f8: eb361030   csg %r3,%r6,0(%r1)
  [0.985397] Last Breaking-Event-Address:
  [0.985399]  [0040100c6a5c] 0x40100c6a5c
  [ [1;31mFAILED [0m] Failed to start Show Plymouth Boot Screen.
  See 'systemctl status plymouth-start.service' for details.
 
 
  On Tue, Feb 4, 2014 at 11:12 AM, Dan Horák dho...@redhat.com wrote:
 
   On Tue, 4 Feb 2014 09:42:03 -0800
   Tom Huegel tehue...@gmail.com wrote:
  
Reproduced! I get dozens of these, similar, but different addresses
and instructions. I tried starting over and reinstalling, but to no
avail.
  
   when does it happen? after the installation? what application is it?
   looks as the getent tool, maybe run in a scriptlet during installation
  
  
   Dan
  
   
On Tue, Feb 4, 2014 at 7:24 AM, Carsten Otte co...@de.ibm.com
 wrote:
   
  Dan Horák dho...@redhat.com
  Sent by: Linux on 390 Port LINUX-390@vm.marist.edu
 
  one more idea - the address looks as a wrap over kernel memory
  pages when there is no page allocated for 4A7A2ED000, but a page
  is there for 4A7A2EC000, where the target is being copied, it can
  be an over-optimized version of memcpy() or something like that
 
  I already debugged this kind of crash with older glibc in RHEL.
 Good point. Can this be reproduced with the command running in gdb?
 If so, what is in /proc/pid/maps at the memory location?

 cheers,
 Carsten

 --
 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

Re: Fedora 20

2014-02-05 Thread Tom Huegel
Just an update on this problem. It was my fault (no surprise there) I had
my install machine defined at 1G when I defined storage to 2G the install
worked as it should.


On Wed, Jan 22, 2014 at 1:24 PM, Dan Horák dho...@redhat.com wrote:

 On Wed, 22 Jan 2014 12:47:43 -0800
 Tom Huegel tehue...@gmail.com wrote:

  I was trying to install FEDORA 20 on my z196 yesterday and it failed.
  I can't get back to the system until tomorrow or Friday to get more
  details, but I thought I'd ask if anyone else has had any problems.
 
  I had 2 failures One was when I tried to install with KDE I failed the
  software check missing requisites.

 ah, it could happen, KDE is not the primary desktop environment and we
 don't have the capacity to fix all problems during the development
 cycle. But you could be able to install a Minimal system first and then
 add KDE. The installer requires all dependencies for a group to be
 resolved at installation time.

  The other (I took GNOME this time) happened about an hour into the
  install when my CPU utilization went to 100% and I/Os went to zero...

 hm, more details would be needed here for a better answer, but
 installing GNOME should work. You can try XFCE too.


 Thanks

 Dan

  I know that is not much to go on but any insight would be helpful.
 
  Thanks
 
  --
  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/


  1   2   >