自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 问答 (3451)
  • 收藏
  • 关注

转载 linux mac地址文件夹,Find 命令 搜索文件/文件夹 Linux/Mac

Find 命令##根据文件名称模糊查询`find ./ -iname '*.txt'`同理包含任何一个字符(a或b或c)`find /Users/lim/Documents/ -iname '[abc].sh'`##查找属主文件find /Users/lim/Documents/ -user lim  // 查找属主文件同理:-user username:查找属主是xx的文件-group grou...

2021-04-30 07:19:51 114

转载 linux双系统的启动,解决Linux双系统安装卡在启动LOGO

在安装Linux 双系统(一般是Nvidia显卡,1080p加核显的电脑)时,经常会出现卡在安装logo的问题,这种原因一般是由于linux发行商收录的nouveau 的开源显卡的问题。针对这种情况,解决方案如下:最重要的话放在前面:安装Linux之前先关闭Security Boot!!(不同主板引导界面中该选项的位置可能不太一致,但是大多数都是在boot 选项中的)在进入grub安装界面的时候,...

2021-04-30 01:31:10 464

转载 linux服务器修改文件名字命令,Linux下如何批量修改文件名

对于在Linux中修改文件名的方式一般我们会用mv命令进行修改,但是mv命令是无法处理大量文件修改名称。但是在处理大量文件的时候该如何进行批量修改呢?方法一:mv配合for循环方式进行修改[root@show day74]# for name in `ls *.txt`;do echo $name ${name%.txt}.jpg;done100.txt 100.jpg10.txt 10.jpg1...

2021-04-29 20:57:31 875

转载 linux 守护进程 脚本,linux shell守护进程/ rac重启脚本

建立一个守护进程:#! /bin/shPRO_NAME=./xxxx.shwhile true ; do#用ps获取$PRO_NAME进程数量echo ''> nohup.outNUM=`ps aux | grep -w ${PRO_NAME} | grep -v grep |wc -l`#echo $NUM#少于1,重启进程if [ "${NUM}" -lt "1" ];thenecho ...

2021-04-29 05:53:25 155

转载 linux如何用命令安装nfs,linux安装nfs客户端

本文收集整理关于linux安装nfs客户端的相关议题,使用内容导航快速到达。内容导航:Q1:搭建LINUX服务器客户端挂载NFS目录命令?Linux客户端可以直接通过mount命令挂载NFS文件,如下操作:[root@linux-a ~]# mkdir /mnt/nsf1//创建挂载点[root@linux-a ~]# mount -t nfs 192.168.0.231:/nfs/frank /...

2021-04-29 03:17:57 619

转载 linux权限 www用户,linux用户权限管理

1基本概念Linux是一个多用户多任务的分时操作系统,任何一个要使用系统资源的用户,都必须首先向系统管理员申请一个账号, 然后以这个账号的身份进入系统。为了实现资源分派(系统管理员的权利)及出于安全的考虑,必须对用户进行不同权限的分配。用户组便于更高效地管理用户权限。用户操作Linux需要经过三个步骤的权限认证:Authentication:认证Authorization:授权Audit...

2021-04-28 23:44:51 2714

转载 linux如何复制字符串数组中,shell脚本字符串和数组的使用操作方法

字符串可以使用单引号和双引号定义字符串变量但是单引号中不支持变量解析#! /bin/bashusername="mayuan"str_1="hello ${username}"str_2='hello ${username}'echo $str_1 # hello mayuanecho $str_2 # hello ${username}获取字符串的长度#! /bin/bashusername="...

2021-04-28 17:15:17 216

转载 oracle10 ora 01578,ora-01578问题的解决

今天我在单位值班,从早上到晚上都没有什么客户打电话,比较轻松,以为下班就可以回家了,没想到就在下班的前5分钟,一个客户打来电话说数据库报“ORA-01578:ORACLE data block corrupted (file # 4, block # 92893)”。检查数据库日志文件*.log,发现问题:可以知道,损毁的数据文件是4和数据块92893,链接数据库,使用语句:select * fr...

2021-04-12 09:51:24 287

转载 oracle instant client setup,Install Oracle Instant Client on Linux and Windows

前言本篇文章用最简单和快速的方法介绍如何在 Red Hat Enterprise Linux 安装 Oracle Instant Client,该方法同样适用于 Windows,RHEL5/6/7,OEL,CentOS。Oracle Instant Client 是官方免费授权的一种比 Oracle Client 还要简单的数据库管理工具,通过 SQL*Plus 或者其它工具比如 Navicat ...

2021-04-07 06:08:11 145

转载 oracle 回滚空间查询,ORACLE解决回滚表空间太大或回滚表空间丢失情况

以下步骤可以解决回滚表空间太大及回滚表空间文件被误删除的问题:1. 停止数据库,不启动数据库实例sql>shutdown abortsql>startup mount2.让原回滚表空间 offlinealter database datafile 7 offline drop;(7为fileid);查询file_id 查询select f.file_name,f.file_id ,f....

2021-04-03 23:00:41 603

转载 oracle 数据库 双机,oracle双机热备份方法

一、创建Standby Database 要求1、 Primary 与standby 数据库所在主机上的oracle server及*作系统版本必须相同,且具有相同的补丁;2、 primary 数据库必须为archive mode;Standby Database也必须为archive mode ;二、创建standby数据库1、 首先查看Primary Database的归档模式(svrmgr&...

2021-04-03 05:48:10 355

转载 linux64 oracle11g缺失包,Linux-Oracle11g最全rpm包(64位)

【实例简介】包括:cloog-ppl-0.15.7-1.2.el6.x86_64.rpm compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm cpp-4.4.7-3.el6.x86_64.rpm elfutils-libelf-0.152-1.el6.x86_64.rpm elfutils-libelf-devel-0.125-3.el5.x86_64.rpm ...

2021-04-02 20:55:00 347

空空如也

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Make openshift_hosted_registry_console opt-out

2020-12-01

Add v1.6 image streams, update v1.5 image streams

2020-12-01

Restart polkitd to workaround a bug in polkitd

2020-12-01

Make openshift_hosted_registry_console opt-out

2020-12-01

Add v1.6 image streams, update v1.5 image streams

2020-12-01

Restart polkitd to workaround a bug in polkitd

2020-12-01

Restart polkitd to workaround a bug in polkitd

2020-12-01

Add v1.6 image streams, update v1.5 image streams

2020-12-01

Add v1.6 image streams, update v1.5 image streams

2020-12-01

Make openshift_hosted_registry_console opt-out

2020-12-01

Make openshift_hosted_registry_console opt-out

2020-12-01

Need to add ROUTER_METRICS_TYPE during router upgrades

2020-12-01

Revert back to iptables as the default for 3.5

2020-12-01

Sync latest imagestreams

2020-12-01

[THORN-1852] Moving KC factory from the test into its own fraction

2020-12-27

[SWARM-1931] Making Ribbon demo test pass

2020-12-26

Change step-01 code to ES6

2020-12-25

Migrate to SmallRye Health Implementation for 4.x

2020-12-25

Change how we set master's metricsPublicURL

2020-12-01

Update image stream data

2020-12-01

Add etcd_debug and etcd_log_package_levels variables

2020-12-01

Release 1.5 backports

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Wait for firewalld polkit policy to be defined

2020-12-01

Make openshift_hosted_registry_console opt-out

2020-12-01

Restart polkitd to workaround a bug in polkitd

2020-12-01

Revert back to iptables as the default for 3.5

2020-12-01

Copy v3 data dir when performing backup

2020-12-01

Fixed a bug. Ansible requires a msg param when module.fail_json.

2020-12-01

Check that openshift_hostname resolves to an ip on our host

2020-12-01

Sync latest imagestreams

2020-12-01

Check that openshift_hostname resolves to an ip on our host

2020-12-01

Check that openshift_hostname resolves to an ip on our host

2020-12-01

Check that openshift_hostname resolves to an ip on our host

2020-12-01

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除