Difference between revisions of "PiClone"
Russ hensel (talk | contribs) |
Russ hensel (talk | contribs) (→Setup) |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | |||
+ | Mostly obsolete as Pi now has a utility to clone sd cards. | ||
= Setup = | = Setup = | ||
+ | This is a rough log of how I backed up / copied a raspberry pi os. Will try again and make better notes. | ||
+ | |||
+ | [[Linux Commands On Pi]] | ||
Main sd card with another on an extension cable and card reader. | Main sd card with another on an extension cable and card reader. | ||
+ | |||
+ | <pre> | ||
+ | disk usage for shrink can do from file manager or from command line -- now a little under 5 | ||
+ | The df utility displays the disk space usage on all mounted filesystems. | ||
+ | |||
+ | http://www.tecmint.com/how-to-check-disk-space-in-linux/ | ||
+ | df -h # this is the summary for shrinkage all disks may have to be mounted or not | ||
+ | |||
+ | |||
+ | disk usage for shrink can do from file manager or from command line -sh for summary and human format | ||
+ | du -sh /home/tecmint | ||
+ | sudo du -sh / # still some Permission deniedsudo not enough | ||
+ | sudo du -sh ~ #works, not much data sudo not required | ||
+ | |||
+ | </pre> | ||
= Links = | = Links = | ||
− | + | This next failed for me, see log below. Not sure why. | |
− | https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=35668&p=301919#p301919 | + | *https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=35668&p=301919#p301919 |
http://www.johnaldred.com/moving-linux-to-smaller-sd-cards/ | http://www.johnaldred.com/moving-linux-to-smaller-sd-cards/ | ||
Line 19: | Line 39: | ||
https://www.raspberrypi.org/forums/viewtopic.php?f=29&t=13028 | https://www.raspberrypi.org/forums/viewtopic.php?f=29&t=13028 | ||
+ | |||
+ | = commands = | ||
+ | |||
+ | lsblk would show all block devices. | ||
+ | |||
+ | |||
+ | umount /dev/hda | ||
+ | |||
+ | umount /media/russ...... use the mount point then lsblk to show unmounted | ||
+ | |||
+ | |||
+ | == do it == | ||
+ | |||
+ | == resize == | ||
+ | |||
+ | my source mmcblk0 179:0 0 29G 0 disk | ||
+ | ├─mmcblk0p1 179:1 0 63M 0 part | ||
+ | └─mmcblk0p2 179:2 | ||
+ | ply type (as root)… | ||
+ | |||
+ | resize2fs /dev/sda1 [new size of the partition] | ||
+ | |||
+ | |||
+ | |||
+ | Anyway, in my case, I made the partition 3500MB, so the command I used was… | ||
+ | |||
+ | resize2fs /mmcblk0/mmcblk0p2 13000M | ||
+ | sudo e2fsck -f /dev/mmcblk0p2 | ||
+ | sudo resize2fs /dev/mmcblk0p2 13000M | ||
+ | |||
+ | == copy == | ||
+ | |||
+ | sudo dd if=/dev/mmcblk0 of=/dev/sdb status=progress | ||
+ | |||
+ | command just sits there, status=progress makes it show some progress if opion implemented, it is new. level to print stats periodically | ||
= Then = | = Then = | ||
Line 1,069: | Line 1,124: | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | = End Log = | ||
+ | [[Category:Arduino/RaspberryPi]] |
Latest revision as of 06:16, 1 February 2018
Mostly obsolete as Pi now has a utility to clone sd cards.
Contents
Setup[edit]
This is a rough log of how I backed up / copied a raspberry pi os. Will try again and make better notes.
Main sd card with another on an extension cable and card reader.
disk usage for shrink can do from file manager or from command line -- now a little under 5 The df utility displays the disk space usage on all mounted filesystems. http://www.tecmint.com/how-to-check-disk-space-in-linux/ df -h # this is the summary for shrinkage all disks may have to be mounted or not disk usage for shrink can do from file manager or from command line -sh for summary and human format du -sh /home/tecmint sudo du -sh / # still some Permission deniedsudo not enough sudo du -sh ~ #works, not much data sudo not required
Links[edit]
This next failed for me, see log below. Not sure why.
http://www.johnaldred.com/moving-linux-to-smaller-sd-cards/
https://github.com/billw2/rpi-clone
https://www.raspberrypi.org/forums/viewtopic.php?f=29&t=13028
commands[edit]
lsblk would show all block devices.
umount /dev/hda
umount /media/russ...... use the mount point then lsblk to show unmounted
do it[edit]
resize[edit]
my source mmcblk0 179:0 0 29G 0 disk
├─mmcblk0p1 179:1 0 63M 0 part └─mmcblk0p2 179:2 ply type (as root)…
resize2fs /dev/sda1 [new size of the partition]
Anyway, in my case, I made the partition 3500MB, so the command I used was…
resize2fs /mmcblk0/mmcblk0p2 13000M
sudo e2fsck -f /dev/mmcblk0p2 sudo resize2fs /dev/mmcblk0p2 13000M
copy[edit]
sudo dd if=/dev/mmcblk0 of=/dev/sdb status=progress
command just sits there, status=progress makes it show some progress if opion implemented, it is new. level to print stats periodically
Then[edit]
sudo fdisk -l
did show the disk
Device Boot Start End Sectors Size Id Type /dev/mmcblk0p1 8192 137215 129024 63M c W95 FAT32 (LBA) /dev/mmcblk0p2 137216 31422463 31285248 14.9G 83 Linux Disk /dev/sda: 14.9 GiB, 15931539456 bytes, 31116288 sectors
after boot plug in card reader
Device Boot Start End Sectors Size Id Type /dev/sda1 8192 137215 129024 63M c W95 FAT32 (LBA) /dev/sda2 137216 30679039 30541824 14.6G 83 Linux
which i mou nted
Some results[edit]
pi@raspberrypi:~/Downloads $ unzip rpi-clone-master.zip Archive: rpi-clone-master.zip f961aee3f9816d345c2df335aa96b3907ee68b09 creating: rpi-clone-master/ inflating: rpi-clone-master/README.md inflating: rpi-clone-master/rpi-clone pi@raspberrypi:~/Downloads $ cd rpi-clone-master/ pi@raspberrypi:~/Downloads/rpi-clone-master $ cp rpi-clone /usr/local/sbin cp: cannot create regular file ‘/usr/local/sbin/rpi-clone’: Permission denied pi@raspberrypi:~/Downloads/rpi-clone-master $ sudo cp rpi-clone /usr/local/sbin pi@raspberrypi:~/Downloads/rpi-clone-master $
More Results[edit]
noet error almost at the end
lib/modules/4.4.32-v7+/kernel/sound/core/oss/snd-pcm-oss.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/ lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq-device.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq-dummy.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq-midi-event.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq-midi.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq-virmidi.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/snd-seq.ko lib/modules/4.4.32-v7+/kernel/sound/core/seq/oss/ lib/modules/4.4.32-v7+/kernel/sound/core/seq/oss/snd-seq-oss.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/ lib/modules/4.4.32-v7+/kernel/sound/drivers/snd-aloop.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/snd-dummy.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/snd-mtpav.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/snd-serial-u16550.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/snd-virmidi.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/mpu401/ lib/modules/4.4.32-v7+/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko lib/modules/4.4.32-v7+/kernel/sound/drivers/mpu401/snd-mpu401.ko lib/modules/4.4.32-v7+/kernel/sound/pci/ lib/modules/4.4.32-v7+/kernel/sound/pci/ac97/ lib/modules/4.4.32-v7+/kernel/sound/pci/ac97/snd-ac97-codec.ko lib/modules/4.4.32-v7+/kernel/sound/soc/ lib/modules/4.4.32-v7+/kernel/sound/soc/snd-soc-core.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/ lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-adau1977-adc.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-allo-piano-dac.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-audioinjector-pi-soundcard.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-bcm2835-i2s.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-digidac1-soundcard.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-dionaudio-loco.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-hifiberry-amp.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-hifiberry-dac.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-hifiberry-dacplus.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-hifiberry-digi.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-iqaudio-dac.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-iqaudio-digi.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-justboom-dac.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-justboom-digi.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-pisound.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-raspidac3.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-rpi-dac.ko lib/modules/4.4.32-v7+/kernel/sound/soc/bcm/snd-soc-rpi-proto.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/ lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-adau1701.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-adau1977-i2c.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-adau1977.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-pcm1794a.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-pcm5102a.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-pcm512x-i2c.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-pcm512x.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-sigmadsp-i2c.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-sigmadsp.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-tas5713.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-tpa6130a2.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-wm8731.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-wm8741.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-wm8804-i2c.ko lib/modules/4.4.32-v7+/kernel/sound/soc/codecs/snd-soc-wm8804.ko lib/modules/4.4.32-v7+/kernel/sound/soc/generic/ lib/modules/4.4.32-v7+/kernel/sound/soc/generic/snd-soc-simple-card.ko lib/modules/4.4.32-v7+/kernel/sound/usb/ lib/modules/4.4.32-v7+/kernel/sound/usb/snd-usb-audio.ko lib/modules/4.4.32-v7+/kernel/sound/usb/snd-usbmidi-lib.ko lib/modules/4.4.32-v7+/kernel/sound/usb/6fire/ lib/modules/4.4.32-v7+/kernel/sound/usb/6fire/snd-usb-6fire.ko lib/modules/4.4.32-v7+/kernel/sound/usb/caiaq/ lib/modules/4.4.32-v7+/kernel/sound/usb/caiaq/snd-usb-caiaq.ko lib/modules/4.4.32-v7+/kernel/sound/usb/misc/ lib/modules/4.4.32-v7+/kernel/sound/usb/misc/snd-ua101.ko lib/systemd/system/ lib/systemd/system/nodered.service lib/systemd/system/samba.service -> /dev/null lib/udev/rules.d/ lib/udev/rules.d/10-local-rpi.rules lib/udev/rules.d/40-scratch.rules deleting root/.spyder2/defaults/defaults-9.0.0.ini deleting root/.spyder2/defaults/ deleting root/.spyder2/db/submodules deleting root/.spyder2/db/ deleting root/.spyder2/workingdir deleting root/.spyder2/template.py deleting root/.spyder2/temp.py deleting root/.spyder2/spyder.ini.bak deleting root/.spyder2/spyder.ini deleting root/.spyder2/path deleting root/.spyder2/onlinehelp deleting root/.spyder2/history_internal.py deleting root/.spyder2/history.py deleting root/.spyder2/ deleting root/.cache/matplotlib/tex.cache/ deleting root/.cache/matplotlib/fontList.cache deleting root/.cache/matplotlib/ deleting root/.cache/ deleting root/.config/matplotlib/ deleting root/.config/gtk-2.0/gtkfilechooser.ini deleting root/.config/gtk-2.0/ deleting root/.config/Trolltech.conf opt/vc/bin/ opt/vc/bin/raspistill opt/vc/bin/raspivid opt/vc/bin/vchiq_test opt/vc/include/ opt/vc/include/EGL/ opt/vc/include/EGL/eglext_brcm.h opt/vc/include/GLES/ opt/vc/include/GLES2/ opt/vc/include/IL/ opt/vc/include/KHR/ opt/vc/include/VG/ opt/vc/include/WF/ opt/vc/include/interface/mmal/ opt/vc/include/interface/mmal/core/ opt/vc/include/interface/mmal/util/ opt/vc/include/interface/mmal/vc/ opt/vc/include/interface/vchi/ opt/vc/include/interface/vchi/common/ opt/vc/include/interface/vchi/connections/ opt/vc/include/interface/vchi/message_drivers/ opt/vc/include/interface/vchiq_arm/ opt/vc/include/interface/vcos/ opt/vc/include/interface/vcos/generic/ opt/vc/include/interface/vcos/pthreads/ opt/vc/include/interface/vctypes/ opt/vc/include/interface/vmcs_host/ opt/vc/include/interface/vmcs_host/khronos/IL/ opt/vc/include/interface/vmcs_host/linux/ opt/vc/include/interface/vmcs_host/linux/vcfiled/ opt/vc/include/vcinclude/ opt/vc/lib/ opt/vc/lib/libEGL.so opt/vc/lib/libEGL_static.a opt/vc/lib/libGLESv2.so opt/vc/lib/libGLESv2_static.a opt/vc/lib/libWFC.so opt/vc/lib/libbrcmEGL.so opt/vc/lib/libbrcmGLESv2.so opt/vc/lib/libbrcmWFC.so opt/vc/lib/libdebug_sym.so opt/vc/lib/libdebug_sym_static.a opt/vc/lib/libkhrn_client.a opt/vc/lib/libkhrn_static.a opt/vc/lib/libmmal_core.so opt/vc/lib/libmmal_util.so opt/vc/lib/libvcfiled_check.a opt/vc/lib/libvchostif.a opt/vc/lib/libvcilcs.a opt/vc/lib/plugins/plugins/ opt/vc/sbin/ opt/vc/src/hello_pi/ opt/vc/src/hello_pi/rebuild.sh opt/vc/src/hello_pi/hello_audio/ opt/vc/src/hello_pi/hello_dispmanx/ opt/vc/src/hello_pi/hello_encode/ opt/vc/src/hello_pi/hello_fft/ opt/vc/src/hello_pi/hello_fft/hex/ opt/vc/src/hello_pi/hello_fft/qasm/ opt/vc/src/hello_pi/hello_font/ opt/vc/src/hello_pi/hello_jpeg/ opt/vc/src/hello_pi/hello_mmal_encode/ opt/vc/src/hello_pi/hello_mmal_encode/Makefile opt/vc/src/hello_pi/hello_mmal_encode/mmal_encode.c opt/vc/src/hello_pi/hello_teapot/ opt/vc/src/hello_pi/hello_tiger/ opt/vc/src/hello_pi/hello_triangle/ opt/vc/src/hello_pi/hello_triangle2/ opt/vc/src/hello_pi/hello_video/ opt/vc/src/hello_pi/hello_videocube/ opt/vc/src/hello_pi/hello_world/ opt/vc/src/hello_pi/libs/ilclient/ opt/vc/src/hello_pi/libs/vgfont/ root/ root/.config/ root/.config/leafpad/ root/.config/leafpad/leafpadrc root/.config/libfm/ root/.config/libfm/libfm.conf root/.config/pcmanfm/ root/.config/pcmanfm/default/ root/.config/pcmanfm/default/pcmanfm.conf root/.dbus/ root/.dbus/session-bus/ root/.dbus/session-bus/fe1d4a4d0ac7441e817d011e70da2471-0 root/.thumbnails/ root/.thumbnails/large/ root/.thumbnails/normal/ root/.thumbnails/normal/1da7effe7a4ddded800a805605d3e434.png root/.thumbnails/normal/4d3b8b7432c0a5efe9f5923afef4a8ab.png root/.thumbnails/normal/a35a1a4c676e8d230b1db9ba1c92c926.png root/.thumbnails/normal/abbca8fb814fc1bcc56d6d321df77a61.png root/.thumbnails/normal/c4cb12cbf00986999fa89d59c67cd6cc.png root/.thumbnails/normal/d5e25d89952e26d7ada007c3c4e7a983.png root/.thumbnails/normal/d6010cf39c9c8f4a4242d4b2a129f6e9.png root/.thumbnails/normal/e336398d590b77e8c2559669aff6d71a.png root/.vnc/ root/.vnc/private.key usr/ usr/arm-linux-gnueabihf/ usr/arm-linux-gnueabihf/avr/ usr/arm-linux-gnueabihf/avr/include/ usr/arm-linux-gnueabihf/avr/lib/ deleting usr/bin/mysql_config deleting usr/bin/exmenen deleting usr/bin/exmendis usr/bin/ usr/bin/arm-linux-gnueabihf-python-config -> arm-linux-gnueabihf-python2.7-config usr/bin/arm-linux-gnueabihf-python2.7-config usr/bin/arm-linux-gnueabihf-run usr/bin/attr usr/bin/bluej usr/bin/curl usr/bin/dbwrap_tool usr/bin/dh_sphinxdoc usr/bin/epylint usr/bin/eventlogadm usr/bin/gcore usr/bin/gdb usr/bin/gdb-add-index usr/bin/gdbserver usr/bin/gdbtui usr/bin/getfattr usr/bin/greenfoot usr/bin/hg usr/bin/hg-ssh usr/bin/host usr/bin/ipcluster usr/bin/ipcontroller usr/bin/ipengine usr/bin/ipython usr/bin/net usr/bin/nmblookup usr/bin/node-red-log usr/bin/node-red-start usr/bin/node-red-stop usr/bin/oLschema2ldif usr/bin/openbox-lxde-pi usr/bin/paperconf usr/bin/pdbedit usr/bin/pep8 usr/bin/pi-gpk-dbus-service usr/bin/pi-gpk-install-local-file usr/bin/pi-gpk-log usr/bin/pi-gpk-prefs usr/bin/pi-gpk-update-viewer usr/bin/pi-packages usr/bin/pilconvert usr/bin/pilconvert.py usr/bin/pildriver usr/bin/pildriver.py usr/bin/pilfile usr/bin/pilfile.py usr/bin/pilfont usr/bin/pilfont.py usr/bin/pilprint usr/bin/pilprint.py usr/bin/profiles usr/bin/pt2to3 usr/bin/ptdump usr/bin/ptrepack usr/bin/pyflakes usr/bin/pyflakes3 usr/bin/pygmentize usr/bin/pylint usr/bin/pylint-gui usr/bin/pyreverse usr/bin/pytest usr/bin/python-config -> python2.7-config usr/bin/python2-config -> python2.7-config usr/bin/python2.7-config -> arm-linux-gnueabihf-python2.7-config usr/bin/raspi-config usr/bin/rc_gui usr/bin/rst-buildhtml -> /etc/alternatives/rst-buildhtml usr/bin/rst2html -> /etc/alternatives/rst2html usr/bin/rst2latex -> /etc/alternatives/rst2latex usr/bin/rst2man -> /etc/alternatives/rst2man usr/bin/rst2odt -> /etc/alternatives/rst2odt usr/bin/rst2odt_prepstyles -> /etc/alternatives/rst2odt_prepstyles usr/bin/rst2pseudoxml -> /etc/alternatives/rst2pseudoxml usr/bin/rst2s5 -> /etc/alternatives/rst2s5 usr/bin/rst2xetex -> /etc/alternatives/rst2xetex usr/bin/rst2xml -> /etc/alternatives/rst2xml usr/bin/rstpep2html -> /etc/alternatives/rstpep2html usr/bin/runxlrd usr/bin/samba-regedit usr/bin/samba-tool usr/bin/scratch usr/bin/setfattr usr/bin/sharesec usr/bin/smbcontrol usr/bin/smbpasswd usr/bin/smbstatus usr/bin/smbta-util usr/bin/sphinx-apidoc -> ../share/sphinx/scripts/python2/sphinx-apidoc usr/bin/sphinx-autogen -> ../share/sphinx/scripts/python2/sphinx-autogen usr/bin/sphinx-build -> ../share/sphinx/scripts/python2/sphinx-build usr/bin/sphinx-quickstart -> ../share/sphinx/scripts/python2/sphinx-quickstart usr/bin/squeak usr/bin/startlxde-pi usr/bin/symilar usr/bin/tdbbackup -> /etc/alternatives/tdbbackup usr/bin/tdbbackup.tdbtools usr/bin/tdbdump usr/bin/tdbrestore usr/bin/tdbtool usr/bin/testparm usr/bin/update-nodejs-and-nodered deleting usr/include/mysql/mysql/psi/psi_abi_v2.h deleting usr/include/mysql/mysql/psi/psi_abi_v1.h deleting usr/include/mysql/mysql/psi/psi.h deleting usr/include/mysql/mysql/psi/mysql_thread.h deleting usr/include/mysql/mysql/psi/mysql_file.h deleting usr/include/mysql/mysql/psi/ deleting usr/include/mysql/mysql/thread_pool_priv.h deleting usr/include/mysql/mysql/services.h deleting usr/include/mysql/mysql/service_thread_scheduler.h deleting usr/include/mysql/mysql/service_thd_wait.h deleting usr/include/mysql/mysql/service_thd_alloc.h deleting usr/include/mysql/mysql/service_my_snprintf.h deleting usr/include/mysql/mysql/plugin_ftparser.h deleting usr/include/mysql/mysql/plugin_auth_common.h deleting usr/include/mysql/mysql/plugin_auth.h deleting usr/include/mysql/mysql/plugin_audit.h deleting usr/include/mysql/mysql/plugin.h deleting usr/include/mysql/mysql/innodb_priv.h deleting usr/include/mysql/mysql/client_plugin.h deleting usr/include/mysql/mysql/ deleting usr/include/mysql/typelib.h deleting usr/include/mysql/sslopt-vars.h deleting usr/include/mysql/sslopt-longopts.h deleting usr/include/mysql/sslopt-case.h deleting usr/include/mysql/sql_state.h deleting usr/include/mysql/sql_common.h deleting usr/include/mysql/plugin_ftparser.h deleting usr/include/mysql/plugin_audit.h deleting usr/include/mysql/plugin.h deleting usr/include/mysql/mysqld_error.h deleting usr/include/mysql/mysqld_ername.h deleting usr/include/mysql/mysql_version.h deleting usr/include/mysql/mysql_time.h deleting usr/include/mysql/mysql_embed.h deleting usr/include/mysql/mysql_com.h deleting usr/include/mysql/mysql.h deleting usr/include/mysql/my_xml.h deleting usr/include/mysql/my_sys.h deleting usr/include/mysql/my_pthread.h deleting usr/include/mysql/my_net.h deleting usr/include/mysql/my_list.h deleting usr/include/mysql/my_global.h deleting usr/include/mysql/my_getopt.h deleting usr/include/mysql/my_dir.h deleting usr/include/mysql/my_dbug.h deleting usr/include/mysql/my_config.h deleting usr/include/mysql/my_compiler.h deleting usr/include/mysql/my_attribute.h deleting usr/include/mysql/my_alloc.h deleting usr/include/mysql/m_string.h deleting usr/include/mysql/m_ctype.h deleting usr/include/mysql/keycache.h deleting usr/include/mysql/errmsg.h deleting usr/include/mysql/decimal.h deleting usr/include/mysql/ usr/include/ usr/include/arm-linux-gnueabihf/ usr/include/arm-linux-gnueabihf/python2.7/ usr/include/arm-linux-gnueabihf/python2.7/pyconfig.h usr/include/lxpanel/ usr/include/python2.7/ usr/include/python2.7/ImDib.h usr/include/python2.7/ImPlatform.h usr/include/python2.7/Imaging.h usr/include/python2.7/Python-ast.h usr/include/python2.7/Python.h usr/include/python2.7/abstract.h usr/include/python2.7/asdl.h usr/include/python2.7/ast.h usr/include/python2.7/bitset.h usr/include/python2.7/boolobject.h usr/include/python2.7/bufferobject.h usr/include/python2.7/bytearrayobject.h usr/include/python2.7/bytes_methods.h usr/include/python2.7/bytesobject.h usr/include/python2.7/cStringIO.h usr/include/python2.7/cellobject.h usr/include/python2.7/ceval.h usr/include/python2.7/classobject.h usr/include/python2.7/cobject.h usr/include/python2.7/code.h usr/include/python2.7/codecs.h usr/include/python2.7/compile.h usr/include/python2.7/complexobject.h usr/include/python2.7/datetime.h usr/include/python2.7/descrobject.h usr/include/python2.7/dictobject.h usr/include/python2.7/dtoa.h usr/include/python2.7/enumobject.h usr/include/python2.7/errcode.h usr/include/python2.7/eval.h usr/include/python2.7/fileobject.h usr/include/python2.7/floatobject.h usr/include/python2.7/frameobject.h usr/include/python2.7/funcobject.h usr/include/python2.7/genobject.h usr/include/python2.7/graminit.h usr/include/python2.7/grammar.h usr/include/python2.7/import.h usr/include/python2.7/intobject.h usr/include/python2.7/intrcheck.h usr/include/python2.7/iterobject.h usr/include/python2.7/listobject.h usr/include/python2.7/longintrepr.h usr/include/python2.7/longobject.h usr/include/python2.7/marshal.h usr/include/python2.7/memoryobject.h usr/include/python2.7/metagrammar.h usr/include/python2.7/methodobject.h usr/include/python2.7/modsupport.h usr/include/python2.7/moduleobject.h usr/include/python2.7/node.h usr/include/python2.7/object.h usr/include/python2.7/objimpl.h usr/include/python2.7/opcode.h usr/include/python2.7/osdefs.h usr/include/python2.7/parsetok.h usr/include/python2.7/patchlevel.h usr/include/python2.7/pgen.h usr/include/python2.7/pgenheaders.h usr/include/python2.7/py_curses.h usr/include/python2.7/pyarena.h usr/include/python2.7/pycapsule.h usr/include/python2.7/pyconfig.h usr/include/python2.7/pyctype.h usr/include/python2.7/pydebug.h usr/include/python2.7/pyerrors.h usr/include/python2.7/pyexpat.h usr/include/python2.7/pyfpe.h usr/include/python2.7/pygetopt.h usr/include/python2.7/pymacconfig.h usr/include/python2.7/pymactoolbox.h usr/include/python2.7/pymath.h usr/include/python2.7/pymem.h usr/include/python2.7/pyport.h usr/include/python2.7/pystate.h usr/include/python2.7/pystrcmp.h usr/include/python2.7/pystrtod.h usr/include/python2.7/pythonrun.h usr/include/python2.7/pythread.h usr/include/python2.7/rangeobject.h usr/include/python2.7/setobject.h usr/include/python2.7/sliceobject.h usr/include/python2.7/stringobject.h usr/include/python2.7/structmember.h usr/include/python2.7/structseq.h usr/include/python2.7/symtable.h usr/include/python2.7/sysmodule.h usr/include/python2.7/timefuncs.h usr/include/python2.7/token.h usr/include/python2.7/traceback.h usr/include/python2.7/tupleobject.h usr/include/python2.7/ucnhash.h usr/include/python2.7/unicodeobject.h usr/include/python2.7/warnings.h usr/include/python2.7/weakrefobject.h usr/include/python3.4m/ usr/include/python3.4m/ImDib.h usr/include/python3.4m/ImPlatform.h usr/include/python3.4m/Imaging.h usr/lib/ usr/lib/libbind9.so.90.0.9 usr/lib/libdns.so.100.2.2 usr/lib/libisc.so.95.5.0 usr/lib/libisccc.so.90.0.6 usr/lib/libisccfg.so.90.1.0 usr/lib/liblwres.so.90.0.7 usr/lib/libpgm-5.1.so.0 -> libpgm-5.1.so.0.0.118 usr/lib/libpgm-5.1.so.0.0.118 usr/lib/libsnappy.so.1 -> libsnappy.so.1.2.1 usr/lib/libsnappy.so.1.2.1 deleting usr/lib/arm-linux-gnueabihf/libmysqlclient_r.so deleting usr/lib/arm-linux-gnueabihf/libmysqlclient_r.a deleting usr/lib/arm-linux-gnueabihf/libmysqlclient.so deleting usr/lib/arm-linux-gnueabihf/libmysqlclient.a usr/lib/arm-linux-gnueabihf/ usr/lib/arm-linux-gnueabihf/libapr-1.so.0 -> libapr-1.so.0.5.1 usr/lib/arm-linux-gnueabihf/libapr-1.so.0.5.1 usr/lib/arm-linux-gnueabihf/libaprutil-1.so.0 -> libaprutil-1.so.0.5.4 usr/lib/arm-linux-gnueabihf/libaprutil-1.so.0.5.4 usr/lib/arm-linux-gnueabihf/libasn1.so.8 -> libasn1.so.8.0.0 usr/lib/arm-linux-gnueabihf/libasn1.so.8.0.0 usr/lib/arm-linux-gnueabihf/libcurl-gnutls.so.4.3.0 usr/lib/arm-linux-gnueabihf/libcurl.so.4.3.0 usr/lib/arm-linux-gnueabihf/libexslt.so.0.8.17 usr/lib/arm-linux-gnueabihf/libgstbadbase-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstbadvideo-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstbasecamerabinsrc-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstcodecparsers-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstgl-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstinsertbin-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstmpegts-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstphotography-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgsturidownloader-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libgstwayland-1.0.so.0.404.0 usr/lib/arm-linux-gnueabihf/libhcrypto.so.4 -> libhcrypto.so.4.1.0 usr/lib/arm-linux-gnueabihf/libhcrypto.so.4.1.0 usr/lib/arm-linux-gnueabihf/libhdb.so.9 -> libhdb.so.9.2.0 usr/lib/arm-linux-gnueabihf/libhdb.so.9.2.0 usr/lib/arm-linux-gnueabihf/libheimbase.so.1 -> libheimbase.so.1.0.0 usr/lib/arm-linux-gnueabihf/libheimbase.so.1.0.0 usr/lib/arm-linux-gnueabihf/libhx509.so.5 -> libhx509.so.5.0.0 usr/lib/arm-linux-gnueabihf/libhx509.so.5.0.0 usr/lib/arm-linux-gnueabihf/libkrb5.so.26 -> libkrb5.so.26.0.0 usr/lib/arm-linux-gnueabihf/libkrb5.so.26.0.0 usr/lib/arm-linux-gnueabihf/liblz4.so.1 -> liblz4.so.1.3.0 usr/lib/arm-linux-gnueabihf/liblz4.so.1.3.0 usr/lib/arm-linux-gnueabihf/libpaper.so.1 -> libpaper.so.1.1.2 usr/lib/arm-linux-gnueabihf/libpaper.so.1.1.2 usr/lib/arm-linux-gnueabihf/libpyldb-util.so.1 -> libpyldb-util.so.1.1.20 usr/lib/arm-linux-gnueabihf/libpyldb-util.so.1.1.20 usr/lib/arm-linux-gnueabihf/libpython2.7.a -> ../python2.7/config-arm-linux-gnueabihf/libpython2.7.a usr/lib/arm-linux-gnueabihf/libpython2.7.so -> libpython2.7.so.1 usr/lib/arm-linux-gnueabihf/libroken.so.18 -> libroken.so.18.1.0 usr/lib/arm-linux-gnueabihf/libroken.so.18.1.0 usr/lib/arm-linux-gnueabihf/libserf-1.so.1 -> libserf-1.so.1.3.0 usr/lib/arm-linux-gnueabihf/libserf-1.so.1.3.0 usr/lib/arm-linux-gnueabihf/libsodium.so.13 -> libsodium.so.13.0.2 usr/lib/arm-linux-gnueabihf/libsodium.so.13.0.2 usr/lib/arm-linux-gnueabihf/libsvn_auth_gnome_keyring-1.so.1 -> libsvn_auth_gnome_keyring-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_auth_gnome_keyring-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_auth_kwallet-1.so.1 -> libsvn_auth_kwallet-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_auth_kwallet-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_client-1.so.1 -> libsvn_client-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_client-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_delta-1.so.1 -> libsvn_delta-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_delta-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_diff-1.so.1 -> libsvn_diff-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_diff-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs-1.so.1 -> libsvn_fs-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_base-1.so.1 -> libsvn_fs_base-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_base-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_fs-1.so.1 -> libsvn_fs_fs-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_fs-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_util-1.so.1 -> libsvn_fs_util-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_fs_util-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra-1.so.1 -> libsvn_ra-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_local-1.so.1 -> libsvn_ra_local-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_local-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_serf-1.so.1 -> libsvn_ra_serf-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_serf-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_svn-1.so.1 -> libsvn_ra_svn-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_ra_svn-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_repos-1.so.1 -> libsvn_repos-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_repos-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_subr-1.so.1 -> libsvn_subr-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_subr-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_wc-1.so.1 -> libsvn_wc-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libsvn_wc-1.so.1.0.0 usr/lib/arm-linux-gnueabihf/libwayland-egl.so.1 -> libwayland-egl.so.1.0.0 usr/lib/arm-linux-gnueabihf/libwayland-egl.so.1.0.0 usr/lib/arm-linux-gnueabihf/libwind.so.0 -> libwind.so.0.0.0 usr/lib/arm-linux-gnueabihf/libwind.so.0.0.0 usr/lib/arm-linux-gnueabihf/libxslt.so.1.1.28 usr/lib/arm-linux-gnueabihf/libzmq.so.3 -> libzmq.so.3.1.0 usr/lib/arm-linux-gnueabihf/libzmq.so.3.1.0 usr/lib/arm-linux-gnueabihf/apr-util-1/ usr/lib/arm-linux-gnueabihf/apr-util-1/apr_crypto_openssl-1.so usr/lib/arm-linux-gnueabihf/apr-util-1/apr_crypto_openssl.so -> apr_crypto_openssl-1.so usr/lib/arm-linux-gnueabihf/apr-util-1/apr_dbm_db-1.so usr/lib/arm-linux-gnueabihf/apr-util-1/apr_dbm_db.so -> apr_dbm_db-1.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/ usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaccurip.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstadpcmdec.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstadpcmenc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaiff.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstasfmux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstassrender.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaudiofxbad.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaudiomixer.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstaudiovisualizers.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstautoconvert.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstbayer.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstbz2.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstcamerabin2.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstchromaprint.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstcoloreffects.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstcompositor.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstcurl.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdashdemux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdataurisrc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdebugutilsbad.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdecklink.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdtsdec.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdvb.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdvbsuboverlay.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstdvdspu.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfaad.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfbdevsink.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfestival.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfieldanalysis.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstflite.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfluidsynthmidi.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfragmented.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfreeverb.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstfrei0r.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstgaudieffects.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstgdp.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstgeometrictransform.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstgme.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstgsm.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstid3tag.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstinter.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstinterlace.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstivfparse.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstivtc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstjp2kdecimator.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstjpegformat.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstkate.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstladspa.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstliveadder.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmidi.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmimic.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmms.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmodplug.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpeg2enc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpegpsdemux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpegpsmux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpegtsdemux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpegtsmux.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmpg123.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmplex.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstmxf.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstofa.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopenal.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopencv.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopenexr.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopengl.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopenjpeg.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstopus.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstpcapparse.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstpnm.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstrawparse.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstremovesilence.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstresindvd.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstrfbsrc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstrsvg.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstrtmp.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsbc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstschro.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsdpelem.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsegmentclip.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstshm.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsiren.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsmooth.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsmoothstreaming.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsndfile.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsoundtouch.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstspandsp.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstspeed.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsrtp.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgststereo.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstsubenc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstuvch264.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvideofiltersbad.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvideoparsersbad.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvideosignal.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvmnc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvoaacenc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstvoamrwbenc.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstwaylandsink.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstwebp.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstwildmidi.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgsty4mdec.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstyadif.so usr/lib/arm-linux-gnueabihf/gstreamer-1.0/libgstzbar.so usr/lib/arm-linux-gnueabihf/jni/ usr/lib/arm-linux-gnueabihf/ldb/modules/ldb/ usr/lib/arm-linux-gnueabihf/ldb/modules/ldb/samba -> ../../../samba/ldb usr/lib/arm-linux-gnueabihf/lightdm/ usr/lib/arm-linux-gnueabihf/lxpanel/plugins/ usr/lib/arm-linux-gnueabihf/neon/vfp/ usr/lib/arm-linux-gnueabihf/nss/ usr/lib/arm-linux-gnueabihf/odbc/ usr/lib/arm-linux-gnueabihf/openssl-1.0.0/engines/ usr/lib/arm-linux-gnueabihf/perl5/5.20/ usr/lib/arm-linux-gnueabihf/perl5/5.20/Bundle/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/File/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/Gofer/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/Gofer/Policy/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/Gofer/Transport/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBD/mysql/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Const/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Const/GetInfo/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/DBD/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/DBD/SqlEngine/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Gofer/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Gofer/Serializer/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Gofer/Transport/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/ProfileDumper/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/SQL/ usr/lib/arm-linux-gnueabihf/perl5/5.20/DBI/Util/ usr/lib/arm-linux-gnueabihf/perl5/5.20/Term/ usr/lib/arm-linux-gnueabihf/perl5/5.20/Win32/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/DBD/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/DBD/mysql/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/DBI/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/Term/ usr/lib/arm-linux-gnueabihf/perl5/5.20/auto/Term/ReadKey/ usr/lib/arm-linux-gnueabihf/pkgconfig/ usr/lib/arm-linux-gnueabihf/pkgconfig/python-2.7.pc usr/lib/arm-linux-gnueabihf/pkgconfig/python.pc -> python-2.7.pc usr/lib/arm-linux-gnueabihf/pkgconfig/python2.pc -> python.pc usr/lib/arm-linux-gnueabihf/qt4/plugins/ usr/lib/arm-linux-gnueabihf/qt4/plugins/designer/ usr/lib/arm-linux-gnueabihf/qt4/plugins/iconengines/ usr/lib/arm-linux-gnueabihf/qt4/plugins/imageformats/ usr/lib/arm-linux-gnueabihf/qt4/plugins/qmltooling/ usr/lib/arm-linux-gnueabihf/qt4/plugins/script/ usr/lib/arm-linux-gnueabihf/qt4/plugins/sqldrivers/ usr/lib/arm-linux-gnueabihf/qt4/plugins/sqldrivers/libqsqlmysql.so usr/lib/arm-linux-gnueabihf/samba/ usr/lib/arm-linux-gnueabihf/samba/libHDB-SAMBA4.so.0 usr/lib/arm-linux-gnueabihf/samba/libdb-glue.so.0 usr/lib/arm-linux-gnueabihf/samba/libhdb-samba4.so.11 -> libhdb-samba4.so.11.0.2 usr/lib/arm-linux-gnueabihf/samba/libhdb-samba4.so.11.0.2 usr/lib/arm-linux-gnueabihf/samba/libkdc-samba4.so.2 -> libkdc-samba4.so.2.0.0 usr/lib/arm-linux-gnueabihf/samba/libkdc-samba4.so.2.0.0 usr/lib/arm-linux-gnueabihf/samba/libpac.so.0 usr/lib/arm-linux-gnueabihf/samba/ldb/ usr/lib/arm-linux-gnueabihf/samba/ldb/acl.so usr/lib/arm-linux-gnueabihf/samba/ldb/aclread.so usr/lib/arm-linux-gnueabihf/samba/ldb/anr.so usr/lib/arm-linux-gnueabihf/samba/ldb/descriptor.so usr/lib/arm-linux-gnueabihf/samba/ldb/dirsync.so usr/lib/arm-linux-gnueabihf/samba/ldb/extended_dn_in.so usr/lib/arm-linux-gnueabihf/samba/ldb/extended_dn_out.so usr/lib/arm-linux-gnueabihf/samba/ldb/extended_dn_store.so usr/lib/arm-linux-gnueabihf/samba/ldb/ildap.so usr/lib/arm-linux-gnueabihf/samba/ldb/instancetype.so usr/lib/arm-linux-gnueabihf/samba/ldb/lazy_commit.so usr/lib/arm-linux-gnueabihf/samba/ldb/ldbsamba_extensions.so usr/lib/arm-linux-gnueabihf/samba/ldb/linked_attributes.so usr/lib/arm-linux-gnueabihf/samba/ldb/local_password.so usr/lib/arm-linux-gnueabihf/samba/ldb/new_partition.so usr/lib/arm-linux-gnueabihf/samba/ldb/objectclass.so usr/lib/arm-linux-gnueabihf/samba/ldb/objectclass_attrs.so usr/lib/arm-linux-gnueabihf/samba/ldb/objectguid.so usr/lib/arm-linux-gnueabihf/samba/ldb/operational.so usr/lib/arm-linux-gnueabihf/samba/ldb/partition.so usr/lib/arm-linux-gnueabihf/samba/ldb/password_hash.so usr/lib/arm-linux-gnueabihf/samba/ldb/ranged_results.so usr/lib/arm-linux-gnueabihf/samba/ldb/repl_meta_data.so usr/lib/arm-linux-gnueabihf/samba/ldb/resolve_oids.so usr/lib/arm-linux-gnueabihf/samba/ldb/rootdse.so usr/lib/arm-linux-gnueabihf/samba/ldb/samba3sam.so usr/lib/arm-linux-gnueabihf/samba/ldb/samba3sid.so usr/lib/arm-linux-gnueabihf/samba/ldb/samba_dsdb.so usr/lib/arm-linux-gnueabihf/samba/ldb/samba_secrets.so usr/lib/arm-linux-gnueabihf/samba/ldb/samldb.so usr/lib/arm-linux-gnueabihf/samba/ldb/schema_data.so usr/lib/arm-linux-gnueabihf/samba/ldb/schema_load.so usr/lib/arm-linux-gnueabihf/samba/ldb/secrets_tdb_sync.so usr/lib/arm-linux-gnueabihf/samba/ldb/show_deleted.so usr/lib/arm-linux-gnueabihf/samba/ldb/simple_dn.so usr/lib/arm-linux-gnueabihf/samba/ldb/simple_ldap_map.so usr/lib/arm-linux-gnueabihf/samba/ldb/subtree_delete.so usr/lib/arm-linux-gnueabihf/samba/ldb/subtree_rename.so usr/lib/arm-linux-gnueabihf/samba/ldb/update_keytab.so usr/lib/arm-linux-gnueabihf/samba/ldb/wins_ldb.so usr/lib/arm-linux-gnueabihf/samba/service/ usr/lib/arm-linux-gnueabihf/samba/service/cldap.so usr/lib/arm-linux-gnueabihf/samba/service/dcerpc.so usr/lib/arm-linux-gnueabihf/samba/service/dns.so usr/lib/arm-linux-gnueabihf/samba/service/dns_update.so usr/lib/arm-linux-gnueabihf/samba/service/drepl.so usr/lib/arm-linux-gnueabihf/samba/service/kcc.so usr/lib/arm-linux-gnueabihf/samba/service/kdc.so usr/lib/arm-linux-gnueabihf/samba/service/ldap.so usr/lib/arm-linux-gnueabihf/samba/service/nbtd.so usr/lib/arm-linux-gnueabihf/samba/service/ntp_signd.so usr/lib/arm-linux-gnueabihf/samba/service/s3fs.so usr/lib/arm-linux-gnueabihf/samba/service/smb.so usr/lib/arm-linux-gnueabihf/samba/service/web.so usr/lib/arm-linux-gnueabihf/samba/service/winbind.so usr/lib/arm-linux-gnueabihf/samba/service/winbindd.so usr/lib/arm-linux-gnueabihf/samba/service/wrepl.so usr/lib/arm-linux-gnueabihf/samba/vfs/ usr/lib/arm-linux-gnueabihf/samba/vfs/acl_tdb.so usr/lib/arm-linux-gnueabihf/samba/vfs/acl_xattr.so usr/lib/arm-linux-gnueabihf/samba/vfs/aio_fork.so usr/lib/arm-linux-gnueabihf/samba/vfs/aio_linux.so usr/lib/arm-linux-gnueabihf/samba/vfs/aio_posix.so usr/lib/arm-linux-gnueabihf/samba/vfs/aio_pthread.so usr/lib/arm-linux-gnueabihf/samba/vfs/audit.so usr/lib/arm-linux-gnueabihf/samba/vfs/btrfs.so usr/lib/arm-linux-gnueabihf/samba/vfs/cap.so usr/lib/arm-linux-gnueabihf/samba/vfs/catia.so usr/lib/arm-linux-gnueabihf/samba/vfs/commit.so usr/lib/arm-linux-gnueabihf/samba/vfs/crossrename.so usr/lib/arm-linux-gnueabihf/samba/vfs/default_quota.so usr/lib/arm-linux-gnueabihf/samba/vfs/dfs_samba4.so usr/lib/arm-linux-gnueabihf/samba/vfs/dirsort.so usr/lib/arm-linux-gnueabihf/samba/vfs/expand_msdfs.so usr/lib/arm-linux-gnueabihf/samba/vfs/extd_audit.so usr/lib/arm-linux-gnueabihf/samba/vfs/fake_perms.so usr/lib/arm-linux-gnueabihf/samba/vfs/fileid.so usr/lib/arm-linux-gnueabihf/samba/vfs/fruit.so usr/lib/arm-linux-gnueabihf/samba/vfs/full_audit.so usr/lib/arm-linux-gnueabihf/samba/vfs/linux_xfs_sgid.so usr/lib/arm-linux-gnueabihf/samba/vfs/media_harmony.so usr/lib/arm-linux-gnueabihf/samba/vfs/netatalk.so usr/lib/arm-linux-gnueabihf/samba/vfs/posix_eadb.so usr/lib/arm-linux-gnueabihf/samba/vfs/preopen.so usr/lib/arm-linux-gnueabihf/samba/vfs/readahead.so usr/lib/arm-linux-gnueabihf/samba/vfs/readonly.so usr/lib/arm-linux-gnueabihf/samba/vfs/recycle.so usr/lib/arm-linux-gnueabihf/samba/vfs/scannedonly.so usr/lib/arm-linux-gnueabihf/samba/vfs/shadow_copy.so usr/lib/arm-linux-gnueabihf/samba/vfs/shadow_copy2.so usr/lib/arm-linux-gnueabihf/samba/vfs/smb_traffic_analyzer.so usr/lib/arm-linux-gnueabihf/samba/vfs/streams_depot.so usr/lib/arm-linux-gnueabihf/samba/vfs/streams_xattr.so usr/lib/arm-linux-gnueabihf/samba/vfs/syncops.so usr/lib/arm-linux-gnueabihf/samba/vfs/time_audit.so usr/lib/arm-linux-gnueabihf/samba/vfs/worm.so usr/lib/arm-linux-gnueabihf/samba/vfs/xattr_tdb.so usr/lib/avr/ usr/lib/avr/bin/ usr/lib/avr/include/ usr/lib/avr/include/avr/ usr/lib/avr/include/compat/ usr/lib/avr/include/util/ usr/lib/avr/lib/ usr/lib/avr/lib/avr25/ usr/lib/avr/lib/avr25/tiny-stack/ usr/lib/avr/lib/avr3/ usr/lib/avr/lib/avr31/ usr/lib/avr/lib/avr35/ usr/lib/avr/lib/avr4/ usr/lib/avr/lib/avr5/ usr/lib/avr/lib/avr51/ usr/lib/avr/lib/avr6/ usr/lib/avr/lib/avr7/ usr/lib/avr/lib/avrtiny/ usr/lib/avr/lib/avrxmega2/ usr/lib/avr/lib/avrxmega4/ usr/lib/avr/lib/avrxmega5/ usr/lib/avr/lib/avrxmega6/ usr/lib/avr/lib/avrxmega7/ usr/lib/avr/lib/ldscripts/ usr/lib/avr/lib/tiny-stack/ usr/lib/chromium-browser/ usr/lib/chromium-browser/chrome-sandbox usr/lib/chromium-browser/chrome_100_percent.pak usr/lib/chromium-browser/chrome_200_percent.pak usr/lib/chromium-browser/chrome_material_100_percent.pak usr/lib/chromium-browser/chrome_material_200_percent.pak usr/lib/chromium-browser/chromium-browser usr/lib/chromium-browser/content_browser_manifest.json usr/lib/chromium-browser/content_renderer_manifest.json usr/lib/chromium-browser/content_resources.pak usr/lib/chromium-browser/icudtl.dat usr/lib/chromium-browser/keyboard_resources.pak usr/lib/chromium-browser/libpepflashplayer.so usr/lib/chromium-browser/libyuv.a usr/lib/chromium-browser/natives_blob.bin usr/lib/chromium-browser/resources.pak usr/lib/chromium-browser/snapshot_blob.bin usr/lib/chromium-browser/xdg-mime usr/lib/chromium-browser/xdg-settings usr/lib/chromium-browser/catalog/ usr/lib/chromium-browser/catalog/manifest.json usr/lib/chromium-browser/extensions/ usr/lib/chromium-browser/libs/ usr/lib/chromium-browser/libs/libEGL.so usr/lib/chromium-browser/libs/libEGL.so.TOC usr/lib/chromium-browser/libs/libGLESv2.so usr/lib/chromium-browser/libs/libGLESv2.so.TOC usr/lib/chromium-browser/locales/ usr/lib/chromium-browser/locales/am.pak usr/lib/chromium-browser/locales/ar.pak usr/lib/chromium-browser/locales/bg.pak usr/lib/chromium-browser/locales/bn.pak usr/lib/chromium-browser/locales/ca.pak usr/lib/chromium-browser/locales/cs.pak usr/lib/chromium-browser/locales/da.pak usr/lib/chromium-browser/locales/de.pak usr/lib/chromium-browser/locales/el.pak usr/lib/chromium-browser/locales/en-GB.pak usr/lib/chromium-browser/locales/en-US.pak usr/lib/chromium-browser/locales/es-419.pak usr/lib/chromium-browser/locales/es.pak usr/lib/chromium-browser/locales/et.pak usr/lib/chromium-browser/locales/fa.pak usr/lib/chromium-browser/locales/fi.pak usr/lib/chromium-browser/locales/fil.pak usr/lib/chromium-browser/locales/fr.pak usr/lib/chromium-browser/locales/gu.pak usr/lib/chromium-browser/locales/he.pak usr/lib/chromium-browser/locales/hi.pak usr/lib/chromium-browser/locales/hr.pak usr/lib/chromium-browser/locales/hu.pak usr/lib/chromium-browser/locales/id.pak usr/lib/chromium-browser/locales/it.pak usr/lib/chromium-browser/locales/ja.pak usr/lib/chromium-browser/locales/kn.pak usr/lib/chromium-browser/locales/ko.pak usr/lib/chromium-browser/locales/lt.pak usr/lib/chromium-browser/locales/lv.pak usr/lib/chromium-browser/locales/ml.pak usr/lib/chromium-browser/locales/mr.pak usr/lib/chromium-browser/locales/ms.pak usr/lib/chromium-browser/locales/nb.pak usr/lib/chromium-browser/locales/nl.pak usr/lib/chromium-browser/locales/pl.pak usr/lib/chromium-browser/locales/pt-BR.pak usr/lib/chromium-browser/locales/pt-PT.pak usr/lib/chromium-browser/locales/ro.pak usr/lib/chromium-browser/locales/ru.pak usr/lib/chromium-browser/locales/sk.pak usr/lib/chromium-browser/locales/sl.pak usr/lib/chromium-browser/locales/sr.pak usr/lib/chromium-browser/locales/sv.pak usr/lib/chromium-browser/locales/sw.pak usr/lib/chromium-browser/locales/ta.pak usr/lib/chromium-browser/locales/te.pak usr/lib/chromium-browser/locales/th.pak usr/lib/chromium-browser/locales/tr.pak usr/lib/chromium-browser/locales/uk.pak usr/lib/chromium-browser/locales/vi.pak usr/lib/chromium-browser/locales/zh-CN.pak usr/lib/chromium-browser/locales/zh-TW.pak usr/lib/chromium-browser/pseudo_locales/ usr/lib/chromium-browser/pseudo_locales/fake-bidi.pak usr/lib/emacsen-common/packages/install/ usr/lib/emacsen-common/packages/install/pylint usr/lib/emacsen-common/packages/remove/ usr/lib/emacsen-common/packages/remove/pylint usr/lib/gcc/ usr/lib/gcc/avr/ usr/lib/gcc/avr/4.8.1/ usr/lib/gcc/avr/4.8.1/avr25/ usr/lib/gcc/avr/4.8.1/avr25/tiny-stack/ usr/lib/gcc/avr/4.8.1/avr3/ usr/lib/gcc/avr/4.8.1/avr31/ usr/lib/gcc/avr/4.8.1/avr35/ usr/lib/gcc/avr/4.8.1/avr4/ usr/lib/gcc/avr/4.8.1/avr5/ usr/lib/gcc/avr/4.8.1/avr51/ usr/lib/gcc/avr/4.8.1/avr6/ usr/lib/gcc/avr/4.8.1/avr7/ usr/lib/gcc/avr/4.8.1/avrtiny/ usr/lib/gcc/avr/4.8.1/avrxmega2/ usr/lib/gcc/avr/4.8.1/avrxmega4/ usr/lib/gcc/avr/4.8.1/avrxmega5/ usr/lib/gcc/avr/4.8.1/avrxmega6/ usr/lib/gcc/avr/4.8.1/avrxmega7/ usr/lib/gcc/avr/4.8.1/include-fixed/ usr/lib/gcc/avr/4.8.1/include/ usr/lib/gcc/avr/4.8.1/install-tools/ usr/lib/gcc/avr/4.8.1/install-tools/include/ usr/lib/gcc/avr/4.8.1/plugin/ usr/lib/gcc/avr/4.8.1/plugin/include/ usr/lib/gcc/avr/4.8.1/plugin/include/ada/ usr/lib/gcc/avr/4.8.1/plugin/include/ada/gcc-interface/ usr/lib/gcc/avr/4.8.1/plugin/include/c-family/ usr/lib/gcc/avr/4.8.1/plugin/include/config/ usr/lib/gcc/avr/4.8.1/plugin/include/config/avr/ usr/lib/gcc/avr/4.8.1/plugin/include/cp/ usr/lib/gcc/avr/4.8.1/plugin/include/java/ usr/lib/gcc/avr/4.8.1/plugin/include/objc/ usr/lib/gcc/avr/4.8.1/tiny-stack/ rsync: write failed on "/mnt/clone/usr/lib/chromium-browser/chromium-browser": Read-only file system (30) rsync error: error in file IO (code 11) at receiver.c(393) [receiver=3.1.1] mkdir: cannot create directory ‘/mnt/clone/mnt/clone’: Read-only file system mkdir: cannot create directory ‘/mnt/clone/mnt/mnt’: Read-only file system mkdir: cannot create directory ‘/mnt/clone/mnt/sda’: Read-only file system mkdir: cannot create directory ‘/mnt/clone/mnt/sdb’: Read-only file system mkdir: cannot create directory ‘/mnt/clone/mnt/rpi0’: Read-only file system mkdir: cannot create directory ‘/mnt/clone/mnt/rpi1’: Read-only file system /usr/local/sbin/rpi-clone: line 494: /mnt/clone//var/log/rpi-clone.log: Read-only file system *** Done with clone to /dev/sda *** Started: 15:36:26 Finished: 15:38:04 Hit Enter when ready to unmount the /dev/sda partitions... unmounting /mnt/clone/boot unmounting /mnt/clone =============================== pi@raspberrypi:/usr/local/sbin $