aix

Oracle 10g 安装 在win10系统上时

橙三吉。 提交于 2020-02-28 23:19:33
Oracle 10g 安装 在win10系统上时, 提前在setup.exe 上右键--- > 属性 --- > 兼容性--- > 兼容模式 --- > (打勾)以兼容模式运行这个程序:(Windows XP(Service Pack 3)) 如果有错误: oracle 环境变量path的值超过1023字符 解决方法: 找到环境变量-- > 系统变量 > Path > 编辑 > path的复制到一个txt文件中,仅保留一个值。 等Oracle安装完成后,再把其他的值粘贴过来。 oracle11g安装 教程 https://blog.csdn.net/qq_41910230/article/details/90516929 oracle10G/11G官方迅雷下载地址合集 把地址拷贝到讯雷中+下载的方法 Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (64-bit) http://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_1of2.zip http://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_2of2.zip http:/

查看Unix系统是32位还是64位

安稳与你 提交于 2020-02-09 02:31:42
#getconf查看OS位数 以下经过测试了 HP: getconf KERNEL_BITS Linux: getconf LONG_BIT AIX: getconf KERNEL_BITMODE #AIX上getconf命令可以获取系统的基本配置信息,比如操作系统位数,内存大小,磁盘大小等. 例如: 确定磁盘 hdisk0 大小,若是 root 用户,则输入: getconf DISK_SIZE /dev/hdisk0 确定实际内存大小:getconf REAL_MEMORY 确定内核是32位或64位: getconf KERNEL_BITMODE 确定机器硬件是32位或64位:getconf HARDWARE_BITMODE 举例: root@aixsvr:/#getconf DISK_SIZE /dev/hdisk0 34732 root@aixsvr:/#getconf REAL_MEMORY 2097152 root@aixsvr:/#getconf KERNEL_BITMODE 64 root@aixsvr:/#getconf HARDWARE_BITMODE 64 root@aixsvr:/#bootinfo -y #显示AIX系统内核是32位还是64位 64 #AIX和Linux都支持getconf -a查看所有系统配置,HP不支持; 来源: https://www

Aix 常用命令

无人久伴 提交于 2020-02-07 12:04:18
查看系统安装时间 lslpp -h bos.rte 查看主机IP ifconfig -a 查看序列号 prtconf | head 查看系统版本 oslevel oslevel -s oslevel -r 查看补丁版本 查看软件版本 lslpp -l 查看逻辑cpu个数 pmcycles -m 查看物理CPU个数 prtconf|grep Processors lsdev -C |grep proc 查看内存 bootinfo -r lsattr -El mem0 查看系统进程,相当于top topas sar 1 10 查看主机系统: nmon 查看耗cpu进程 ps aux |head -1 ;ps aux |sort -rn +2 |head -10 ps aux | sort -rn -k3 | head -n 10 查看端口: netstat -Aan|grep LISTEN 查看端口进程: DELL主机查序列号 dmidecode -s system-serial-number dmidecode -t 1 显示系统微码 lsmcode -c 查看文件系统格式: lsfs ----------------------------------------------------------- AIX下对LVM信息查看 lspv //查看所有的物理卷(物理磁盘) lsvg

Is the ln(create hardlink) command atomic on AIX?

亡梦爱人 提交于 2020-01-25 07:08:06
问题 Is the ln(create hardlink) command atomic on AIX? The problem is that there are two processes running and the process that creates the hardlink is not the same process that reads it. I want to ensure that the second process will not run into trouble with partially created hardlinks if there is such a thing. See also: Copy or move file into directory with parallel processing from another process 来源: https://stackoverflow.com/questions/59894407/is-the-lncreate-hardlink-command-atomic-on-aix

AIX 批量更改密码

喜欢而已 提交于 2020-01-23 13:08:26
使用 chpasswd 可以使用 chpasswd 方便地更改单个或多个账户密码。这意味着不需要像平时一样在命令行上重复输入密码。尽管可以以交互方式使用 chpasswd,但是我建议以非交互方式使用它。使用 chpasswd 是一种快速更改密码的方法。 使用 chpasswd 的格式是: chpasswd -f <pwdadm flags> -c 其中: -f 可以解析 pwdadm 标志 -c 清除密码标志 从标准输入读取以下格式的用户名和密码: user_name:user_password 我将演示使用 chpasswd 为这些用户设置初始密码的两种方法。在下面的示例中,在命令行上回显用户名 alpha 和密码 mypasswd,然后通过管道连接到 chpasswd: echo "alpha:mypasswd" | chpasswd 现在,通过 pwdadm 查询用户 alpha,可以看到已经设置了标志值 ADMCHG,这是重新设置密码时 chpasswd 的默认设置: # pwdadm -q alpha alpha: lastupdate = 1265765265 flags = ADMCHG ADMCHG 表示当用户 alpha 下一次尝试用设置的初始密码 (mypasswd) 登录时,会强迫用户 alpha 更改密码。这也适用于设置了 ADMCHG 标志的其他账户。

Difference between libgcc.a and libgcc_s.a?

半城伤御伤魂 提交于 2020-01-22 18:23:25
问题 We have installed GCC and libgcc on AIX 6.1 using the RPM files. What I would like to know is why "libgcc_s.a" was not created under the following folder? /opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ There is a libgcc.a in that folder but not libgcc_s.a and the linker seems to want that libgcc_s.a file there Reason I ask is if I try create a simple "hello world" type shared lib on AIX 6.1 it complains and says someting like "cannot find libgcc_s.a" . I have run a command like: find /

Difference between libgcc.a and libgcc_s.a?

夙愿已清 提交于 2020-01-22 18:22:31
问题 We have installed GCC and libgcc on AIX 6.1 using the RPM files. What I would like to know is why "libgcc_s.a" was not created under the following folder? /opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ There is a libgcc.a in that folder but not libgcc_s.a and the linker seems to want that libgcc_s.a file there Reason I ask is if I try create a simple "hello world" type shared lib on AIX 6.1 it complains and says someting like "cannot find libgcc_s.a" . I have run a command like: find /

Difference between libgcc.a and libgcc_s.a?

无人久伴 提交于 2020-01-22 18:22:26
问题 We have installed GCC and libgcc on AIX 6.1 using the RPM files. What I would like to know is why "libgcc_s.a" was not created under the following folder? /opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/ There is a libgcc.a in that folder but not libgcc_s.a and the linker seems to want that libgcc_s.a file there Reason I ask is if I try create a simple "hello world" type shared lib on AIX 6.1 it complains and says someting like "cannot find libgcc_s.a" . I have run a command like: find /

aix 定时调度删除归档日志

烂漫一生 提交于 2020-01-20 20:01:46
1.编码写sh脚本文件。 2. crontab -e username. #打开一个文件, 3.输入脚本 13 17 * * * sh /home/oracle/delOraArch.sh 4.wq #保存退出。 5.自动删除归档日志。 delOraArch.sh ---------------------------------- #!/bin/bash . /home/oracle/.profile export ORACLE_SID=TJFXDB1 $ORACLE_HOME/bin/rman log=/home/oracle/oraArch/deleteOraArch.log<<EOF connect target / run{ crosscheck archivelog all; delete noprompt expired archivelog all; delete noprompt archivelog all completed before 'sysdate - 2'; } exit; ------------------------------ 参考: https://wenku.baidu.com/view/f1ae285ccaaedd3383c4d362.html https://blog.csdn.net/yincg/article/details

Installing Ruby on AIX

孤街浪徒 提交于 2020-01-17 13:43:15
问题 What are some less painful ways to install Ruby on AIX? I found out that using RVM to install Ruby might be the best option. However, installing RVM itself seems like really maddening. I found an article from IBM website on how to install RVM but there are so many prerequisites for it that I feel like it will take me days to get all that stuff installed and get working: However, RVM does have some prerequisites. Before you continue, check your system and be sure that you have the bash, git,