Questions tagged [hp-ux]

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

HP-UX (Hewlett-Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on UNIX System V (initially System III) and first released in 1984.

Resources

368 questions
0
votes
1 answer

Subtracting 30 days from current date in awk Unix command

I want to modify this command to subtract 30 days from current date automatically $ awk -v t=$(date +%Y-%m-%d) -F "'" '$1 < t' myname.dat When I try $ awk -v t=$(date "--date=$(date) -30days" +%Y-%m-%d) -F "'" '$1 < t' myname.dat I get the…
0
votes
0 answers

How to install R on HP-UX environment

I need to install R packages on HP-UX. Please share the steps & the prerequisites. Thanks in advance.
Nati
  • 15
  • 1
  • 6
0
votes
0 answers

check files in the folder for more than ten hours using awk command

I created script to check the files in the folder for 4 hours ago it is working fine because I am using HP UX. fourago=`date +"%m %d %H %M" | awk '{ fourago=$3 - 4 ; if ((fourago<4)&&(fourago>3)) { fourago=59 }…
Maxtech
  • 111
  • 16
0
votes
1 answer

What's the equivalent of "find -mmin" in HP-UX?

I created a script to check XML file available in the folder for more than four hours. If the XML is not processed for more than four hours then I need to send a mail for that I used the below find command but the mmin+240 is not working. Is there…
Maxtech
  • 111
  • 16
0
votes
1 answer

Syntax for comparing dates on HP-UX box - not found error

This is regards checking SSL certificate expiry on a HP-UX box. No date -d available. I have the following; #!/bin/bash # Exit script if program fails or an unset variable is used set -eu server="BLABLA" port="443" graceperiod_days="30" #…
user6314597
0
votes
1 answer

adb setting to load libraries from different directories

I have a core file generated on an HP IA64 machine. I have the executable and shared objects related to the core file. I am trying to get the call stack using the adb debugger but the core file was generated on a machine I don't have access to, so…
Reuben
  • 93
  • 1
  • 7
0
votes
1 answer

to get the name of previous month

I want to get the name of the previous month to define it as a variable in my shell script. I tried different commands available on the internet, but doesn't seem working, like: TZ=CST+24 date +%b gives me output as Aprand date -d "last month"…
User123
  • 1,498
  • 2
  • 12
  • 26
0
votes
0 answers

what are schema level changes has to be done from oracle 11g to 12c? any one have idea?

I am trying to install Oracle 12c on my HP-UX 11.31 Itanium machine ia64. I am getting schema level error. So anyone tells me what are all changes has to be done from Oracle 11g to Oracle 12c. Already machine contains 11g related schema.
0
votes
0 answers

python setup.py - how to remove compiler option HP-UX

I'm new to python, and try to compile python module in HP-UX 11.31. % CC=gcc python setup.py build unix running build running build_ext building 'pygoldilocks' extension gcc -DNDEBUG -O +z -DPYGOLDILOCKS_VERSION=1.0 gcc: +z: not recognized…
Kwang Hun Lee
  • 23
  • 2
  • 6
0
votes
0 answers

Unable to create PRODUCT_USER_PROFILE synonym

SQL> conn SYSTEM/psswd123 Connected. SQL> show user USER is "SYS" I am logged in as a system user but its showing user is "sys" how to solve this issue.Because of this iam unable to run the pupbld.sql file as a sytem user. I tried to run the…
0
votes
0 answers

iam getting error like ORA-27125: unable to create shared memory segment

When I am trying to create db instances, I am getting errors like below: SQL> ORA-27125: unable to create shared memory segment HPUX-ia64 Error: 12: Not enough space My system physical memory has 15.68 GB and my shmmax value is =…
0
votes
2 answers

How can I get the machine information in HP-UX NILA B.11.23

I am using the HP-UX NILA B.11.23 and I would like to know the command which will give below details: CPU information(number of CPUs,speed of cpus,version of cpus etc.,). Memory information(main memory size and hard disk size).
user398026
  • 93
  • 1
  • 9
0
votes
1 answer

Ghostscript compiling on HP-UX 11.31

Environment: HP-UX 11.31 GCC 4.2.3 Ghostscript 9.22 When trying to compile using ".\configure" our Unix admin gets Bad character | (octal 174), line 278Make: . Stop. When trying to make using "./configure CFLAGS="-Dinline=\"\""…
Someone_52
  • 17
  • 8
0
votes
1 answer

What can cause the application to report Undefined symbol __shlinit from a .sl library in HP-UX 11.00?

I am building a .sl library using aCC in HP-UX 11.00. I am able to build it and then link it to the application also successfully. But, when I execute the exe, it gives the below error /usr/lib/dld.sl: Unresolved Symbol: __shlinit(code) from…
Jay
  • 24,173
  • 25
  • 93
  • 141
0
votes
0 answers

Limitation of HP awk

A simple awk script works fine in Linux and my own HPUX 11.31 platform, but it doesn't work in other HPUX 11.31 system. I can't access the problematic HPUX system so I am not able to test something for now. @ Input data mystring my.linuxsrc …
Sigularity
  • 917
  • 2
  • 12
  • 28