Start Oralce:
sudo /etc/init.d/oracle-xe start
Stop Oracle:
sudo /etc/init.d/oracle-xe stop
Re-config Oracle:
sudo /etc/init.d/oracle-xe configure
Or there is another way
sudo su - oracle
Remove auto-start from system boot:
cd /etc/ls -l rc*.dYou may get 7 directories, rc0.d, rc1.d, ..., rc6.d and rcS.d, and in some of them you may find the files like
ls -l *oracle-xe*
lrwxrwxrwx 1 root root 19 Mar 17 23:59 K01oracle-xe -> ../init.d/oracle-xe
...
lrwxrwxrwx 1 root root 19 Mar 17 23:59 S80oracle-xe -> ../init.d/oracle-xe
...
Which starts with K is for shutdown and starts with S is for start-up.
Remove all of them or remain shutdown. If leave shutdown link I suppose no need to shut down with command before you log out.
sudo rm S80oracle-xe
tar命令
先对文件进行打包,然后进行压缩。
[.tar、.gz、.tar.gz、.tgz、.bz2、.tar.bz2、.Z、.tar.Z、.zip、.rar]
[主要讲tar,其他还有zip/unzip/rar/unrar]
一、打包或解包文件:
打包/解压 后缀为.tar
举例:
# tar -cf all.tar *.jpg
这条命令是将所有.jpg的文件打成一个名为all.tar的包。-c是表示产生新的包,-f指定包的文件名。
# tar -rf all.tar *.gif
这条命令是将所有.gif的文件增加到all.tar的包里面去。-r是表示增加文件的意思。
# tar -uf all.tar logo.gif
这条命令是更新原来tar包all.tar中logo.gif文件,-u是表示更新文件的意思。
# tar -tf all.tar
这条命令是列出all.tar包中所有文件,-t是列出文件的意思
# tar -xf all.tar
这条命令是解出all.tar包中所有文件,-x是解开的意思
二、压缩或解压文件
[注释:3种压缩方式]
tar可以打包/解包,同时调用其它的压缩程序进行压缩/解压,
比如调用gzip、bzip2等。
1) tar调用gzip
gzip是GNU组织开发的一个压缩程序,.gz结尾的文件就是gzip压缩的结果。
与gzip相对的解压程序是gunzip。
tar参数 -z 调用gzip [注释:-z是小写字母]
举例:
# tar -czf all.tar.gz *.jpg
先将.jpg的文件打成一个tar包,然后用gzip压缩,生成一个gzip压缩过的包,包名为all.tar.gz。
# tar -xzf all.tar.gz
将包解开。
2) tar调用bzip2
bzip2是一个压缩能力更强的压缩程序,.bz2结尾的文件就是bzip2压缩的结果。
与bzip2相对的解压程序是bunzip2。
tar参数 -j 调用gzip。
举例: