开启归档模式
> archive log list;
> shutdown immediate;
> startup mount
> alter database archivelog
> alter database open;
> archive log list;
查看归档模式,同时还能看归档存放路径
> show parameter recovery;
查...
分类:
数据库 时间:
2015-03-04 17:04:13
阅读次数:
178
本文介绍mount命令的用法,以及技巧光盘镜像文件、移动硬盘及U盘的方法。一,挂接命令(mount)挂接(mount)命令的使用方法。命令格式:代码如下:mount [-t vfstype] [-o options] device dir其中:1.-t vfstype 指定文件系统的类型,通常不必指...
分类:
系统相关 时间:
2015-03-02 22:21:15
阅读次数:
373
1、分别挂载光盘DVD1、DVD2.mkdir/home/yum_packages##存放rpm包文件夹mkdir/mnt/cdrom##挂载光盘目录mount/dev/cdrom/mnt/cdrom##开始挂载光盘,需要分别挂载DVD1和DVD2ls/mnt/cdrom##查看挂载是否成功cp/mnt/cdrom/Packages/*/home/yum_packages##复制rpm包2、安装仓储软件包..
分类:
其他好文 时间:
2015-03-02 19:20:15
阅读次数:
113
1.挂载光盘[root@localhost~]#mkdir/media/centos[root@localhost~]#mount/dev/cdrom/media/centos2.进入/etc/yum.repos.d目录[root@localhost~]#cd/etc/yum.repos.d/[root@localhostyum.repos.d]#mvCentOS-Base.repoCentOS-Base.repo.BAK#将CentOS-Base.repo更改为备份文件,..
分类:
其他好文 时间:
2015-03-02 19:18:33
阅读次数:
140
调优方法原理:禁用atime的修改来节省cpu和内存资源。命令:mount noatime disk1、配置文件1. /etc/passwd文档结构:由":" 分隔成7个字段"username":"x":"uid":"gid":"remark":"homedirectory":"shell envi...
分类:
其他好文 时间:
2015-03-02 16:17:29
阅读次数:
220
fdisk -l //先查询未挂载的硬盘名如:sdb1 等 mkfs.ext3 /dev/xvdb 开始格式化 df -h mount /dev/xvdb /home 开始挂载 vi /etc/fstab ...
分类:
其他好文 时间:
2015-03-02 12:42:03
阅读次数:
130
1.intruduction命令用于卸载指定文件系统卸载文件系统时,须所有用户需退出挂载的文件系统,也没有任何程序在读写文件系统。卸载文件系统时,按挂载的逆顺序依次卸载。如mount/dev/sda1/mnt/tmp,mount/dev/sda2/mnt/tmp/test,要先卸载/dev/sda2才能成功。2.sysopsisumount<m..
分类:
系统相关 时间:
2015-03-02 06:14:01
阅读次数:
247
Lots of Unixes have some form of 'loopback' mounts, where you can mount a bit of an existing filesystem somewhere else; they're called loopback mounts...
分类:
系统相关 时间:
2015-02-27 16:50:39
阅读次数:
194
When you use the bind option of the mount command, you must be sure that the file systems are mounted in the correct order. In the following example, ...
分类:
其他好文 时间:
2015-02-26 21:33:04
阅读次数:
129
3.oracle数据库的分阶段关闭3.1将数据库从open状态置于mount状态SQL>alterdatabaseclose;Databasealtered.关闭掉所有的数据文件和日志文件3.2卸载数据库,从mount状态置于nomount状态SQL>alterdatabasedismount;--在mount状态下Databasealtered.关闭掉控制文件3.3关闭数..
分类:
数据库 时间:
2015-02-26 00:03:25
阅读次数:
242