2014-06-30 54 views
0

請問有人能解釋從SD卡啓動過程中BBB上發生了什麼,以及爲什麼每次長時間運行rsync進程? BBB是否會自動刷新內部eMMC?我從他們的網頁使用官方的Debian圖像。從microSD啓動後在BeagleBone Black上運行的rsync進程

ps aux | grep的...

rsync -aAXv /boot/uboot/ /tmp/boot/ --exclude=MLO --exclude=u-boot.img --exclude=*bak --exclude=flash-eMMC.txt --exclude=flash-eMMC.log 

後來另一rsync的:從頂部出

rsync -aAXv /bin /boot /dev /etc /home /lib /lost+found /media /mnt /opt /proc /root /run /sbin /selinux /srv /sys /tmp /usr /var /tmp/rootfs/ --exclude=/dev/* --exclude=/proc/* --exclude=/sys/* --exclude=/tmp/* --exclude=/run/* --exclude=/mnt/* --exclude=/media/* --exclude=/lost+found --exclude=/boot/* --exclude=/lib/modules/* 

:從安裝輸出

2566 root  20 0 29840 3064 620 R 23,0 0,6 1:12.21 rsync                                                    
2564 root  20 0 21604 9424 868 S 20,5 1,9 1:02.67 rsync                                                    
    72 root  20 0  0 0 0 S 2,5 0,0 0:10.37 mmcqd/0                                                   
    75 root  20 0  0 0 0 D 2,2 0,0 0:42.00 mmcqd/1 

/dev/mmcblk0p2 on/type ext4 (rw,noatime,errors=remount-ro,data=ordered) 
/dev/mmcblk0p1 on /boot/uboot type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro) 
/dev/mmcblk1p2 on /tmp/rootfs type ext4 (rw,noatime,data=ordered) 

感謝。

+1

從我的經驗來看,它每次都會刷新eMMC,即使沒有按下「用戶啓動按鈕」。儘管官方文檔說,至少在Debian上我使用的圖像,按下'用戶啓動按鈕'不需要衝洗eMMC。 –

+0

因此,debian映像包含每次刷新eMMC的啓動腳本......很高興知道謝謝。在啓動後不久我運行了一些CPU/RAM密集型工作時,我經歷了幾次關機。沖洗eMMC +我的工作可能會耗盡RAM或導致過熱。 – dorny

回答

0

從網站(http://beagleboard.org/latest-images

BeagleBone (Runs on BeagleBone Black as well without flashing the eMMC) 

    Debian (BeagleBone, BeagleBone Black - 2GB SD) 2014-05-14 - more info - bittorrent - md5: 35877ce21e8ed0eb1bdc6819ad71c317 
    Angstrom Distribution (BeagleBone, BeagleBone Black - 4GB SD) 2013-06-20 - more info 

BeagleBone Black (eMMC flasher) 

    Debian (BeagleBone Black - 2GB eMMC) 2014-05-14 - more info - bittorrent - md5: 74615fb680af8f252c034d3807c9b4ae 
    Angstrom Distribution (BeagleBone Black - 2GB eMMC) 2013-09-04 - more info - bittorrent 

所以聽起來像BeagleBone圖像將在BeagleBone黑色運行無閃爍的eMMC。

相關問題