1. How to Reset an Acer BIOS password? http://www.tech-faq.com/how-do-i-reset-an-acer-bios-password.html
Author: manager
Upgrade Kernel
1. Check Kernel version uname -a /opt/vc/bin/vcgencmd version 2. Download rpi-update script & Run sudo wget http://goo.gl/1BOfJ -O /usr/bin/rpi-update sudo chmod +x /usr/bin/rpi-update sudo rpi-update 3. Reboot sudo reboot 4. Before & After
Volatility Basic Analysis
1. Intro This batch file can be used for initial analysis using volatility. After the initial analysis is done through this batch file, you can proceed with the detailed analysis with the commands you know. 2. Bat Code (to save ‘vola_analysis.bat’) @echo off cls :: Title : Memory Analysis using volatility :: Maker : […]
삼성노트북 윈도우 설치시 오류(iSSD)
1. Intro 삼성 노트북 일부 기종에 iSSD가 장착되어있는데 윈도우 재설치시 HDD나 SSD가 아닌 iSSD가 윈도우가 설치되어 윈도우 설치 후 부팅이 되지 않는 증상이 발생 2. Solution 파티션 나눠서 설치 후 OS 정보를 500MB 파티션에 복사. 세부 사항은 참고 링크 확인하여 진행 – 참고 삼성 노트북 윈도우7 설치하기 (무한재설치 문제, 부팅문제, 설치후 문제, issd문제, […]
[KURZWEIL] Forte OS 업데이트, 소리 추가
1. Intro KURZWEIL Forte OS 업데이트 및 SoundBanks 추가 2. 방법 2.1 OS Update http://kurzweil.com/product/forte/downloads/ 사이트의 OS Updates 하위에 있는 “Forte v3.xx Update” 파일 다운로드 노트북 – Forte를 USB 케이블(A type – B type)로 연결 Forte 전원 ON하면서 Enter 누르고 있으면 System Mode로 접속됨 [Forte] System Utils – Format Flash – OK – OK […]
Operating System reference URL
http://uclab.khu.ac.kr/lectures/2013-1_os.html?PHPSESSID=72d3997d777ff609654c593e49a26444 https://m.blog.naver.com/mkt0716/30031141099 http://www.kocw.net/home/search/kemView.do?kemId=1194929 http://cafe307.daum.net/_c21_/bbs_search_read?grpid=5It&fldid=B8J&datanum=652&contentval=&docid=5ItB8J65220051113201900 http://jiming.tistory.com/173
Wiring Diagram to XLR, 55 Jack
1. Intro Wiring Diagram to XLR, 55 Jack 2. Wiring Diagram 1 : Shield 2: Hot : color O (Red, Blue…) 3 : Cold : Color X (White)
Install Mail Server on CentOS
1. Intro How to Install Mail Server on CentOS. Sendmail + dovecot + squirrelmail 2. Install Sendmail, dovecot 2.1. Install yum install sendmail sendmail-cf dovecot 2.2. Add Service ### CentOS 7 systemctl enable sendmail systemctl enable dovecot ### CentOS 6 chkconfig –level 345 sendmail on chkconfig –level 345 dovecot on 2.3. hostname 변경 vi […]
Install NameSerer(bind) on CentOS 7
1. Intro How to Install bind on CentOS 7 2. Command – Install yum install bind bind-chroot – Add Service systemctl enable named – Configure file vi /etc/named.conf listen-on port 53 { any; } lisetn-on-v6 port 53 { none; } allow-query { any; } vi /etc/named.rfc1912.zones zone “test.com” IN { type master; file “test.com.db”; […]
Install httpd on CentOS 7
1. Intro How to Install httpd(apache2) on CentOS 7 2. Command – Install yum install httpd – Add Service and Start Service systemctl enable httpd systemctl start httpd – Add firewall rule firewall-cmd –permanent –zone=public –add-service=http,https firewall-cmd –reload