Sponsored Content
Full Discussion: Time travel
The Lounge War Stories Time travel Post 302713153 by bakunin on Wednesday 10th of October 2012 10:28:05 AM
Old 10-10-2012
Only now i got it: "IOS", not "I OS". Actually this is not a mainframe but a midrange system, just like the p-series - in fact it is the same hardware.

This system was formerly called "AS/400" and the OS "OS/400" and you will find probably a lot more under these terms than under "IOS". Most of it, even the most outdated information, will probably still apply because the system hasn't changed that much for the last 20 years.

The AS/400 is quite radically different from anyother machine (for instance it has a linear address space which spans memory AND disk space - you move a file and it is dumped from memory to disk) and getting around the concepts is probably quite hard first.

On the other hand the AS/400 is famous for needing next to no administration at all. There are many companies owning a AS/400 and having had no Sysadmin for the last 15 years. Try that with a Unix system, it would be long broken.

The network is an alien thing too: it is called 5250 and works similar to (but is still different from) the SNA system and the 3270 data stream the IBM mainframes use.

Now for the good news: because IOS systems work in p-Series hardware there are still VIOS and HMC and they work absolutely the same way as you are accustomed to. Just the LPARs running IOS are different (inside - they are still the same LPARs from outside, say, from the viewpoint of the VIOS or the HMC).

I hope this helps.

bakunin
 

3 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How To Provide Time Sync Using Nts-150 Time Server On Unix Network?

can anybody tel lme,how to instal NTS -150 on a unix network,it needs some patch to fetch time frm serve,,?? (2 Replies)
Discussion started by: pesty
2 Replies

2. Shell Programming and Scripting

Convert Epoch Time to Standard Date and Time & Vice Versa

Hi guys, I know that this topic has been discuss numerous times, and I have search the net and this forum for it. However, non able to address the problem I faced so far. I am on Solaris Platform and unable to install additional packages like the GNU date and gawk to make use of their... (5 Replies)
Discussion started by: DrivesMeCrazy
5 Replies

3. Programming

PHP Travel Clock based on Mysql Date time

I have date time records in a PHP mysql table, I need a PHP travel clock which obviously counts down, I mean acts like a travel clock, but the clock time should be the date time field value down by the second, based on the full date time, from day to seconds It is not just one record, I... (1 Reply)
Discussion started by: AimyThomas
1 Replies
Time::Seconds(3perl)					 Perl Programmers Reference Guide				      Time::Seconds(3perl)

NAME
Time::Seconds - a simple API to convert seconds to other date values SYNOPSIS
use Time::Piece; use Time::Seconds; my $t = localtime; $t += ONE_DAY; my $t2 = localtime; my $s = $t - $t2; print "Difference is: ", $s->days, " "; DESCRIPTION
This module is part of the Time::Piece distribution. It allows the user to find out the number of minutes, hours, days, weeks or years in a given number of seconds. It is returned by Time::Piece when you delta two Time::Piece objects. Time::Seconds also exports the following constants: ONE_DAY ONE_WEEK ONE_HOUR ONE_MINUTE ONE_MONTH ONE_YEAR ONE_FINANCIAL_MONTH LEAP_YEAR NON_LEAP_YEAR Since perl does not (yet?) support constant objects, these constants are in seconds only, so you cannot, for example, do this: "print ONE_WEEK->minutes;" METHODS
The following methods are available: my $val = Time::Seconds->new(SECONDS) $val->seconds; $val->minutes; $val->hours; $val->days; $val->weeks; $val->months; $val->financial_months; # 30 days $val->years; $val->pretty; # gives English representation of the delta The usual arithmetic (+,-,+=,-=) is also available on the objects. The methods make the assumption that there are 24 hours in a day, 7 days in a week, 365.24225 days in a year and 12 months in a year. (from The Calendar FAQ at http://www.tondering.dk/claus/calendar.html) AUTHOR
Matt Sergeant, matt@sergeant.org Tobias Brox, tobiasb@tobiasb.funcom.com BalieXXzs SzabieXX (dLux), dlux@kapu.hu LICENSE
Please see Time::Piece for the license. Bugs Currently the methods aren't as efficient as they could be, for reasons of clarity. This is probably a bad idea. perl v5.14.2 2011-09-19 Time::Seconds(3perl)
All times are GMT -4. The time now is 03:39 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy