Device : 802.11N PCI WiFi Lan Card - UNICORN WB-150P ST (구매가 : 25,000원)
엔비 양재 사무실 오픈 후 랜 공사 없이 무선랜으로 구축.
구축환경 : KT FTTH Base, 무선 클라이언트 PC 12대 + 유선 서버 4대 + 사무집기 허브 (4 Port)
벤치마킹 : 무선랜 최대 속도 60Mbps 상회
전체적 성능 및 안정성 부분 기대 이상. 환경 테스트를 위해 개인서버 1대 무선으로 설치, 6일간 테스트 중. 현재 회선 및 연결상 이상 없음.
So Cool!
apt-get
apt-get update : 패키지 목록 갱신
apt-get upgrade : 현재 설치된 패키지를 최신버전과 비교해 업그레이드
apt-get install [package] : 패키지 설치 ex) apache* 와일드 문자 입력 가능
apt-get remove [package] : 패키지 삭제
apt-get autoremove [package] : 패키지 삭제, 의존성에 따라 설치된 내용 까지 삭제
gcc
install apt-get install build-essential
apm
install apt-get install apache2.2-common php5 php5-common php5-gd php5-mysql libapache2-mod-php5 libdbd-mysql-perl libdbi-perl mysql-client mysql-server mysql-common
vsftpd
install apt-get install vsftpd
config gedit /etc/vsftpd.conf
anonymous_enable=NO
local_enable=YES
write_enable=YES
restart : /etc/init.d/vsftpd restart
ssh
install apt-get install ssh
config gedit /etc/ssh/sshd_config
restart /etc/init.d/ssh restart
samba
install apt-get install samba
account smbpasswd -a [userid]
config gedit /etc/samba/smb.conf
[homes]
comment = Home Directories
browseable = no
writable = yes
restart /etc/init.d/samba restart