728x90 Research/Linux101 커널에서 sleep 대용 static unsigned long now = jiffies; while(jiffies < now + (waiting jiffies)) schedule(); 2009. 2. 12. jiffies, HZ 1 jiffies = 1/HZ schedule_timeout(n*HZ); // n sec schedule_timeout(n*HZ/1000); // n milisecond 2009. 2. 12. .bashrc와 .bash_profile의 차이점 .bash_profile은 로긴할 때 실행되고, .bashrc는 bash가 실행될때 마다 수행... X로 부팅후에 터미널을 띄울때는 login shell이 실행되지 않으므로 .bash_profile은 실행되지 않는다. 2009. 2. 2. 파일 자르기 split 따로 설치하지 않아도 기본으로 존재하는 명령어 이다... 예) split -b 50m src_filename dst_filename src_filename 파일을 50MBytes 단위로 dst_filenameaa, dst_filenameab, ... 이런식으로 분할한다. 원본은 그대로 유지된다. NAME split - split a file into pieces SYNOPSIS split [OPTION] [INPUT [PREFIX]] DESCRIPTION Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default size is 1000 lines, and default PREFIX is ‘x’. With no INPUT, or when I.. 2009. 2. 2. 이전 1 ··· 15 16 17 18 19 20 21 ··· 26 다음 728x90