I couldnt find the file pidesktop.deb. The webpage is really complicated.
I couldnt find the file pidesktop.deb. The webpage is really complicated.
Hi Just am trying to setup my pi desktop.
Stuck an 8GB microSD in the pi, booted it, updated/upgraded, installed dpkg of pidesktop-base.deb, but when I run ppp-hdclone, it has no selectable options for source or dest.
Source is blank, dest says "no items available"
I have an adata msata 128GB drive connected. Do I need to setup/format this drive first? Any steps I'm missing?
Whats the results of :
ls -la /dev/sd*
I followed instructions to boot pi from a usb ignoring the fact I had a
ssd not a usb. Worked perfectly. When finished pi booted from the ssd
and the cd card was moved /media/pi/. I can no longer find the link to
these instructions but I copied them down as I executed them. I could
post them if anyone is interested.
It is correct Thomas, as by the point of view of the Pi an SSD connected via SATA to USB is a bare USB Memory stick. No matter what is the speed of the SSD itself or the data transfer available to the SATA side as the speed of data transfer is determined by the USB 2 protocol that is the physical connection between the devie and the PI.
As a matter of fact, - despite some issues related to some firmware problem - any storage device connected to the USB is saw by the PI as an external USB storage. To call it in the instructions USB memory stick is just a formal convention. Nothing to do with electronic as the interface (USB data storage) is the same for all.
Enrico
Hi Thomas, yes please paste them if you can!
Thanks!
I did not use a usb connection. The ssd drive was connected to the hat.
Started booting from the cd card. After following all the instructions
turned the pi off then on to reboot. At a terminal entered the command
df -h. Response was /dev/root size 230G mounted on /.
Thank you for the specification Thomas. This can make the difference. So the value added to this device is a HAT accepting SSD storage directly connected as SATA. I am curious to see how if is connected internally, what real protocol does it uses for data transfer and know the bus speed.
Enrico
OK
pi booted from cd. Downloaded raspbian image to pi
from root terminal proceed as follows:
lsblk to confirm ssd is /dev/sda
dd bs=4M if=2017-04-10-raspbian-jessie.img of=/dev/sda (doesn't matter
if ssd is unformated)
lsblk now shows sda1 /media/pi/boot and sda2 /media/pi/disk#
use gparted to enlarge the sda2 partition
mkdir /mnt/slash
mount /dev/sda2 /mnt/slash (slash is just any name you choose)
rsync -avxS / /mnt/ (I think -a = archive necessary to copy entire
content of /)l
lsblk now shows sda1 /media/pi/boot and sda2 /mnt/slash
ls /dev/disk/by-partuuid to list the partuuids for both the cd card and
the ssd
cd /boot
vi cmdline.txt
You will find root=partuuid=cd card #-2
change this to root=partuuid=ssd #-2
close the edit with the new root id.
Hold your breath and reboot. It worked for me
Not sure how to measure bus speed. Used rsync --stats to transfer the
contents of one directory to another.
Total size is 51,616,761 speed up is 1.01.
Gave you wrong result. Tried again rsync copy of raspbian image ( 4G )
to empty directory. Five minutes thirty six seconds which works out to
12Mps.
Giving this a shot now, I'll let you know how it works.
For this:
rsync -avxS / /mnt/ (I think -a = archive necessary to copy entire
content of /)l
Should it be:
rsync -avxS / /mnt/slash
?
Seems odd to rsync to only /mnt/
Right, my error - Tom George
Right, my error - Tom George
OK thanks, unfortunately this didn't work for me.
Followed the steps, when I got here:
lsblk now shows sda1 /media/pi/boot and sda2 /media/pi/disk#
Mine showed sda1=/media/usb0 and sda2=(nothing)
Then,
ls /dev/disk/by-partuuid to list the partuuids for both the cd card and
the ssd
I was able to list the partID's here (only for the sda1/2), but in the cmdline.txt file, I had:
root=/dev/mcblock02 (or whatever it is) but not part UID
I changed this to /dev/sda2 and shut it down, pulled the SD card but it didn't boot up.
Sorry it didn't work for you. Why usb0? wasn't the ssd connected
directly to the tophat? Incidentally if you get the intermediate steps
to work right, don't remove the cd card. It will become a storage device
at /media/pi/cd#.
Im using the pi desktop, so its an msata drive connected on the separate board that comes with the kit. Is there a different way to set it up so that it isn't listed as a usb?
I am using the pi desktop too. If the msata drive is connected the
separate board that comes with the kit it should be /dev/sda and after
dd'ing the raspbian image to /dev/sda the drive should be mountable
(check /media/pi) and have a small boot partition and a larger program
partition exactly the same as dd'ing a raspbian image from a pc to a cd
card.