/srv/irclogs.ubuntu.com/2019/02/19/#ubuntu-server.txt

Bluekingtomreyn: now I got 10 gbit link switch and fileserver :)00:01
tomreyni am happy for you.00:01
=== gry is now known as Sveta
Marzi have been running a debian server for the last month. 1st time03:16
Marzthink i will switch to ubuntu. everything from debian should also work in ubuntu right?03:17
Marzdebian stuff seems really old and i read they don't update apps for years03:18
tomreyn!latest03:18
ubottuPackages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa.03:18
Marzso ubuntu does the same thing?03:19
tomreynyes, for the very most part, stability is preferred over adding new features within a release, too.03:21
tomreynof course, you can do release upgrades, thus get newer versions.03:21
tomreynon a server, stability is usually very relevant.03:22
tomreynyou don't want this business critical web application to fail because a minor backwards incompatible change to the webserver was introduced in its newer version.03:23
Marzi see. I am just using it for media. better to just leave it the way it is then03:27
=== lotuspsychje__ is now known as lotuspsychje
lordievaderGood morning07:10
dpawlikbeisner, coreycb: hi. Im wondering why sometimes I have a failures on my dev zone with e.g. multiattach and I see that package for Queens cloud archive and Bionic as well are old. Last available packages there is 9.1.1 but as I see https://releases.openstack.org/queens/ it should be 10.1.0. Could you build new package or it will be a problem :> ?08:42
coreycbdpawlik: it's very unusual for upstream (and ubuntu as well) to jump to a new major release for a stable branch. i found some history on the upstream change: https://github.com/openstack/requirements/commit/66a2b0617c3eacd21726c35a556c2a2620a4b91b12:49
sarnoldcoreycb: he probably didn't see your reply12:51
sarnoldcoreycb: (also isn't the cloud archive pulling in new openstacks periodically as part of what it is?)12:51
coreycbsarnold: ah thanks :)12:51
coreycbsarnold: yes, but similar to stable ubuntu releases, we generally just try to just do bug fixes to maintain stability12:53
coreycbsarnold: but yes to your point we have new releases coming out every 6 months12:54
sarnoldheh, this suggests we shold already have stein in cloud archive.. https://wiki.ubuntu.com/OpenStack/CloudArchive12:57
muhahaCan anyone help me with flatpak and ubuntu server ? I did: apt install -y --no-install-recommends lightdm flatpak xorg If I run export DISPLAY=:0 ; flatpak run tv.kodi.Kodi ... its says Invalid MIT-MAGIC-COOKIE-1 keyxcb_connection_has_error() returned true. Its related to x11 auth,right?13:14
Odd_Blokemuhaha: Yes, I believe you need to do something with xauth, but it's been a long time since I did something like this so I can't remember any other details.13:15
sarnolddid you use ssh -X to ocnnect?13:24
muhahaWhat I did https://pastebin.com/GcPp2drE13:37
muhahaI am getting now No protocol specified xcb_connection_has_error() returned true13:38
sarnolddid you connect to your server using ssh -X? or just ssh?13:38
muhahassh13:38
muhahaI dont need to forward X1113:39
lordievaderDoesn't Kodi need X?13:39
muhahaIt does13:40
Odd_Blokemuhaha: What are you trying to achieve, I think there's some confusion. :)13:40
muhahaOn server A which has GPU and HDMI output install xorg and run kodi in flatpak13:41
Odd_BlokeAnd have it output on the screen attached to the GPU?13:41
muhahaexactly13:41
lordievaderAh, is xorg running on that display?13:42
muhahayes. ps -ef | grep [x]org          root      1595   614  0 02:05 tty7     00:00:00 /usr/lib/xorg/Xorg :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch13:42
lordievaderEssentially you need to direct Kodie to the right display via `DISPLAY=:<some-display> flatpak run tv.kodi.Kodi`.13:43
muhaha14:37 <muhaha> What I did https://pastebin.com/GcPp2drE13:44
sarnoldI think you may be able to get the rest of the way with XAUTHORITY=/path/to/.Xauthority13:44
muhahabut its running under root13:47
muhaha*present13:47
muhahaSo I will have to generate Xauthority for kodi user, right ?13:48
muhahabut xhost + kodi should help, right?13:49
sarnoldor set the root file to be readable by kodi13:50
muhahaxhost +si:localuser:kodi should do the trick I guess13:54
=== cpaelzer_ is now known as cpaelzer
muhahaWell I created question... https://superuser.com/questions/1407474/run-kodi-on-ubuntu-bionic-server-with-flatpak18:41
muhahaLulz18:41
=== gry is now known as Sveta
DammitJimI'm trying to install a particular version of a package, but it seems to be tied to other dependencies that want to install the latest version of the packages21:00
DammitJimis there a way to tell Ubuntu to install all these packages for this 1 version so that it doesn't complain?21:00
lordcirth__DammitJim, not sure what you mean. Perhaps doing an 'apt update' will fix the problem?21:02
DammitJimI already did apt update21:02
DammitJimso, if I was to run apt dist-upgrade, all my erlang packages would upgrade to version 21.221:03
DammitJimI am trying to only go to version 21.121:03
lordcirth__erlang? Normally when people use a programming language, and need a very specific version, there is language-specific tooling for that.21:04
lordcirth__eg python virtualenvs, haskell stack, etc21:04
tomreynlooks like you have third party sources which ship upgrades instead of security / bufg fixes21:05
tomreynif you insist on using them and are happy with software getting outdated and *not patched*, you can do apt pinning21:06
tomreynDammitJim: ^21:07
DammitJimI tried using apt-mark hold erlang but that messed me up21:07
DammitJimit caused other packages to get uninstalled21:07
tomreynthat can happen21:09
DammitJimcan I pin erlang* to a specific version?21:17
tomreynthis and it's dependencies which come from this 3rd party repo, yes21:21
DammitJimgot it21:28
DammitJimthanks21:28
tomreynthe better approach would be to find a trustable and reliable apt source which gives you maintained (regularly patched) static upstream versions, maybe making multiple versions installable next to one another.21:32
tomreynbut idk whether such exists for erlang. you could mabe provide it as a service to the community.21:33
DammitJimyeah, they don't have that21:37
DammitJimthis is temporary21:37
DammitJimI just need to get to a certain version to be "supported"21:37
tomreynthis sounds like a chroot or VM use case21:41
tomreyn* or container21:41

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!