Carro de la compra

No hay artículos en el carro

No hay artículos en el carro

Geekworm X1001 PCIe a M.2 HAT Key-M NVMe SSD PIP PCIe placa periférica para Raspberry Pi 5 compatible con SSD M.2 2230/2242/2260/2280

Envío gratis en pedidos superiores a Mex $600.00

Mex $369.00

Mex $ 199 .00 Mex $199.00

En stock

Acerca de este artículo

  • Compatibilidad: Pi 5 PCIe M.2 HAT solo compatible con Raspberry Pi 5 2GB/4GB/8GB/16GB SBC (no incluye Raspberry Pi 5), Modelo: X1001
  • M2 Key-M NVMe SSD soportado: compatible con M.2 KEY-M NVMe SSD 2230/2242/2260/2280 instalación de longitud; viene con pilar de cobre SSD para instalación SSD 2230/2242/2260
  • Manual de usuario y preguntas frecuentes: Google Geekworm WiKi y busca X1001 y sus preguntas frecuentes; consulta las preguntas frecuentes para solucionar problemas paso a paso si no puedes arrancar/reconocer desde NVMe SSD
  • Cómo alimentar: alimenta el escudo X1001 directamente desde la cinta PCIe FCC. Utiliza el adaptador de corriente PD de 27 W para Raspberry Pi 5
  • Lista de embalaje: 1 placa periférica PCIe X1001, 1 paquete de accesorios; Nota: no incluye Raspberry Pi 5, SSD, tarjeta TF o adaptador de corriente


El escudo X1001 es un NVME M2 SSD PIP (PCIe Peripheral Board) para la Raspberry Pi 5 que utiliza la nueva interfaz PCIE de la Raspberry Pi 5 para utilizar los SSD NVME M2 para transferencias de datos rápidas y arranque ultrarrápido.


xuebs
Comentado en los Estados Unidos el 12 de marzo de 2025
This NVME hat thing works well with my Pi5. It rightfully urges you to use the 27W Pi5 charger that can do 5a at 5v so don't overlook that. The obvious great thing about this mod is how much faster the Pi5 runs, loads, transfers etc. It really makes a difference, at least with the 8GB Pi5.Couple things to watch out for. If you are thinking this will fit in a case, it probably won't because of the chonk 5v input on top of the board. It sticks out higher than the rest of the board and prevents me from putting the lid back on my case by a micron. Also know that the LED indicator light flashes like a strobe light with a brightness equal to 1000 suns.
Liam
Comentado en Australia el 15 de junio de 2024
New Edit: This drive randomly disconnects while transferring larger files. Anything over about 6GB the device disconnects and no longer works. I do not recommend this.I was a bit dumb installing this. Here is a guide that worked well for me:# Copied:## How to setup mount / auto-mount USB Hard Drive on Raspberry PiFollow the simple steps in the order mentioned below to have your USB drive mounted on your Raspberry Pi every time you boot it.These steps are required especially if your are setting up a Samba share, or a 24x7 torrent downloader, or alike where your Raspberry Pi must have your external storage already mounted and ready for access by the services / daemons.Step 0.Plug in your USB HDD / Drive to Raspberry PiIf you are using a NTFS formatted drive, install the following```sudo apt-get install ntfs-3g```Step 1.Log on pi using ssh terminal and execute:```sudo blkid```You will see something like the following:lrwxrwxrwx 1 root root 10 Jan 1 1970 0AC4D607C4D5F543 -> ../../sda1Note down the value of the UUID --> 0AC4D607C4D5F543Step 2.Create a location for mount point:```sudo mkdir /mnt/volume```Give proper permission:```sudo chmod 770 /mnt/volume```Step 3.Get the uid, gid for pi user and group with id command (usually 1000)Step 4.Mount the USB Drive and then check if it is accessible at /mnt/volume```sudo mount -t ntfs-3g -o nofail,uid=1000,gid=1000,umask=007 /dev/sda1 /mnt/volume```Or:```sudo mount /dev/sda1 /mnt/volume```Note:ntfs-3g for NTFS Drivesvfat for FAT32 Drivesext4 for ext4 DrivesStep 5.Now, we will configure RasPi to do this after every reboot:Take a backup of current fstab and then edit```sudo cp /etc/fstab /etc/fstab.backupsudo nano /etc/fstab```Add the mount information in the fstab file (replace UUID with your own):```UUID=0AC4D607C4D5F543 /mnt/volume ntfs-3g async,big_writes,noatime,nodiratime,nofail,uid=1000,gid=1000,umask=007 0 0```Or:```/dev/sda1 /mnt/volume ntfs defaults 0 0```Step 6.Reboot```sudo reboot```Step 8. (Optional, required if using as data storage for owncloud)If you are configuring ownCloud's data directory on your NAS drive, it should be having a 770 permission for www-data user. You can simply add user www-data to pi group, since its already having 770 as permission as set above in fstab.```sudo usermod -a -G pi www-data```## Alternative 2This is a short guide on how to connect an External Hard Drive to the Raspberry Pi! Most external Hard Drives are quite juicy and will require a USB Hub to run in a stable manner, so please do check this before trying to install your drive!First step is to plug it in, and then switch on your Pi! It should boot up as normal, so go ahead and log in to Raspian as usual.Step 1. Is it there?!If you want to check for the current storage devices attached to your Pi, simply run the command:```sudo blkid```This reveals that we currently have our “Seagate Expansion Drive” attached.Step 2. Check the PartitionsWe now need to check the boot name of our Seagate’s partition.```sudo fdisk –l```Reveals that our drive is located at /dev/sda1Step 3. Mounting it.Now we know where our drive is, we need to mount it:```sudo mount /dev/sda1 /mnt/volume```The folder “/mnt” is the standard location for mounting permanent media, but you can always create your own folder if required using the “mkdir” command.That’s it! Our drive is mounted.Step 4. Permissions.As our drive is formatted in NTFS, we might need to change the /mnt drive permissions in order to enable proper access. Simply run the following command:```sudo chmod 775 /mnt/volume```This will change your permissions and allow you to access the drive.To test this, let’s try to create a folder. . .```cd /mnt/volumemkdir IMAFOLDERcd IMAFOLDER```Great! So we can read and write to our hardrive!Step 5. Automounting our drive.If you want your Hard Drive to mount from boot, we need to set this up!First step is to edit our "fstab" file```sudo nano /etc/fstab```This will open up the file in nano text editor:We need to add the following line to have our hard drive mount at boot!```/dev/sda1 /mnt/volume ntfs-3g uid=1000,gid==1000,umask=007,nofail,x-systemd.device-timeout=30 0 0```You can now reboot your Raspbery Pi, and your Hard Drive will automatically mount!Step 5. How to unmount.To unmount the drive, simply run the command:````sudo umount /mnt/volume````As long as you’re not currently accessing the drive, it should unmount successfully.
JLM
Comentado en Canadá el 2 de diciembre de 2024
This hat was easy to install and worked great with a trashy no-name brand NVMe drive. Definitely happy with this purchase.
Brian
Comentado en Canadá el 29 de enero de 2024
After following the instructions I was able to set this up fairly easily. I have a USB-C NVMe enclosure so I used raspberry pi imager to install the Raspberry Pi OS on it and then edited the config.txt on the bootfs partition to add the line for PCI-E. Instructions for that is easily found on Google. I have the case from 52pi which holds the active cooler and NVMe board but note that I had to purchase smaller 2.5 standoffs to get it to fit in the case. But it boots up significantly faster and has a noticeable increase in speed. I recommend it. I bought this one because I had a 512gb M.2 2280 SSD so I needed a board that supported the 2280, which this one does. Note - please don't leave a bad review just because you get upset when you can't get it working. I was hesitant to buy this because of a bad review but thankfully I got it anyway. If you have trouble, there are several videos and KB articles available to help you.
M Lewus
Comentado en los Estados Unidos el 25 de enero de 2024
I already have a ‘Pineberry hat bottom’ for my other raspberry pi 5. I got another pi 5 and decided to try the Geekworm because it was readily available on Amazon and at $16 it’s very well priced.. It mounts on standoffs with three screws. Another reviewer complained about the double female standoffs making it hard to mount in a case, but if you use slightly longer (2.5 x 12mm) screws, you can mount it through the bottom of a standard Raspberry pi 5 factory case. It was easy to install, and unlike the bottom hat does not block access to the SD card. Also, because it’s only half width it does not block the Pi active cooler. Even with my pi overclocked to 2.9 GHz (+20%) temps under stress-ng, cpu/gpu 100% load temps were below 75C and normal temps were in the mid 40s.I used a Kingston m.2 2280 512GB pcie 4x4 SSD because I had one around. The system boots reliably from that drive and I get around 850 MB/s sequential reads and 750 MB/s writes. I have stress tested the SSD at pcie 3 speed with no issues and it did not require heat sink. Some reviewers have complained about an inability to boot from WD drives. This is not a problem with the adapter but instead is a known issue with the Raspberry Pi. Hopefully this will get sorted out over time.There were some other reviewers who complained about power. Most SSDs will work fine from the 5 watts that is available from the pcie cable. That limit is imposed by the raspberry pi, not by the adapter. If you need more power, the connector is a standard 2.54 mm JST, and you can readily buy a cable here on Amazon. But virtually all pcie 3 drives and most pcie 4 drives of 2 TB or below will work within the 5 watt window, especially considering that only one pcie lane is a use.My only complaint is that the activity light stays on all the time. unlike the Pineberry, it does not blink when the drive is accessed. Other than that I’m perfectly happy with it.
Productos recomendados

Mex $107.00

Mex $ 53 .00 Mex $53.00

4.6
Elegir

Mex $345.99

Mex $ 159 .00 Mex $159.00

4.3
Elegir