ArmbianHelper changed the topic of #armbian to: armbian - Linux for ARM development boards | www.armbian.com | Github: github.com/armbian | Commits: #armbian-commits | Developer talk: #armbian-devel | Forum feed: #armbian-rss | Off-Topic: #armbian-offtopic | Logs: -> irc.armbian.com
<DC-IRC> <TGVoid> hey you can't retire yet
<DC-IRC> <TGVoid> I'm trying to figure out how to get gdm3 to work in headless mode b/c rn nothing will show up in nomachine unless the HDMI port on the sbc is occupied
<javabean> it is not uncommon to see hdmi "dummy plugs" used on servers... well "servers" because it depends on what hardware is used
<c0rnelius> why would u need gdm3 on a headless device?
archetech has quit [Quit: Leaving]
<mlu> the heaadless horseman does not need a hat
* mlu does imagine a cursed scenario of a headless server serving up gdm3 on some remote login thingy
<DC-IRC> <c0rnelius> I can't... sounds like a miss understanding somewhere.
<DC-IRC> <c0rnelius> misunderstanding* even
<mlu> gundam 3 :D
Dagger has quit [Ping timeout: 260 seconds]
<DC-IRC> <c0rnelius> I mean even if you needed the headless device to auto login there is no need for a graphical interface to achieve it.
<mlu> ut you can have a cursed setup :D
<DC-IRC> <c0rnelius> gonna assume I'm missing vital info.
<DC-IRC> <TGVoid> I mean without gdm3 how will I have a gui?
Dagger has joined #armbian
<DC-IRC> <c0rnelius> You said `I'm trying to figure out how to get gdm3 to work in headless mode` Thats an oxymoron. So you do need a head and trying to achieve auto-login?
<DC-IRC> <TGVoid> Does headless not mean w/o peripherals like a monitor?
<DC-IRC> <c0rnelius> headless means no monitor. basically.
<DC-IRC> <TGVoid> Yeah exactly
<DC-IRC> <c0rnelius> no display
<DC-IRC> <c0rnelius> so why would we need a graphical desktop manager for a headless device is what I am asking?
<DC-IRC> <TGVoid> I want to be able to remote into the SBC and have a GUI, just don't need it to output video via HDMI constantly
<DC-IRC> <c0rnelius> ah gotcha
jclsn has quit [Ping timeout: 256 seconds]
<DC-IRC> <c0rnelius> what DE are you trying to get loaded?
<DC-IRC> <c0rnelius> Whats the end game..? Is this some full blown DE or could say openbox with the some basic apps and whatnot be good enough?
jclsn has joined #armbian
<DC-IRC> <c0rnelius> So this is the basics of an autologin setup... no gui required here: https://unix.stackexchange.com/questions/401759/automatically-login-on-debian-9-2-1-command-line From there we can force a GUI to start and load whatever you want really. The easiest would be something like openbox as you can control what loads with OB in the autostart script.
Dagger has quit [Ping timeout: 265 seconds]
<DC-IRC> <c0rnelius> everything from gvfs to xfce backends... etc.
<DC-IRC> <c0rnelius> So I have a board that after boot, then logs in. I use a `.bash_profile` to push my agenda ```
<DC-IRC> <c0rnelius> source ~/.bashrc
<DC-IRC> <c0rnelius> export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
<DC-IRC> <c0rnelius> [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && startx
<DC-IRC> <c0rnelius> ```
<DC-IRC> <TGVoid> It's full on gnome
<DC-IRC> <c0rnelius> I then have the script run this: https://paste.debian.net/1280135/ which could just as easily start any service you wanted.
<DC-IRC> <c0rnelius> I see
<DC-IRC> <TGVoid> If the dummy HDMIs don't end up working, I'll try out your suggestions
<DC-IRC> <TGVoid> At this point I just want something working as quickly as possible lol
Dagger has joined #armbian
buzzmarshall has quit [Quit: Konversation terminated!]
marco44 has quit [Quit: ZNC 1.8.2+deb3+b4 - https://znc.in]
aasami_ has joined #armbian
junaid_ has joined #armbian
arch3r has quit [Quit: bye]
arch3r has joined #armbian
lemonzest has joined #armbian
junaid_ has quit [Remote host closed the connection]
lyri has quit [Ping timeout: 268 seconds]
lyri has joined #armbian
jantones has quit [Quit: Leaving]
lyri has quit [Read error: Connection reset by peer]
lyri has joined #armbian
danilogondolfo has joined #armbian
archetech has joined #armbian
<DC-IRC> <AlbertK> I have i2c code that access via the /dev/i2c-0 and it works in Raspberry Pi. I would like to know why it does not work in OrangePi 3 LTS bullseye. The code is written in golang
<DC-IRC> <AlbertK> ```package main
<DC-IRC> <AlbertK> import (
<DC-IRC> <AlbertK> "golang.org/x/exp/io/i2c"
<DC-IRC> <AlbertK> )
<DC-IRC> <AlbertK> func main() {
<DC-IRC> <AlbertK> d, err := i2c.Open(&i2c.Devfs{Dev: "/dev/i2c-0"}, 0x30)
<DC-IRC> <AlbertK> if err != nil {
<DC-IRC> <AlbertK> panic(err)
<DC-IRC> <AlbertK> }
<DC-IRC> <AlbertK> _ = d
<DC-IRC> <AlbertK> }```
<DC-IRC> <EfeCTN> Do you have a permission
<DC-IRC> <AlbertK> How do it give permission?
lyri has quit [Remote host closed the connection]
danilogondolfo has quit [Remote host closed the connection]
danilogondolfo has joined #armbian
alekksander has joined #armbian
archetech has quit [Quit: Konversation terminated!]
marco44 has joined #armbian
archetech has joined #armbian
<DC-IRC> <AlbertK> Thanks. One more question. Why is it in armbian without enabling the i2c0, there is already 3 i2c present (OrangePi 3 LTS).
<DC-IRC> <EfeCTN> You need to add/use overlays
<DC-IRC> <boz> Does a dtb editor exist these days or is it still modified through a text editor?
<archetech> edit then compile
aasami_ has quit [Quit: leaving]
hook has quit [Ping timeout: 268 seconds]
<DC-IRC> <Tenkawa> @TGVoid: if you are ssh forwarded or x11 into your session you should be able to use this
<DC-IRC> <Tenkawa> cat <<EOF > ~/.xsessionrc
<DC-IRC> <Tenkawa> export GNOME_SHELL_SESSION_MODE=ubuntu
<DC-IRC> <Tenkawa> export XDG_CURRENT_DESKTOP=ubuntu:GNOME
<DC-IRC> <Tenkawa> export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
<DC-IRC> <Tenkawa> EOF
<DC-IRC> <Tenkawa> put that into your users xsessionrc
<DC-IRC> <Tenkawa> (if ubuntu)... change ubuntu to debian paths if using debian based armbian
<DC-IRC> <Tenkawa> then startx should run gnome
<DC-IRC> <Tenkawa> (in theory.. I haven't used this in years... I prefer xfce... much lighter)
hook has joined #armbian
stipa_ has joined #armbian
stipa has quit [Ping timeout: 240 seconds]
stipa_ is now known as stipa
archetech has quit [Quit: Konversation terminated!]
<DC-IRC> <boz> Have there been any exciting armbian news lately? What is the current status on panfrost and lima?
alekksander has quit [Quit: Konversation terminated!]
wd has joined #armbian
<DC-IRC> <Tenkawa> on what hardware?
<DC-IRC> <Tenkawa> @boz
<DC-IRC> <boz> bananapi m5 or any other sbc based on the same cpu
<DC-IRC> <boz> @Tenkawa
key2 has joined #armbian
archetech has joined #armbian
<DC-IRC> <Jason123> @TGVoid try using like vnc or rdp
<DC-IRC> <Jason123> i used rdp on my raspberry pi zero and it works fine
marco44 has quit [Quit: ZNC 1.8.2+deb3.1 - https://znc.in]
marco44 has joined #armbian
<DC-IRC> <TGVoid> I gave up on VNC and RDP
danilogondolfo has quit [Remote host closed the connection]
<DC-IRC> <NicoD> @TGVoid If you want to do it headless then I advice to plug in a HDMI capture device. They can be bought for 10euro. I've got some setups that do work headless. But some just don't work. Like my old x86 pc with Armbian Jammy. So I've got an HDMI capture device plugged in for that. It's kind of a cheat. But it works...
archetech_ has joined #armbian
archetech has quit [Ping timeout: 240 seconds]
<DC-IRC> <boz> Has anyone tried finding a cheap KVM? All the devices listed on amazon aren't even KVMs they are just usb/hdmi switches but they are all labeled as kvms ...
<DC-IRC> <IgorPec> i have https://amzn.to/3o13dED + hdmi grabber / pikvm
<DC-IRC> <Fabricioguzzy> Hello Every1 - I am looking for instructions on how to install the latest distro available for my "Orange Pi Plus 2" - I got the pre-compiled version of armbian from the web site but that doesn't work fine. USB ports were not detected. Actually, most of the new distros/images cause the same issue (USB doesn't work) - Can anybody help on this matter, plz? Thanks Much!
<DC-IRC> <Fabricioguzzy> This is my Orange pi board
<DC-IRC> <Fabricioguzzy> and was trying to use the images I got from here --> https://www.armbian.com/orange-pi-plus-2/
zeemate has joined #armbian
<stipa> have you tried any of Rolling releases on the bottom of the page ?
Herc has quit [Remote host closed the connection]
key2 has quit [Quit: Connection closed for inactivity]
Herc has joined #armbian
Herc has quit [Remote host closed the connection]
Herc has joined #armbian
archetech_ has quit [Quit: Leaving]
archetech has joined #armbian