Jump to content
XPEnology Community

jjh

Transition Member
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jjh's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. 안녕하세요... 한가지 팁을 알려 드립니다. 현재 버전의 Xpenology 부팅 이미지 말고 다른 버전의 부팅 이미지로 부팅하게 되면 마이그레이션으로 Synology Assistant 웹이 가동 되게 됩니다. 그때 콘솔 터미널에서 로그인 가능합니다(Trantor 님 이미지를 사용하시면 콘손 터미널 활성됩니다.) root 패스워드 확인법은 아래와 같습니다. 패스워드 생성기를 컴파일 해서 쓰셔도 되고 아래 설명을 보고 계산 하셔도 됩니다. 간략히 설명 드리면 root 패스워드가 오늘 날짜기준으로 생성됩니다. 11월 21일 패스워드는 b11-17151 됩니다. 해당 패스워드로 로그인 하신후 "mount -o rw md0 마운트할 위치" 로 디스크를 마운트 하신후 /etc/password 의 로트 패스워드를 변경 하시거나 마운트위치/etc.defaults/VERSION 파일 안에 버전을 하위 버전으로 변경하고 마이그래이션하시거나 아니면 휴지통에서 파일을 찾아내시고 ftp로 쏴버리셔도 되겠습니다. 이상입니다. #include #include #include void main() { struct timeval tvTime; struct tm tmOutput; gettimeofday(&tvTime, 0); localtime_r(&(tvTime.tv_sec), &tmOutput); tmOutput.tm_mon += 1; printf("password for today is: %x%02d-%02x%02d\n\n", tmOutput.tm_mon, tmOutput.tm_mon, tmOutput.tm_mday, gcd(tmOutput.tm_mon, tmOutput.tm_mday)); } int gcd(int a, int b) { return (b?gcd(b,a%b):a); } Fire your gcc and compile the code above, and you’ll get the password for today. Or use one of the several online C compilers. Here’s the code using the excellent Codepad. Bonus tip: if you’re curious how exactly the password is generated, or want to be able to simply infer it quickly without running any code, here’s the formula: ●1st character = month in hexadecimal, lower case (1=Jan, … , a=Oct, b=Nov, c=Dec) ●2-3 = month in decimal, zero padded and starting in 1 (01, 02, 03, …, 11, 12) ●4 = dash ●5-6 = day of the month: 01, 02,.., 31 EDIT: day of the month in hex (01, 02 .., 0A, .., 1F) ●7-8 = greatest common divisor between month and day, zero padded. This is always a number between 01 and 12.
  2. zimage 를 img 로 변환하는게 아니라 img 를 mount -o loop,offset=32768 이미지.img 마운트경로 로 마운트 한후 해당 빌드하신 zimage 를 마운트 된경로에 덮어 쉬우신후 umount 마운트 경로 하시면 되겠습니다. offset 사이즈는 fdisk -l 이미지.img 로 하면 나오는 파티션의 시작 setctor * 512 로 계산된 값을 넣어시면 됩니다. 도움 되셨길 바랍니다.
  3. 자동 업데이트는 되지 않고요 새로운 버전의 커널로 부팅하시면 마이그레이션 할수 있는 장비로 표시 됩니다 그때 리팩된 pat 파일 사용하시면 업데이트 가능합니다. 좋은 하루 되세요.
  4. 예전에 4.1 2668 ACHI 지원되지 않는 칩셋을 위해 빌드한 버전입니다. MITX 보드가 ICH7 이라 ACHI가 지원하지 않아 빌드했던 것이고요 현재도 잘사용하고 있습니다. 설치파일 .pat 파일은 기존에 올라온 2668 pat 사용하시면됩니다. 4.2 버전 빌드해서 사용해본결과 상당히 불안한증상이 나타나더라고요. 그래서 4.1 링크 걸어 드립니다. 왠간한 보드들은 다 동작 가능할것 같습니다. 원문링크 viewtopic.php?f=2&t=1&start=40 다운로드 링크 http://www.mediafire.com/?8opa794q9m4o99t or http://yadi.sk/d/Du7fLHUH1zrz0
  5. andy928. Recompile your github source for the ICH7 SATA work. Share the boot image file. http://www.mediafire.com/?8opa794q9m4o99t or http://yadi.sk/d/Du7fLHUH1zrz0 thank you andy928
  6. test ASUS itx-220 booting : sucess netowrk : sucess sata : not work This board not support ahci mode add ich7 sata driver?
×
×
  • Create New...