網頁

搜尋此網誌

2014年10月12日 星期日

Linux 安裝VMWare tools

1.開啟vSphere Client>>開啟Console>>選VM>>Guest>>Install>>Upgrade VMware Tools
2.copy VMWare Tools 到 tmp
#cp/media/VMware Tools/VMwareTools-xxx.tar.gz /tmp
3.開始安裝
#cd /tmp
#tar zxvf VMwareTools-xxx.tar.gz
#cd vmware-tools-distrib
#./vmware-install.pl

2014年10月5日 星期日

kernel panic not syncing attempted to kill init pid 1 comm init not tainted of CentOS



因 SELINUX 檔案修改錯誤開機後出現kernel panic not syncing attempted to kill init pid 1 comm init not tainted 訊息




進不去Linux 又不能重裝,只要GRUB 選單下按 a 鍵後在後面加上selinux=0 enforcing=0 後,就可以進去Linux了,之後再把SELINUX 內容修改正確就可以正常開機了。

2014年10月4日 星期六

重設mysql root 密碼的方法:

忘記mysql root 密碼時可依下列方式修改:

[root@zabbix domo]# service mysqld stop  //停止mysql 
141004 20:20:55 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
正在停止 mysqld:                                          [  確定  ]
[root@zabbix domo]# mysqld_safe --skip-grant-tables &  //用此指令進入安全模式跳過檢查權限的資料表
[1] 3154
[root@zabbix domo]# 141004 20:21:33 mysqld_safe Logging to '/var/log/mysqld.log'.
141004 20:21:33 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

[root@zabbix domo]# mysql -u root  // 可用空密碼進入mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> update mysql.user set password=PASSWORD("mysql") where User='root';    //用此指令修改 root 密碼為mysql
Query OK, 0 rows affected (0.00 sec)
Rows matched: 3  Changed: 0  Warnings: 0

mysql>  flush privileges;  //刷新MySQL的系統許可權
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye
[root@zabbix domo]# service mysqld start
正在啟動 mysqld:                                          [  確定  ]

可成功使用新密碼登入mysql
-----------------------------------------------------------
[root@zabbix domo]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
3 rows in set (0.01 sec)

mysql>

2014年10月3日 星期五

skype 找不倒網路攝影機,原來是VIrtual web cam 搞的鬼

同事的skype突然找不到筆電的網路攝影機,但是測試其他軟體攝影機是正常的,找了半天原來是ASUS 筆電的 ASUS virtual Camera造成的,把ASUS Utility"->"ASUS Virtual Webcam" 關掉後就正常了,下次若遇相同到問題可能也是類似的軟體造成的。