▶이동
  • 상구너 닷컴 블로그를 방문하신 여러분을 환영합니다 :)
  • 스팸 정책에 의해 일부 덧글·방명록차단될 수 있습니다.

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 를 적절히 수정해준다.

BCEL 그나마 나은 참고자료..

Study/BCI&BCEL&ASM 상구너(sanguneo) 2014. 8. 4. 16:20


영어 꼬부랑 글씨

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