
Linux系统类
冰补凤天离
Join me or dead...
展开
-
openssl编程
Linux openssl编程: 1.从pfx证书中提取出公私钥: openssl pkcs12 -in 1.pfx -nocerts -nodes -out 1.key //提取密钥对 ...原创 2020-07-28 18:35:02 · 496 阅读 · 0 评论 -
tuxedo 中间件命令
启动tuxedo :常驻进程 tmloadcf ubb --编译配置生成二进制文件 dmloadcf dm --编译dm为二进制文件 tmboot -y --启动服务 tmshutdown -y --关闭 : 常驻进程 tmipcrm --清除本地非正常停止的icp资源...原创 2020-07-28 18:28:56 · 591 阅读 · 0 评论 -
计算机基础复习
1.一个二进制,如何判断是正数还是负数? -----A.看最高位,最高位是0 正 1负; B.如果是无符号存储,则其为一个正数。若是有符号存储,则为补码存储2.计算机一个字节是几位? -----1一个字节是8位二进制;...原创 2020-07-28 18:26:52 · 127 阅读 · 0 评论 -
shell 对文件判断
shell if判断 : [ -a 文件 ] 如果文件存在为真。 [ -b 文件 ] 如果 文件 存在 而且 是一个 块-特殊 文件为真。 [ -c 文件 ] 为真 如果 文件 存在 而且 是一个 字-特殊 文件。 [ -d 文件 ] 为真 如果...原创 2020-07-28 13:44:19 · 224 阅读 · 0 评论 -
Linux 从远程服务器获取/上传文件脚本,
1.从远程服务器获取指定文件脚本:#!/bin/bash#########################################################$1 ip addr#$2 user name#$3 password#$4 local dir#$5 remote dir#$6 target file e.g a. 'file1' b.'file1 f...原创 2018-12-05 10:44:52 · 875 阅读 · 0 评论 -
linux 运维 lftp命令找不到
1. 输入 lftp 命令.报bash: lftp: command not found...安装lftp软件;yum -y install lftp 即可原创 2018-12-01 09:01:44 · 15194 阅读 · 0 评论 -
centos更换yum源出问题
centos在wget的时候发现提示 Resolving failed: Temporary failure in name resolution 错误。解决这类错误,可以修改/etc/resolv.conf,找到nameserver项修改成下面的,没有的话添加下面的nameserver 8.8.8.8nameserver 8.8.4.4使用的Google的name server...原创 2020-07-28 18:27:54 · 98 阅读 · 0 评论 -
linux防火墙问题
防火墙的问题1,centos系统 防火墙 查看 firewall-cmd --state 关闭 systemctl stop firewalld.service开启 systemctl start firewalld.service禁止开机启动 systemctl disable firewalled.service2,其他linux系统查看 service iptables status重...原创 2018-06-09 12:46:12 · 181 阅读 · 0 评论 -
安装Linux Oracle依赖的包
yum命令下载所需安装的包yum install binutils compat-libcap1 compat-libstdc++-33 gcc gcc-c++ glibc glibc-devel ksh libaio libaio-devel libgcc libstdc++ libstdc++-devel libXext libXtst libX11 libXau libxcb libXi m...原创 2018-06-08 09:18:24 · 4504 阅读 · 0 评论 -
Linux主机名字设置
在配置文件 /etc/hostname 内设置原创 2018-06-06 10:22:37 · 278 阅读 · 0 评论