How do I install all developer tools such as GNU GCC C/C++ compilers, make and others, after installing CentOS from a shell prompt?you can following the nest line do ,install almost all development to...
分类:
系统相关 时间:
2014-06-07 01:23:47
阅读次数:
317
一. 需求 最近在做数据库迁移,经常需要打包实例传输,传统scp感觉很慢。二. 软件信息 1. 软件主页:http://tsunami-udp.sf.net/ 2. 软件安装:直接源码make && make install三. 简单使用 以下介绍简明步骤: 在源机子开启tsunami进程:tsunamid * 在目标机子 connect...
分类:
其他好文 时间:
2014-06-05 11:05:15
阅读次数:
248
在网上查了很多资料,发现在在ubuntu 64 11.04 上运行32位程序要装一个ia32-libs的包,可执行如下命令,却提示无法安装
apt-get install ia32-libs
难道11.04的安装源给整坏了!!!
经过查了很多很多的外国网站,找到很多方法,都无效!
最后找到一种,将就可以用
apt-get install libstdc++6
apt-get instal...
分类:
其他好文 时间:
2014-06-05 10:44:36
阅读次数:
221
This article shows my process of installing and configuring bind9 DNS server on a linux server. I didn't touch every aspects of bind9, but following the process, a DNS server is configured with A/AAAA...
分类:
系统相关 时间:
2014-06-05 08:36:26
阅读次数:
450
一:在软件中心输入codeblocks,然后点击安装,等着装完就行了。
再按ctrl+alt+t 打开终端 输入 sudo apt-get install gcc
而后再输入sudo apt-get install g++
最后打开codeblocks写个 helloworld 试试吧。
二:helloworld小程序写完后,也编译通过了...
分类:
系统相关 时间:
2014-06-05 07:37:11
阅读次数:
391
今天开始安装MySQL,本来是去官网下载安装包来安装的,可是安装之后却不能用,估计是要配置吧,在网上搜了很多的资料,结果还是失败。所以只好在软件源中安装,这样就省去很多不必要的麻烦了。zhiniaobu@telunsu-K55VD:~$ sudo apt-get install mysql-server
[sudo] password for zhiniaobu:
执行该命令后,系统还会自动安装...
分类:
数据库 时间:
2014-06-05 00:15:23
阅读次数:
295
有三个步骤
1.讲searchd进程写成一个服务,不然每次调用都要打开这个进程很麻烦。
g:\service\coreseek\bin\searchd --install --config g:/service/coreseek/etc/csft_mysql.conf --servicename Coreseek
同样的万变不离其宗还是跟配置文件有关系
一个参数是你searchd的路径...
对象权限与系统权限
创建表和创建session是系统权限;
系统管理员是有权限去访问其他表的
以sys登录
sqlplus sys/on_change_install as sysdba;
创建用户wangwu
create user wangwu identified by wangwu;
系统权限
grant create sessi...
分类:
数据库 时间:
2014-06-04 22:48:26
阅读次数:
277
1、安装VNCyum install vnc-server2、添加多个用户用户useradd
user1 //添加用户user1passwd user1 //设置用户的linux登录密码su user1 //切换到用户user1vncpasswd
//设置用户的user1登录密码exit...
分类:
其他好文 时间:
2014-05-31 14:03:07
阅读次数:
6457
Python的包管理工具Pip
接触了Ruby,发现它有个包管理工具RubyGem很好用,并且有很完备的文档系统http://rdoc.info发现Python下也有同样的工具,包括easy_install和Pip。不过,我没有细看easy_install的方法,这就简单的介绍一下Pip的安装与使....
分类:
编程语言 时间:
2014-05-31 03:06:10
阅读次数:
257