우분투(리눅스) 에서 NTFS 로 서버 띄우기.(+ ntfs mount)
ntfs 마운트를 잘해야 apache에서 잘 받아들여준다(읭?)
fstab 을 이용하는방법만.
UUID=000000000000000000 mountpoint ntfs-3g rw,nosuid,nodev,noatime,allow_other 0 1
우분투에서 설치하기
apt-get install apache2 php5 mysql-server mysql-client php5-common libapache2-mod-php5 php5-mysql
한줄로 설치끝! (중간에 mysql root password 지정만 잘해주세요)
설치는 끝났고 이제 가상서버 설정만 남았습니다.
/etc/apache2/sites-available/ 디렉토리로 이동
vi 사이트명.conf 생성
<VirtualHost *:80>
ServerName 서버네임
ServerAdmin 서버관리자
DocumentRoot "가상서버위치"
<Directory "가상서버위치">
DirectoryIndex index.html index.php
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
완료 후
sudo a2ensite 사이트명
sudo /etc/init.d/apache2 reload
접속해본다.
가상호스트를 사용하지않는 경우, 000-default.conf 를 적절히 수정해준다.
'Study > Linux' 카테고리의 다른 글
우분투 엔비디아(지포스계열) 드라이버 설치후 tty 콘솔 진입이 안될때. (0) | 2014.08.20 |
---|---|
실행중인 프로세스 실제 경로 구하기 (0) | 2014.08.08 |
아파치 가상호스트 프록시를 이용한 http 포트포워딩 (0) | 2014.08.08 |
우분투에서 virtualbox 여러개 띄울때 관리자 쉽게열기 (0) | 2014.08.08 |
우분투 ibus 한글입력 (virtualbox 지원) (0) | 2014.08.06 |
BCEL 그나마 나은 참고자료..
영어 꼬부랑 글씨
http://www.smfsupport.com/support/java/bcel-tutorial!/
그래도 여기만한거 없음 ... ㅠㅠ 보기 너무 어렵다 ...
추가 140808
https://www.moparscape.org/smf/index.php?topic=216985.0
추가 140813
http://www.geekyarticles.com/2011/08/manipulating-java-class-files-with-bcel.html
추가 140821
http://sourcecodebrowser.com/bcel/5.2/index.html
(클래스다이어그램까지 자세하게 설명됨 물론 영어)
http://www.geekyarticles.com/2011/09/implementing-aspect-oriented.html
자바 에이전트 사용에대한 설명이 있다.
'Study > BCI&BCEL&ASM' 카테고리의 다른 글
bcel 6 다운로드 (0) | 2015.01.12 |
---|---|
BCI 기술과 BCEL (0) | 2015.01.12 |
ASM 으로 바이트코드 변경하기. (0) | 2014.08.21 |
bcel api doc (0) | 2014.08.01 |
BCEL 메소드 추가하기 (0) | 2014.08.01 |