Aktuelles
Digital Eliteboard - Das Digitale Technik Forum

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Raspbery Pi oder Beaglebone Black?

    Nobody is reading this thread right now.
AW: Raspbery Pi oder Beaglebone Black?

Bei mir direkt, am aktiven Hub geht's auch nicht (Habe aber nur 3 verschieden da zum testen)
Mir kommt es so vor wie wenn durch das Schreiben in den Flash ein kurzer Spannungsknick den Prozessor außer Tritt bringt
(Wenn Last am USB ist). Bin auch schon ein wenig Ratlos?
 
AW: Raspbery Pi oder Beaglebone Black?

Hallo!

Wie startet mann dann von der Karte,ist ein Versuch wert.
So wie beim Igel,Netinstall?

Gruss
 
Image For Booting From microSD
There are periodic images that are available that can be used to create a microSD card
that will allow you to boot direct from the microSD slot.
These images may not be the same as the production image. They are provided for convenience.
To force a boot from the microSD card, delete the MLO file in the FAT partition of the eMMC.
You can access this when the board is connected over the USB cable and it appears as a thumbdrive.

So hier die lange Version:

Bob Hartwig's thoughts on Raspberry Pi, microcontrollers, etc.
BeagleBone Black – preparing to run Debian
or Ubuntu from the microSD card
In one of my first posts to this blog, I described how I
prepare an SD card for running Raspbian
on a Raspberry Pi
. The scripts that I described in that post go well beyond simply copying the
Raspbian image to the SD card – they also mount the newly imaged partitions, update the
firmware, configure the hostname, static IP address, and other things, getting the card most of
the way set up before the card is ever booted in the target Raspberry Pi.
Because I’ve been doing more and more with my
BeagleBone Black, I decided to adopt those
Raspbian scripts to similarly prepare a fresh microSD card for use in a BBB. These scripts
prepare the microSD card for running the OS directly from the card, not for flashing the onboard
eMMC memory. I’ll describe my scripts for that in a future post. I run the
preparecard
script described below from my main Raspberry Pi, but you can run it from a BeagleBone Black,
or any other Linux system.
On the main Linux system
This screenshot shows the directory from where I prepare my BBB cards for Debian:
BeagleBone Black – preparing to run Debian or Ubuntu from the microSD card | Ti... Seite 1 von 5
... 30.09.13
The
debian-user-scripts and bbb-user-scripts directories get copied onto the target card, and each
contains a script to be used upon first booting into the new system as the
debian user, and then
as the new
bbb user. More on those below.
The
preparecard script is the business end of all of this. It does the following:
• It downloads the latest Debian demo image from Circuitco, as described
on this page
• It verifies the SHA1 hash of the newly downloaded compressed image file.
• It uncompresses and copies the image file onto the microSD card in the card reader. Please
note that the script assumes that your card reader shows up as
/dev/sda . That should hold
true for a Raspberry Pi or BBB, but if your Linux system is different, be sure to edit the
script before running it.
• It creates a temporary mount point for the new card’s root partition.
• It temporarily mounts the card’s root partition, and then tweaks some settings and installs
some scripts onto the card. These tweaks include setting the hostname, and setting a static
IP address.
• It unmounts the card, and removes the temporary mount point.
• It displays some final instructions on how to use
fdisk to expand the root partition to fill all
free space on the card.
You can download this script from a link at the bottom of this post. Please note that you will
almost certainly want to edit the variables at the top of the script to match your preferred
hostname and IP address. Once you insert your new micro SD card’s USB card reader, and verify
that it shows up at
/dev/sda, go ahead and run the script:
./preparecard
BeagleBone Black – preparing to run Debian or Ubuntu from the microSD card | Ti...
Seite 2 von 5
... 30.09.13

your new card will have a fresh install of Debian, with the above-mentioned customizations.
The USB-attached SD card will be unmounted, so you can simply remove it and plug it into the
micro SD card slot of your target BeagleBone Black.
On the target BeagleBone Black
Now insert your newly prepared card into the micro SD card slot, and power it up. Because our
script configured a static IP address, you should be able to immediately SSH into the new system
as user
debian, password debian. Your home directory should have a firstrun script. Execute this
script

./firstrun

and the following should happen:
• A new
bbb user is created, and you are prompted to set the user’s password.
• The home directory for the new
bbb user is prepared.
Once this finishes, log out, and then log back in as the new
bbb user, and run the firstrun script in
the bbb user’s home directory:
./firstrun
This script does the following:
• It updates the packages on the system.
• It configures the timezone.
• It prompts for a new root password
• It installs the
screen package. Screen is a utility that I cannot live without when working with
any headless Linux system.
Once you follow these simple steps, you should be good to go – your system should be up to
date, and you can log in as the
bbb user, or as root.
What about Ubuntu?
BeagleBone Black – preparing to run Debian or Ubuntu from the microSD card | Ti... Seite 3 von 5
...
30.09.13
The procedure for imaging and preparing Ubuntu are so similar to imaging and preparing
Debian, the scripts are almost identical. Ubuntu uses a different technique for specifying a DNS
name server, so that portion of the script is slightly different, and of course the URL for
downloading the Ubuntu image is different (see
this page for details). And instead of a debian
user with a password of
debian , the initial user is named ubuntu, with password ubuntu.
Downloads
• If you wish to use Debian:
• Here is the
preparecard script: preparecard
• Here is the debian user’s
firstrun script: firstrun – place this into the debian-userscripts
subdirectory.
• Here is the bbb user’s
firstrun script: firstrun – place this into the bbb-user-scripts
subdirectory.
• If you wish to use Ubuntu:
BeagleBone Black – preparing to run Debian or Ubuntu from the microSD card | Ti...
Seite 4 von 5
... 30.09.13
• Here is the
preparecard script: preparecard
• Here is the ubuntu user’s
firstrun script: firstrun – place this into the ubuntu-userscripts
subdirectory.
• Here is the bbb user’s
firstrun script: firstrun – place this into the bbb-user-scripts
subdirectory.
This entry was posted in BeagleBone Black on September 29, 2013
[
from-the-microsd-card/] by Bob Hartwig.
BeagleBone Black – preparing to run Debian or Ubuntu from the microSD card | Ti... Seite 5 von 5
http://
 
Zuletzt bearbeitet von einem Moderator:
AW: Raspbery Pi oder Beaglebone Black?

Hallo!

Habe mit Ubuntu probiert,auch nicht besser.
Mit 3 Reader geht,nach dem aktievieren vom 4 Reader und ca 3 Minuten,geht nichts.

Gruss
 
AW: Raspbery Pi oder Beaglebone Black?

Hab mir es fast schon gedacht....
Danke fürs testen.
LG
joerg_999
 
AW: Raspbery Pi oder Beaglebone Black?

habe mir auch einen bbb mit touch gerordert leider lese ich das mit der quadmouse erst jetzt, ist es vielleicht möglich
sich nach dieser Anleitung einen non smp kernel zu erstellen da ja nur das image vorhanden ist die sourcen und configs aber nicht
 
AW: Raspbery Pi oder Beaglebone Black?

Willkommen in der Runde!
Das mit dem neuen non SMP Kernel wäre der nächste Schritt der zu versuchen wäre, habe es ein paar Posts vorher schon mal erwähnt
Habe aber noch keine Zeit gehabt mich genauer damit zu befassen. Meine Erfahrung mit der Erstellung eines neuen Kernels sind leider 0.
Ich muss mich in die Thematik erst einlesen und Crosscompiler und Dergleichen erst richtig installieren und konfigurieren.
Wenn da einer mehr Erfahrung hat würde ich dankbar sein wen der das probieren könnte.

Aber der Lösungsansatz mit dem non SMP Kernel wäre durchaus einen Versuch wert!
Wie gesagt mit bis zu 3 Readern aktiv läuft der BBB wie geschmiert und ist einiges schneller wie der RASPI.

PS: das Problem mit dem Abschmieren tritt nicht nur mit der Quadmouse auf sondern mit allen Readern!
 
Zuletzt bearbeitet:
AW: Raspbery Pi oder Beaglebone Black?

Moin,

hab da ein Video gefunden wie kernel für BeagleBone kompiliert wird da gehts zwar um treiber aber grundlegend sollte das auch für non smp funktionieren
werds mal probieren wenn das gute Stück da ist und ich testen kann.
 
Zuletzt bearbeitet:
AW: Raspbery Pi oder Beaglebone Black?

Hallo,

falls es wirklich ein Kernel Problem ist glaub ich nicht das
die neuen Versionen funktionieren da sicher auch SMP Kernel
aber probieren kann man ja, mal sehen wann dhl aufschlägt mit dem BBB
 
AW: Raspbery Pi oder Beaglebone Black?

Wirst wahrscheinlich recht haben, aber wenn deiner kommt ist er ja schnell installiert... dann haben wir einen weiteren Kollegen zum testen.

LG
Joerg_999
 
AW: Raspbery Pi oder Beaglebone Black?

ja genau leider bis heute noch nicht da aber könntet ihr mal im dev ordner schauen ob da ttyusb 0 - 9 oder zumindest bis 4
vorhanden sind hatte ich damals bei der syno da musste man erste verküpfungen
anlegen mit
mknod /dev/ttyUSB0 c 188 0
mknod /dev/ttyUSB1 c 188 1
mknod /dev/ttyUSB2 c 188 2
mknod /dev/ttyUSB3 c 188 3

usw.

damit er den Usb richtig anspricht

wie gesagt nur so ne Idee

Mfg

hoffe er ist morgen da das 4d display ist schon mal angekommen
 
Zuletzt bearbeitet:
AW: Raspbery Pi oder Beaglebone Black?

Adressieren tut er sie schon richtig, die Karte funktioniert auch tadellos aber eben nur 2-3 Minuten ab dem 4.Reader bis zum 3.Reader läuft er wie ein Panzer.
Werde aber trotzdem mal schauen...
Na vielleicht hast du Glück und Farnel14 (ich meine der Postler) klingelt bei dir morgen ;-)

PS: was ich noch sagen wollte die doscam läuft natürlich nicht! die laufen nur am Raspi oder Pogo (habs getestet)
 
Zurück
Oben