Open a terminal and type the following commands, not forgetting the dot at the end of the fourth command:
$ mkdir /home/yourname/cpio
$ mkdir /home/yourname/cpio/work
$ cd /home/yourname/cpio/work
$ cp /boot/message .
$ cpio -idv < message
$ mv message ../message-old
$ cp /home/yourname/Documents/favpic.jpg back.jpg
$ ls | cpio -ov > ../message
$ cd ..
$ su
$ cp message /boot/message
$ exit
$ rm -Rf work
Now the directory /home/yourname/cpio contains the files message and message-old. These are respectively your current and previous /boot/message files. You may consider keeping them, especially the message-old file, just in case. If you do not care, then you can delete them and the cpio directory you created for this procedure.
You should note:

Recent Comments