安裝版本mysql-5.0.40 需編譯
sudo apt-get install g++ gcc make automake perl
安裝好所有需要的工具
sudo apt-get update
apt-get install build-essential
sudo apt-get install libncurses5-dev
sudo apt-get install kdelibs4-dev
sudo apt-get install kdelibs4c2a
安裝mysql,使用root許可權
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> gunzip < mysql-version.tar.gz | tar -xvf -
shell> cd mysql-version
shell> ./configure --prefix=/usr/local/mysql
shell> make
shell> make install
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> cd /usr/local/mysql
shell> chown -r mysql .
shell> chgrp -r mysql .
shell> bin/mysql_install_db --user=mysql
shell> chown -r root .
shell> chown -r mysql var
shell> bin/mysqld_safe --user=mysql &
ubuntu在terminal下安裝mysql
安裝的時候。僅僅須要在terminal 中輸入下面幾條命令 1.sudo apt get install mysql server 2.apt get isntall mysql client 3.sudo apt get install libmysqlclient dev 然後就能夠輸入下面命令...
作業系統實驗二 ubuntu下安裝配置pintos
安了兩次才弄好,蛋疼的作業系統實驗.先總結下第一次的錯誤。在最後使用gdb除錯pintos的時候,會報這樣的錯誤 bochsrc.txt 8 bochs is not compiled with gdbstub support 具體解決辦法如下 依次執行如下三條指令即可 要先執行這三條指令,再安裝配...
ubuntu作業系統中安裝谷歌Chrome瀏覽器
以下用命令方式安裝goolg chrome瀏覽器,已在ubuntu18.04系統中實驗過 wget wget sudo dpkg i google chrome sudo apt get f install 然後就搞定了!開啟方式,在終端中直接輸入如下命令即可開啟瀏覽器 usr bin google...