How do I flash RasPlex to an SD card from Ubuntu? [closed]
I'm trying to install RasPlex for my Raspberry Pi 3. When I downloaded the file to flash, it came in a .bin file and the instructions are very weak. So I now have a .bin file and not a clue on how to flash it to my SD card. How do I flash this bin file to the SD card?
sd-card disk-image plex
closed as unclear what you're asking by mikewhatever, Pilot6, Eric Carvalho, Thomas, user68186 Mar 4 at 15:38
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
I'm trying to install RasPlex for my Raspberry Pi 3. When I downloaded the file to flash, it came in a .bin file and the instructions are very weak. So I now have a .bin file and not a clue on how to flash it to my SD card. How do I flash this bin file to the SD card?
sd-card disk-image plex
closed as unclear what you're asking by mikewhatever, Pilot6, Eric Carvalho, Thomas, user68186 Mar 4 at 15:38
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Try to give it execution permissions and execute it.sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.
– Thomas
Mar 2 at 9:59
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18
add a comment |
I'm trying to install RasPlex for my Raspberry Pi 3. When I downloaded the file to flash, it came in a .bin file and the instructions are very weak. So I now have a .bin file and not a clue on how to flash it to my SD card. How do I flash this bin file to the SD card?
sd-card disk-image plex
I'm trying to install RasPlex for my Raspberry Pi 3. When I downloaded the file to flash, it came in a .bin file and the instructions are very weak. So I now have a .bin file and not a clue on how to flash it to my SD card. How do I flash this bin file to the SD card?
sd-card disk-image plex
sd-card disk-image plex
edited Mar 3 at 7:41
muclux
3,41611130
3,41611130
asked Mar 2 at 9:52
Carlton HillCarlton Hill
12
12
closed as unclear what you're asking by mikewhatever, Pilot6, Eric Carvalho, Thomas, user68186 Mar 4 at 15:38
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by mikewhatever, Pilot6, Eric Carvalho, Thomas, user68186 Mar 4 at 15:38
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Try to give it execution permissions and execute it.sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.
– Thomas
Mar 2 at 9:59
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18
add a comment |
Try to give it execution permissions and execute it.sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.
– Thomas
Mar 2 at 9:59
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18
Try to give it execution permissions and execute it.
sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.– Thomas
Mar 2 at 9:59
Try to give it execution permissions and execute it.
sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.– Thomas
Mar 2 at 9:59
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18
add a comment |
1 Answer
1
active
oldest
votes
Download an img image file from official github:
https://github.com/RasPlex/RasPlex/releases
Then flash your SD card:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
For more information, see the official documentation, Manual Installation Instructions
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Download an img image file from official github:
https://github.com/RasPlex/RasPlex/releases
Then flash your SD card:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
For more information, see the official documentation, Manual Installation Instructions
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
add a comment |
Download an img image file from official github:
https://github.com/RasPlex/RasPlex/releases
Then flash your SD card:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
For more information, see the official documentation, Manual Installation Instructions
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
add a comment |
Download an img image file from official github:
https://github.com/RasPlex/RasPlex/releases
Then flash your SD card:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
For more information, see the official documentation, Manual Installation Instructions
Download an img image file from official github:
https://github.com/RasPlex/RasPlex/releases
Then flash your SD card:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
For more information, see the official documentation, Manual Installation Instructions
answered Mar 2 at 10:30
cmak.frcmak.fr
2,4441121
2,4441121
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
add a comment |
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
cheers mate i dont know how you found that link because I went to the link provided and the github page and could only get the .bin file for some reason. but shes working a treat now cheers
– Carlton Hill
Mar 2 at 11:14
add a comment |
Try to give it execution permissions and execute it.
sudo +x <yourbinfile.bin>; sudo ./<yourbinfile.bin>.– Thomas
Mar 2 at 9:59
What is "the instructions are very weak"? Perhaps they won't look "week" to someone else, so why not elaborate?
– mikewhatever
Mar 2 at 10:18