Ubuntu 12.04 x64
[Ubuntu的ipconfig]
ifconfig
[Ubuntu 打開root權限的GUI資料夾]
sudo nautilus
[無線網路使用DSL做PPPoE]
為了使用中華的固定IP,就要用PPPoE的方式取得IP
可是我房間沒有實體線路,所有機器都是無線…
sudo pppoeconf wlan0
//然後他就會在Terminal裡跳到一個config視窗,會要求設定PPPoE的帳號密碼
//設定好了之後他會問要不要每次開機都連這個設定檔
開/關方法:
sudo pon dsl-provider
sudo poff dsl-provider
[架設FTP伺服器 – vsftpd]
sudo apt-get install vsftpd
檢查FTP Port有沒有裝起來
netstat -tul | grep ft
調整參數
sudo gedit /etc/vsftpd.conf
(懶人使用gedit,vi還不熟)
listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/vsftpd.log
idle_session_timeout=600
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd.chroot_list
secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
其實有些我忘了XD
然後根據我的測試,如果我有照上面紅字那樣設定,我的vsftpd.chroot_list會成為”限制名單”
sudo gedit /etc/vsftpd.chroot_list
設定完之後,要記得重啟vsftpd
sudo /etc/init.d/vsftpd restart
可以再利用上面的netstat -tul | grep ft檢查有沒有啟動成功
如果沒有成功,大概是有些自己加的參數不對喔
我一下看CentOS的,一下看Ubuntu的,所以設定參數時有點不知道該聽誰的
可是明明我就在用Ubuntu
這種感覺就像叫你會戰先打輸出,可是偏偏你離坦比較近,你總是一直打坦…
接著照鳥哥說的,把權限低於500的帳號都加進來
可以去/etc/passwd看全部帳號
//筆記一下…我還沒去調資料夾權限,結果新帳號竟然可以read主機的資料,好險只能read,目前懶得改XD
還可以加入FTP歡迎訊息
gedit一個 .message 檔案
把”.message”存在 /home/
[LAMP : Apache2 + MySQL + PHP]
原本試想一個一個安裝,學一下
懶人病又犯了…直接上懶人包
sudo apt-get install lamp-server^
//後面加^,表示順便執行
然後我就遇到老問題….就是tw.archive.ubuntu.com老是連不到,不然就是連很慢
可以跳至下一趴看看
//筆記: sudo apt-get install libapache2-mod-auth-mysql 疑似要裝?
然後是phpMyAdmin
sudo apt-get install phpmyadmin
照網頁上說,可以測看看有沒有裝起來
localhost/phpmyadmin
我好像失敗了
爬了文才曉得我好像沒有掛載它
sudo gedit /etc/apache2/apache2.conf
加入
Include /etc/phpmyadmin/apache.conf
重啟
sudo service apache2 restart
[更改Software Source]
東西在
/etc/apt/sources.list
要直改的話需要一點sense,不然錯一個就掛了
最安全的就利用GUI
(可惡我一直依賴GUI,以後都不裝GUI了拉)
在Ubuntu Software Center裡的Software Sources設定
把Download From調至United States
就不用一直等tw的伺服器了
[主機名稱DNS]
sudo gedit /etc/hosts
——————————————————–
參考網頁:
http://note.drx.tw/2008/08/networkpppoe-adsl.html
http://mkbfb.blogspot.tw/2008/01/ubuntu-vsftp.html
http://blog.udn.com/nigerchen/2261345
http://flzen.wordpress.com/2011/05/07/lamp-on-ubuntu/
http://nelsonchunglife.blogspot.tw/2011/02/install-lamp-under-ubuntu-1010.html
http://www.arthurtoday.com/2009/11/ubuntu-apache2.html#.UqRzdvQW2UY
https://www.digitalocean.com/community/articles/how-to-install-and-secure-phpmyadmin-on-ubuntu-12-04
搶先發佈留言