목록Univ (103)
ITGenerations
JFFS2 개요JFFS2 파일 시스템은 MTD 드라이버에 의해 flash 메몰에서 구현되는 파일시스템이다. JFFS2는 ramdisk 개요 Ramdisk란 별달느 물리적 장치를 지칭하는 것이 아니라, 메모리의 일부를 디스크로 인식시킨것이다. ramdisk를 root filesystem으로 사용하는 것이 Embedded linux system에서 가장 일바적인 방법이다. 이는 램디스크는 램에서 동작하기 때문에 읽고/쓰기가 매우 빠루다. gzip 알고리즘으로 압축을 하기 때문에 용량을 줄일 수 있다. 단점은 메모리 일부를 램디스크로 할당하기 때문에 그만큼의 메모리를 못쓰게 된다. 휘발성이 있기 때문에 시스템이 리부트 되거나 깨지면 그 내용을 잃어 버린다. 개발환경 구축 툴체인/usr/local 복사 및 생성..
Kingdom Animalia Animals have been around for a very long tme. Of all the kinds of animals that have ever lived, most have gone extinct. If you want an understanding of animals, you must first go back into deep time. Deep Time! Time is deep!
1 — import java.util.Scanner; public class Test_01 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("주행거리 입력"); // 주행거리 입력 int kilo = sc.nextInt(); System.out.println("휘발유량 입력"); // 휘발유량 입력 int gas = sc.nextInt(); float car_abil = kilo / gas; // 연비 계산법, 자동 형변환으로 f입력 안해도 가능 System.out.printf("연비 = %.2f",car_abil); // 소수점 지정 sc.close(); } } import ..
조건: 체크박스를 선택할 때 마다 버튼의 속성이 설정되도록 프로젝트를 작성하시오. xml source java source package com.example.ryan.study2; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; public class MainActivity extends AppCompatActivity { CheckBox checkBox1, checkBox2,checkBox3; Button btn; @Override prot..
오라클로 배우는 데이터 베이스 개론과 실습 --5 박지성이 구매한 도서의 출판사 수SELECT count(publisher) as total0FROM orders, book, customerWHERE orders.custid=customer.custid and book.bookid=orders.bookid and customer.name='박지성'; --6 박지성이 구매한 도서의 이름, 가격, 정가와 판매가겨의 차이SELECT bookname,price,price-saleprice as p_sFROM orders, book, customerWHERE orders.custid=customer.custid and book.bookid=orders.bookid and customer.name='박지성'; --..