Difference between revisions of "Template:S5PXX18MakeSDCardViaSDFusing"

From FriendlyELEC WiKi
Jump to: navigation, search
(Created page with "====Make Installation Card under Linux Desktop==== *1) Insert your SD card into a host computer running Ubuntu and check your SD card's device name <syntaxhighlight lang="bash...")
 
(updated by API)
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
  
 
*2) Downlaod Linux script
 
*2) Downlaod Linux script
<syntaxhighlight lang="bash">
+
<div style="background-color: #f9f9f9; border:1px solid #dddddd; padding-left: 10px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px;">
git clone https://github.com/friendlyarm/{{{2}}}.git
+
git clone https://github.com/friendlyarm/{{{2}}}.git<br />
 
cd {{{2}}}
 
cd {{{2}}}
</syntaxhighlight>
+
</div>
  
 
*3) Here is how to make a Lubuntu desktop SD card
 
*3) Here is how to make a Lubuntu desktop SD card
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
sudo ./fusing.sh /dev/sdx lubuntu-desktop
+
sudo ./fusing.sh /dev/sdx lubuntu
 
</syntaxhighlight>
 
</syntaxhighlight>
 
(Note: you need to replace "/dev/sdx" with the device name in your system) <br />
 
(Note: you need to replace "/dev/sdx" with the device name in your system) <br />
Line 20: Line 20:
 
*4) Run this command to make a complete image file:  
 
*4) Run this command to make a complete image file:  
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
sudo ./mkimage.sh lubuntu-desktop
+
sudo ./mkimage.sh lubuntu
 
</syntaxhighlight>
 
</syntaxhighlight>
 
More content please refre: [[Assembling the SD card image yourself]]<br />
 
More content please refre: [[Assembling the SD card image yourself]]<br />

Latest revision as of 07:14, 25 December 2017

Make Installation Card under Linux Desktop

  • 1) Insert your SD card into a host computer running Ubuntu and check your SD card's device name
dmesg | tail

Search the messages output by "dmesg" for similar words like "sdc: sdc1 sdc2". If you can find them it means your SD card has been recognized as "/dev/sdc". Or you can check that by commanding "cat /proc/partitions"

  • 2) Downlaod Linux script

git clone https://github.com/friendlyarm/{{{2}}}.git
cd {{{2}}}

  • 3) Here is how to make a Lubuntu desktop SD card
sudo ./fusing.sh /dev/sdx lubuntu

(Note: you need to replace "/dev/sdx" with the device name in your system)
When you run the script for the first time it will prompt you to download an image you have to hit “Y” within 10 seconds otherwise you will miss the download

  • 4) Run this command to make a complete image file:
sudo ./mkimage.sh lubuntu

More content please refre: Assembling the SD card image yourself