Solutions to your doubts are just one click away. Just select the appropriate category and ask questions. You can also reply to the answers you are already aware.
Hi Ganesh,
I want to ping a particular application from my RB so using that i want to establish a connection between RB and Application as server client to Send/Receive data
server service was not there in default images so i think you have to setup the yocto in your PC and add package of dhcp server. please follow below link to setup the yocto:
The DHCP server hands out the IP address to the clients in the Local Area Network(LAN). It distributes IPs to all the nodes in the LAN (clients) and also provides IP Address of the Domain Name Server (DNS) and the default gateway.
The isc-dhcp-server package can be installed by running the below command in the terminal
apt install -y isc-dhcp-server
The basic configuration options are as follows
subnet 192.168.10.0 netmask 255.255.255.0 {
option routers 192.168.10.1 ;
option domain-name-servers 192.168.10.1 ;
range 192.168.10.10 192.168.10.150;
range 192.168.10.160 192.168.10.220
default-lease-time 600 ;
max-lease-time 7200 ;
# we want this server to be the only DHCP server in this network
use below command to setup the client :
udhcpc eth0
Hi Ganesh, I want to ping a particular application from my RB so using that i want to establish a connection between RB and Application as server client to Send/Receive data
server service was not there in default images so i think you have to setup the yocto in your PC and add package of dhcp server. please follow below link to setup the yocto:
Thanks , I will check this one
Hi Shall i require to copy the yocto folder in BOOT part of SD card?
the yocto setup should be setup in the your HOST PC
Yes, but what thing i flash in my SD card?
When you have time can you please guide me on that?
just follow the yocto compilation procedure from the above link.
SD Card Flash Images:
Step7: For rugged board a5d2x(SDCARD) i) Change the machine name to "rugged-board-a5d2x-sd1" in "conf/local.conf" as below.
Here, what should i copy in SD card, that thing i am not getting, can you please guide me about
@Subhrajit Sharma for sdcard images .....go to conf/local.conf file in build folder...change the machine name to "rugged-board-a5d2x-sd1"
d@jd-HP-Notebook:~/Documents/yocto/build$ bitbake rb-sd-core-image-minimal
ERROR: Unable to start bitbake server
ERROR: Server log for this session (/home/jd/Documents/yocto/build/bitbake-cookerdaemon.log):
--- Starting bitbake server pid 15396 at 2020-08-14 15:09:41.742953 ---
jd@jd-HP-Notebook:~/Documents/yocto/build$ sudo -s
root@jd-HP-Notebook:/home/jd/Documents/yocto/build# bitbake rb-sd-core-image-minimal
bitbake: command not found
The DHCP server hands out the IP address to the clients in the Local Area Network(LAN). It distributes IPs to all the nodes in the LAN (clients) and also provides IP Address of the Domain Name Server (DNS) and the default gateway.
The isc-dhcp-server package can be installed by running the below command in the terminal
apt install -y isc-dhcp-server
The basic configuration options are as follows
subnet 192.168.10.0 netmask 255.255.255.0 {
option routers 192.168.10.1 ;
option domain-name-servers 192.168.10.1 ;
range 192.168.10.10 192.168.10.150;
range 192.168.10.160 192.168.10.220
default-lease-time 600 ;
max-lease-time 7200 ;
# we want this server to be the only DHCP server in this network
authoritative ;
}
Hi Mike Thanks for the information i will check and update here