|
Setting up a password for the root user
Alberto, The quotes around `openssl passwd ${ROOT_PASSWORD}` have to be backticks (`) not single quotes ('). :rjs
Alberto, The quotes around `openssl passwd ${ROOT_PASSWORD}` have to be backticks (`) not single quotes ('). :rjs
|
By
Rudolf J Streif
· #43722
·
|
|
Setting up a password for the root user
For security it is best to disable console login for root and all users altogether and use ssh with keys. If you are building many devices you would want to provision each of them with unique keys. :r
For security it is best to disable console login for root and all users altogether and use ssh with keys. If you are building many devices you would want to provision each of them with unique keys. :r
|
By
Rudolf J Streif
· #43725
·
|
|
local.conf confusion
Greg, I am not entirely sure why you are including a machine configuration include file into your conf/local.conf file. However, the "include" directive is optional include and hence if the file is no
Greg, I am not entirely sure why you are including a machine configuration include file into your conf/local.conf file. However, the "include" directive is optional include and hence if the file is no
|
By
Rudolf J Streif
· #44167
·
|
|
Yocto Project @ ELC NA 2019
I apologize if I missed any communication on this mailing list but what are the plans for a presence of YP at ELC NA in August in San Diego this year? Unfortunately, I missed the deadline for submitti
I apologize if I missed any communication on this mailing list but what are the plans for a presence of YP at ELC NA in August in San Diego this year? Unfortunately, I missed the deadline for submitti
|
By
Rudolf J Streif
· #44971
·
|
|
Yocto Project @ ELC NA 2019
Hi Andrea, I was intending to bring the whole gokart. It's more fun to see the speedometer go up when you push down on the pedal and the regen to kick in when letting go etc. Everybody has seen hundre
Hi Andrea, I was intending to bring the whole gokart. It's more fun to see the speedometer go up when you push down on the pedal and the regen to kick in when letting go etc. Everybody has seen hundre
|
By
Rudolf J Streif
· #44978
·
|
|
Yocto Project @ ELC NA 2019
Hi Andrea, Great. I can bring some wooden blocks to prop up the rear-end. People could sit in it and spin the wheels. :rjs
Hi Andrea, Great. I can bring some wooden blocks to prop up the rear-end. People could sit in it and spin the wheels. :rjs
|
By
Rudolf J Streif
· #44980
·
|
|
[Yocto-Advocacy] Yocto Project Upcoming Conferences and Developer Days
Chiming in here There are always people who are prepared to the T and others who just casually stroll into the class. We all know that as we all went through various stages of schooling. :) No matter
Chiming in here There are always people who are prepared to the T and others who just casually stroll into the class. We all know that as we all went through various stages of schooling. :) No matter
|
By
Rudolf J Streif
· #45094
·
|
|
problem adding a user
Hi Greg, Well, I suppose I wrote the book you are referring to... Using useradd -p PASSWORD USER takes the password hash for PASSWORD hence the use of openssl in: useadd -p `openssl passwd PASSWORD` U
Hi Greg, Well, I suppose I wrote the book you are referring to... Using useradd -p PASSWORD USER takes the password hash for PASSWORD hence the use of openssl in: useadd -p `openssl passwd PASSWORD` U
|
By
Rudolf J Streif
· #45187
·
|
|
problem adding a user
Hi Greg, > I've also tried both the back-quote and the single-quote, no difference. Help me to understand this. the back-quotes are the right ones. If you use the single ones your password in the /etc
Hi Greg, > I've also tried both the back-quote and the single-quote, no difference. Help me to understand this. the back-quotes are the right ones. If you use the single ones your password in the /etc
|
By
Rudolf J Streif
· #45189
·
|
|
problem adding a user
The ! for the password in /etc/shadow indicates that the account is disabled: sakura:!:18031:0:99999:7::: Either there is something wrong with the password generation or it gets disabled by something
The ! for the password in /etc/shadow indicates that the account is disabled: sakura:!:18031:0:99999:7::: Either there is something wrong with the password generation or it gets disabled by something
|
By
Rudolf J Streif
· #45191
·
|
|
problem adding a user
Instead of useradd -p `openssl passwd test` sakura which attempts to add the user and set the password which fails if the user already exists, use usermod -p `openssl passwd test` sakura which sets th
Instead of useradd -p `openssl passwd test` sakura which attempts to add the user and set the password which fails if the user already exists, use usermod -p `openssl passwd test` sakura which sets th
|
By
Rudolf J Streif
· #45194
·
|
|
problem adding a user
Glad to hear that it works now. I am planning on attending the YP DevDay. :rjs
Glad to hear that it works now. I am planning on attending the YP DevDay. :rjs
|
By
Rudolf J Streif
· #45198
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
I am trying to use the "official" RPi 7" touch display (https://www.raspberrypi.org/products/raspberry-pi-touch-display/) with meta-raspberrypi (most recent from master). However, I cannot get it to w
I am trying to use the "official" RPi 7" touch display (https://www.raspberrypi.org/products/raspberry-pi-touch-display/) with meta-raspberrypi (most recent from master). However, I cannot get it to w
|
By
Rudolf J Streif
· #45208
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thank you, Andrei. Much appreciated. https://pastebin.com/bHUHaRkL It's the config.txt that is packaged with the image. :rjs
Thank you, Andrei. Much appreciated. https://pastebin.com/bHUHaRkL It's the config.txt that is packaged with the image. :rjs
|
By
Rudolf J Streif
· #45213
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thank you, Paul. I did read Andrei's excellent documentation and enabled I2C and SPI etc. :rjs
Thank you, Paul. I did read Andrei's excellent documentation and enabled I2C and SPI etc. :rjs
|
By
Rudolf J Streif
· #45214
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
No, unfortunately not. HDMI works just fine but no video on the touch display.
No, unfortunately not. HDMI works just fine but no video on the touch display.
|
By
Rudolf J Streif
· #45216
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Thanks, Khem. 64 bit, raspberrypi3-64 machine with vc4graphics.
Thanks, Khem. 64 bit, raspberrypi3-64 machine with vc4graphics.
|
By
Rudolf J Streif
· #45225
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
I tried to build for 32 bit with: Build Configuration: BB_VERSION = "1.43.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "arm-poky-linux-gnueabi" MACHINE = "raspberrypi3" DIS
I tried to build for 32 bit with: Build Configuration: BB_VERSION = "1.43.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "universal" TARGET_SYS = "arm-poky-linux-gnueabi" MACHINE = "raspberrypi3" DIS
|
By
Rudolf J Streif
· #45228
·
|
|
[meta-raspberrypi] RPi 7" Touch Display
Khem, Yes, the 32-bit image (raspberrypi3 machine) works. :rjs
Khem, Yes, the 32-bit image (raspberrypi3 machine) works. :rjs
|
By
Rudolf J Streif
· #45243
·
|
|
problem adding a user
Greg, usermod does not work for the MD5 algorithm with the explicit password hash as it contains the $ field delimiters which are interpreted by the shell executing the usermod command. Use single quo
Greg, usermod does not work for the MD5 algorithm with the explicit password hash as it contains the $ field delimiters which are interpreted by the shell executing the usermod command. Use single quo
|
By
Rudolf J Streif
· #45253
·
|