To flash an image using Telnet
This method will only work with a .img image file.
* Rename the image file to backup.img
* FTP the image file to the /tmp folder on the dreambox
* Telnet to your box and paste the following command:
Code:cd /tmp && eraseall /dev/mtd/3 && cp backup.img /dev/mtd/3 && reboot
To backup an image using Telnet
* Telnet to the box and paste the following command:
* FTP to the box and navigate to the /tmpCode:cat /dev/mtd/3 > /tmp/backup.img
* Here you will find the backup.img file.
How to copy an image from your PC to the Dreambox via Telnet
First of all, you need to have a mounted directory from your PC. Make sure you have the image.img file in your mounted directory on your PC. Telnet to the dreambox and paste this command:
The img will be copied from your mounted directory to the /tmp folder on the dreambox ready to be flashed.Code:cp /hdd/movie/image.img /tmp/image.img