Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- 비트코인
- 나이키
- 맛집
- No JVM
- 암호화폐
- UBIFS
- python3-venv
- 카페
- 가상화폐
- nandsim
- bot
- 마운트
- mount
- 세종
- python
- CMAKE_CXX_COMPILER
- Linux
- Trading
- 리눅스
- 커피
- SNRKS
- 공유폴더
- 챗지피티
- freqtrade
- virtualbox
- 트레이딩 봇
- ChatGPT
- 파이썬
- 에러
- ubuntu
Archives
- Today
- Total
beauty in struggle
Mounting UBI file system(image) using nandsim 본문
728x90
SMALL
- Check target NAND device parameters to simulate it on your RAM
sudo modprobe nandsim first_id_byte=0x2c second_id_byte=0xdc third_id_byte=0x00 fourth_id_byte=0x55
- Check the device
cat /proc/mtd
- Flash the target UBI image into the device
sudo dd if=ubi_img.bin of=/dev/mtd0 bs=2048
- Attach UBI tranlation layer
sudo modprobe ubi
sudo ubiattach -p /dev/mtd0 -O 2048
- Check the UBI and mount the device
ubinfo /dev/ubi0
ubinfo /dev/ubi0_0
sudo mount -t ubifs /dev/ubi0_0 ./mnt
- To remove the mounted UBI filesystem and device
sudo umount ./mnt
sudo rmmod ubifs ubi nandsim
728x90
LIST
'After-work > linux' 카테고리의 다른 글
No CMAKE_CXX_COMPILER could be found (0) | 2023.11.17 |
---|---|
Mount vmware-linux shared folder, Host 공유폴더 mount 하기 (0) | 2023.05.10 |
python jpype: No JVM shared library file (libjvm.so) found 문제 (0) | 2023.04.05 |
WSL에서 python3-venv 설치 오류 해결 (0) | 2023.04.04 |
Javadoc HTML 파일 다운로드 (0) | 2023.03.29 |
Comments