2014년 4월 29일 화요일

FreeBSD 네트웍 재시작 방법

FreeBSD 네트웍 재시작 방법 

To start FreeBSD network service:
# /etc/rc.d/netif start
To stop FreeBSD network service:
# /etc/rc.d/netif stop
To restart FreeBSD network service:
# /etc/rc.d/netif restart

Manual method using ifconfig

To stop network card (NIC) on-fly:
# ifconfig network-interface down
To start network card (NIC) on fly:
# ifconfig network-interface up
To list down network interface:
# ifconfig -d
To list up network interface:
# ifconfig -u

FreeBSD Update / restart routing tables / service

It is also necessary to update routing table after restating networking service, enter:
# /etc/rc.d/routing restart

How do I restart network service over ssh session?

You need to type the commands as follows in order to avoid any problems:
# /etc/rc.d/netif restart && /etc/rc.d/routing restart

FreeBSD 4.x and prior version only - start, restart, stop network service

1) To start network service under FreeBSD you need to copy special
script as follows:
# cp /usr/share/examples/etc/netstart /etc/network
2) Execute script:
. /etc/network
OR
sh /etc/network
Please note that script will do all necessary work for you i.e. it will start network, routing, firewall etc.

Freebsd wifi

서비스 시작
Service net stop
Start

2014년 4월 28일 월요일

FreeBSD 10 Realse X-windows 설치

FreeBSD 10 Realse  X-windows  설치

빠른 설치 위해 한국 카이스트 미러로 설정 한다.
아래 경로는 직접 접속 하셔서 확인 후 설정 하세요
버젼 정보 또한 그렇게 하세요

setenv PACKAGESITE ftp://ftp.kaist.ac.kr/FreeBSD/ports/i386/packages-10.0-release/Latest/

pkg install lxde-meta
pkg install gdm

dbus, hald, gdm 을 부팅시 실행 되도록 추가합니다.

 echo 'dbus_enable="YES"' >> /etc/rc.conf
 echo 'hald_enable="YES"' >> /etc/rc.conf
 echo 'gdm_enable="YES"' >> /etc/rc.conf
 echo 'linux_enable="YES"' >> /etc/rc.conf

# sshd root connect option
 echo 'sshd_enable="YES"' >> /etc/rc.conf


Xorg -configure
cp /root/xorg.conf.new /etc/X11/xorg.conf

ssh root connect method

# vi /etc/ssh/sshd_config

아래내용 #PermitRootLogin no 를 검색 하여 주석 제거 및 yes 로 변경

변경전
# Authentication:

#LoginGraceTime 2m
#PermitRootLogin no
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

변경후
# Authentication:

#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10


#csh
setenv LANG ko_KR.UTF-8
setenv LC_ALL ko_KR.UTF-8

#bash
export LANG=ko_KR.UTF-8