2018年6月3日 星期日

[研究] FreeBSD 11.1-RELEASE x86_64 安裝

[研究] FreeBSD 11.1-RELEASE  x86_64 安裝

2018-05-28

下載
https://download.freebsd.org/ftp/releases/ISO-IMAGES/

FreeBSD-11.1-RELEASE-amd64-disc1.iso
https://download.freebsd.org/ftp/releases/ISO-IMAGES/11.1/FreeBSD-11.1-RELEASE-amd64-disc1.iso


































要設定開啟自動啟動 GNOME
vi   /etc/rc.conf:
增加
gdm_enable="YES"
gnome_enable="YES"

執行 reboot 重新啟動



要安裝 X-Window 和桌面,請執行
pkg install xorg







預設的桌面不好看,安裝 Gnome 吧
FreeBSD 10.0 要執行  pkg install gnome2
這一版改成執行 (因為出新版)
pkg install gnome3










********************************************************************************

開啟SSH遠端使用密碼登入(for root)

1.允許使用root與密碼登入
# vi /etc/ssh/sshd_config
------------------------------
......
PermitRootLogin yes
......
PasswordAuthentication yes
......
------------------------------

2.設定SSH可以使用root遠端登入
(理論上這個步驟不用做)
# vi /etc/inetd.conf
------------拿掉註解------------------
......
ssh stream tcp nowait root /usr/sbin/sshd sshd -i -4
ssh stream tcp6 nowait root /usr/sbin/sshd sshd -i -6
......
----------------------------------------

3.設定開機後自動啟動SSH service
(理論上這個步驟不用做)
# vi /etc/rc.conf
------------------------------
......
sshd_enable="YES"
......
------------------------------

4.重新啟動 sshd,讓設定生效
# /etc/rc.d/sshd restart

# pkg install apache24

開啟 /etc/rc.conf 檔案加入

apache24_enable="YES"

或執行下面指令

# sysrc apache24_enable=yes

啟動 Apache:

# service apache24 start

root@freebsd11:~ # service apache24 status
apache24 is running as pid 929.
root@freebsd11:~ #

設定檔案
root@freebsd11:~ # find / -name httpd.conf
/usr/local/etc/apache24/httpd.conf
root@freebsd11:~ #

(完)

相關

[研究] FreeBSD 11.1-RELEASE  x86_64 安裝
http://shaurong.blogspot.com/2018/06/freebsd-111-release-x8664.html

[研究] FreeBSD 10.0-RELEASE x86_64 安裝
http://shaurong.blogspot.tw/2014/07/freebsd-100-release-x8664.html

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x-install.html
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11-wm.html


沒有留言:

張貼留言