libera/#devuan/ Thursday, 2024-03-07

Guest44Hi, does the devuan installer have options to install no desktop environment at all? I assume it would, considering the debian net installer does, but had to check in here first before considering switching to devuan. Thanks in advance if anyone answers my question (:10:58
gnarfaceGuest44: yes, as long as you use the right one. there's several installers, just don't use the live iso, i think the others should give you options11:02
Guest44gnarface: thanks!11:03
gnarfaceno problem11:04
gnarfacejust to be clear, the devuan netinstaller is actually based on the debian one11:05
gnarfaceit should look very familiar to you11:05
Guest44Awesome, good to know.11:05
sfoxgnarface, i thought you would be interested to know,19:53
sfoxthere are two ways to do remote Xserver. One is to configure X to listen on inet6, generate a magic copy and copy it over. then you can run programs remotely from another system by editing the DISPLAY envvar19:54
sfoxthe other seemingly more fleshed out way is to configure XDMCP on the system you want to be used remotely (opposite of the machine running the Xserver) and then configure your thinclients to start X with X :1 -query bigcomputer.lan19:55
sfoxIt is actually suprisingly fast, to the point it was running my gecko based web brower on a thinclient and I couldn't tell the graphics were being done over the network19:56
sfoxwith a gigabit link19:56
sfoxI'm trying to setup an NFS server, but portmap is missing it's config file and init script22:05
sfoxhttps://wiki.debian.org/NFSServerSetup22:05
sfoxis this guide still up to date?22:06
sfox /etc/default/portmap and /etc/init.d/portmap are missing22:06
plasma41sfox: Given that portmap is now a virtual package provided by rpcbind, I'd say that guide is at least somewhat out of date.22:14
sfoxis there better documentation that you know of for setting up nfs?22:17
plasma41sfox: Sorry, no. I've not personally used NFS. Someone else might know more.22:18
sfoxok22:19
rrqsfox: after installing nfs-kernel-server there's good info in "man nfs"22:20
plasma41sfox: Please do update that wiki page if you are able to figure out how to make it work.22:21
rrq... and "man exportfs" has words on additional admin hands-on22:28
rwpI just last week powered down my Stretch NFS server.  I'll power it back up and look at how it /was/ configured for you.22:29
rrqthough mostly it's just set up in the /etc/exports file plus perhaps some firewalling to shield it a bit22:30
sfoxnevermind i think i got it22:32
rwpThe init script /etc/init.d/nfs-kernel-server is what starts everything at boot time.  It has been included in the nfs-kernel-server package.22:32
sfoxthe problem was when i first started nfs-kernel-server it didn't start helper daemons because there were no exports yet22:32
sfoxi set an export and service nfs-kernel-server reload22:32
sfoxthis had a nonzero exist status but did not start the nfs helper daemons like mountd22:32
sfoxit's just a weird edge case22:32
rwpYes.  Something needs to be configured in /etc/exports first.22:33
sfoxi did service nfs-kernel-server restart and was able to mount on my laptop22:33
rwpI was worried that they had removed the init script from the package.  There is a lot of that going around.  And then it must get added to the orphaned init script package.22:33
rwpIt's good to see that is has not been removed yet.  (I just checked for myself.  Though I know you already said that.)22:35
sfoxyeah that's what i was worried about too22:36
sfoxbut yay now i can listen to my music on my laptop and share it with my roomates22:36
sfoxshould work for movies too22:36
sfoxI have it allowing my ipv6 GUA address so it shouldn't be routable to the internet22:39
sfoxonly within my site22:39
rwpNFS works well.  But do remember to umount the mount point before removing your laptop from the LAN and taking it elsewhere or it will resume without connection to a file system mount point and that will appear as an error to the kernel.22:39
sfoxthanks for the help22:39
sfoxoh22:39
rwpIf that happens use the -l,--lazy umount option.  That should allow it to be unmounted.  Pretty sure.  I think.22:40
sfoxcould Mobile-IPv6 help with that? Is there a guide for setting that up?22:40
rwpThis has no relation to IPv4/IPv6 differences.  It's purely a matter of the kernel thinking that one of it's disk drives has departed the universe.22:40
rwpIf you are never writing to the mount point then mounting it ro read-only is somewhat better because then there can never be dirty pages queued to write to the mount point.  Usually always unmounts cleanly then.22:42
sfoxIPv6 has a feature called Mobile-ipv6 which allows you to retain your IP address and connectivity when roaming to a foreign network22:42
sfoxthis should solve that problem right?22:42
rwpI would never use NFS over the Internet though.  It's really meant as a LAN thing.  Though I am sure someone will mention that NFSv4 using TCP is better about this.22:43
sfoxis it using UDP by default?22:43
rwpThat depends upon the version of NFS.  So, it depends.  And it depends upon the setup.22:43
rwpAlso all network files systems suffer from high latency.  And over the Internet all file systems suffer, suffer, suffer from the latency that is not there on a LAN.22:44
rwpOver the Internet I suggest using sshfs instead.  And since that is a userland fusermount program (nfs is in the kernel) it means you can always kill and restart it and no problems.22:44
sfoxokay.22:45
sfoxit just sucks I have to do something differently depending on where I am22:45
rwpIf you were using sshfs over mobile-ipv6 and maintained the same addresses so the tcp connection persisted then I could see that working while roaming.22:45
rwpAlso if you used a VPN to use a persistent IP address connection then I could see that working while roaming too.22:45
rwpTry sshfs and see how it works for you.  Then if you want to do it while roaming from home to remote and back I myself would use a VPN but that's a whole another layer of stuff to understand.22:47
rwpNFS is the highest performing network file system on the LAN though and that is why everyone needing high performance computing is using it rather than other things.  But honestly sshfs is pretty good for just one person doing things like playing movies and such.22:48
rwpNFS client is in the kernel and the in-kernel client is well known to sometimes get wedged and stuck in such a way that the only way to resolve the problem is to reboot.  It's due to when things change on the NFS server side.  That one very small detail is almost the entire reason people love to hate upon NFS.  Because things can get into a state that umount'ing does not work to clear the error and one must reboot.22:50
rrqis the 'soft' mount option any good against that?22:53
rwp"soft" has the problem of silent data corruption.22:56
rwpThis has some good description of the tradeoffs for soft: https://kb.netapp.com/onprem/ontap/da/NAS/What_are_the_differences_between_hard_mount_and_soft_mount22:58
rwpI would say never use the soft mount option.  But never for me might be a use case for someone.  I won't say never.  But I can't imagine a situation where I would want to use "soft".  Though I am sure there is a use case somewhere.  I just can't imagine I would ever want to do it.22:59
rwpAnd when I say silent data corruption it is not that I have read it from the bullet point of the marketing.  I have seen people try to use soft and then we actually did have silent data corruption.  People are always experimenting to try to improve performance or to fix some problem.  And I say gaining the experience of actually trying things is a good thing.23:01
rwpBut the result was silent data corruption.  It's a real thing.  And in my experience almost 100% likely to occur when "soft" is in use and things get busy.  So I would never use it.23:01
rwpI should mention explicitly that I would use "intr" to make things interruptible.  That's definitely a good thing.23:07
sfoxlibgtk2-perl was removed from Debian. Is there another place I can obtain it?23:15
fsmithredsfox, if libgtk3-perl won't work then I guess you can get it from oldstable.23:17
fsmithredor old-oldstable23:18
sfox gmusicbrowser : Depends: libgtk2-perl but it is not installable23:19
sfoxI don't want gtk3, it's broken and horrible.23:19
sfoxfsmithred, how would i do that?23:19
fsmithredgo to packages.debian.org and download all the debs you need. If you still have a beowulf installation you could 'apt download' them23:20
sfoxi found this23:21
sfoxhttps://pkginfo.devuan.org/cgi-bin/package-query.html?c=package&q=libgtk2-perl=2:1.24992-1+b223:21
sfoxcan I just install the version from beowulf on daedalus?23:21
fsmithredyou can try.23:22
fsmithredIt may or may not work.23:22
sfoxyeah it breaks apt23:32
sfoxi'm going to try building gmusicbrowser from source and installing Gtk2::TrayIcon from cpan23:33
rwplibgtk2-perl remove ticket https://bugs.debian.org/98610923:36
sfoxthere's no software to replace it23:48
sfoxwhy should the GNOME team be allowed to sabotage other people's installations?23:52
sfox" GNOME team's goal of reducing gtk2 use in Debian"23:52
sfoxcpan force install Gtk2::TrayIcon works23:56

Generated by irclog2html.py 2.17.0 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!