发布时间:2012-12-12 11:06:57
1. ifconfig & serviceifconfig 显示网络接口ifconfig eth0 down 禁用网络接口ifconfig eth0 up 启用网络接......【阅读全文】
发布时间:2012-12-12 11:06:36
主要的多线程API1、 线程创建函数:int pthread_create (pthread_t * thread_id, __const pthread_attr_t * __attr,void *(*__start_routine) (void *),void *__restrict __arg);2、 获得父进程ID:pthread_t pthread_self (void)3、 测试两个线程号是否相同:int pthread_equal (pthread_t __thread1, pthread_t __thread2)4、 线程退出:void pthread_exit (void ......【阅读全文】
发布时间:2012-12-12 11:04:21
/*****************************************************************************************************************************************************创建5个哲学家abcde。然后a哲学家要吃反,首先拿起左手边的筷子,然后观察右手边的筷子是否有人用,有则放下左手筷子,若无则吃饭。注意*哲学家吃饭时不被打扰,然后下一个哲学家吃饭判断,b哲学家的左筷子被a用,所以b不能吃进行思考,依次判断一下几个哲学家能否吃饭,原则为*判断左手筷子是否能用,不能用进......【阅读全文】
发布时间:2012-12-12 11:04:04
由于443端口被占用,导致的httpd服务器无法正常启动。我们在终端输入:#service httpd restart显示错误:停止 httpd:  ......【阅读全文】
发布时间:2012-12-12 11:03:55
1.修改MySQL的登录设置: 可无需密码登录mysql# gedit /etc/my.cnf在[mysqld]的段中加上一句:skip-grant-tables 例如: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock skip-grant-tables 保存并且退出。 2.重新启动mysqld # /etc/init.d/mysqld restart Stopping MySQL: [ OK ] Starting MySQL: [ OK ] 3.无需密......【阅读全文】