1、中文亂碼問題
安裝這個兩個中文包,成功顯示中文網頁
2、修改linux螢幕解析度
找到合適的解析度
3、開機故障
在修改/etc/selinux/config selinux=disable後開機出現
unabletoloadselinuxpolicy. machine is in enforcing mode. halting now.
kernel panic-not syncing:attemptedtokill init!
解決方法:
在grub啟動選單上按e進入編輯模式,在啟動項
「kernel /vmlinuz-2.6.23.1-42.fc8 ro root=/dev/vogroup00/logvol00 rhgb quiet」
後面加上 enforcing=0 ,回車,然後按b啟動即可
4. mysql安裝問題
# mysql -u root -p
enter password:
error 1045 (28000): access denied for user 'root'@'localhost' (using password: no)
或者# mysql -u root -p password 'newpassword'
enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'access denied for user 'root'@'localhost' (using password: yes)'
現在終於找到解決方法了。本來準備重灌的,現在不必了。
方法操作很簡單,如下:
# /etc/init.d/mysqld stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> update user set password=password('新密碼') where user='root' and host='root' or host='localhost';
mysql> flush privileges;
mysql> quit;
# /etc/init.d/mysqld restart
# mysql -u root -p
enter password: 《輸入新設的密碼》
Linux vim一些問題解決
1.按 i 後,沒有出現insert 解決方法 在vimrc檔案中,加入set showmode 2.backspace鍵不能刪除,同時方向鍵在insert模式下會打出abcd 解決方法 在vimrc檔案中,加入set nocompatible 3.backspace在insert模式下不能刪除空行...
ubuntu的一些問題解決
引用 http dx.ylmf.net read.php?tid 1085946 fpage 0 toread uid 722851 page 1 解決問題 知識所在樓層及內容 1.ubuntu是什麼?2.零命令玩轉ubuntu 8.10 livecd光碟安裝篇 3.什麼是wine? 4.零命令玩轉...
Linux 串列埠程式設計的一些問題解決
linux下串列埠程式設計的文章網上是滿天飛,但大都是出自一篇文章,而且寫的都是些基本的操作,像控制rts cts等串列埠引腳狀態,接收傳送二進位制資料等,都沒有很好的說明,我在使用中遇到了些問題,寫出來,希望能對大家有所幫助,少走彎路,呵呵!我使用的作業系統是redhat9,gcc版本是3.2.2...