码迷,mamicode.com
首页 > 其他好文 > 详细

Centos6 日常使用小结

时间:2015-05-27 11:46:25      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

网络配置目录

1./etc/sysconfig/network-script/ifcfg-eth0

 

2.netstat -rn

Kernel IP routing table

Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface

172.16.15.0     0.0.0.0         255.255.255.128 U         0 0          0 eth0

 

 

route add default gw 172.16.15.1

grep GATEWAY /etc/sysconfig/network-scripts/ifcfg-eth0

 

很奇怪,为什么手动在配置文件内添加网关没反映 真是醉了

-------------------------------------------------------

 

普通用户给管理员权限(很大的)

 /etc/sudoers  目录

查找

root    ALL=(ALL) ALL

在下面写入

manue1    ALL=(ALL) ALL   

-------------------------------------------------

 

更新系统

yum -y update   升级软件和系统内核

yum -y upgrade  只升级所有包

 

-----------------------------------

安装Chrome

1.先下载自动安装脚本:http://chrome.richardlloyd.org.uk/install_chrome.sh

 

2.然后使用vim编辑install—chrome.sh,查找并将

其中的http://omahaproxy.appspot.com

改为https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm

3.打开终端,依次执行

chmod u+x install_chrome.sh

./install_chrome.sh 

----------------------------------------------

安装为知笔记

https://github.com/WizTeam/WizQTClient

 

----------------------------------------------

安装eclipse

https://eclipse.org/downloads/

复制到/opt解压 tar -zxvf

为eclipse创建桌面快捷方式  软链接

 ln -s /opt/eclipse/eclipse ~/桌面

-----------------------------------------------

安装Oracle

http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-linx8664soft-100572.html   

一定要看好下载的Oracle是多少位的,不要问我为什么会提醒你^_^!!

http://blog.itrunc.com/2013/12/30/install-oracle-11g-release2-in-centos-x64/

 

安装SQL developer

http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html

 

问题一:

这是32位在64位系统安装的错误,学到了一条不错的yum命令 小记一哈

error

http://wangchunfeng192.blog.163.com/blog/static/43280937201321994536907/

locate libXext.so.6

yum list available | grep libXext

 

问题二:

bash: sqlplus: command not found 解决方法

http://shiguanghui.iteye.com/blog/1939054

查看是否存在sqlplus

# cd /usr/bin/

# find -name sqlplus

到sqlplus的更目录下找到,做软链接

/opt/oracle/11g/bin

ln -s sqlplus  /usr/bin/

soruce一下,使环境变量马上生效

source .bash_profile

 

同样dbca的配置也一样(自带的添加删除修改数据库)

export

运行时候一定要修改下语言环境

 ------------------------------------------------

开启远程桌面登录

1. 安装

  sudo yum install tigervnc tigervnc-server

2.配置

 sudo vi /etc/sysconfig/vncservers

 VNCSERVERS="1:manue1" //桌面号:用户名  端口=5900+桌面号

 VNCSERVERARGS[1]="-geometry 1024*768  -nolisten tcp -localhost"

 

3.设置密码 

  vncpasswd

4.启动重启

 vncserver

 service vncserver restart

 开机自启动

 chkconfig vncserver on

5.防火墙开启对应端口

 sudo iptables -I INPUT 1 -p tcp --dport 5901 -j ACCEPT

6. 客户端连接

 172.16.15.71:1

 http://172.16.15.71:5901

-----------------------------------------------

 

Centos6 日常使用小结

标签:

原文地址:http://www.cnblogs.com/manue1/p/4532650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!