How we can find out if all the required packages are installed in ubuntu or not?

|
smol_mazunki 2022-08-08 00:32:20
linux2014 2022-08-07 23:42:36
hi i drop mysql database in server
how to restore it ?

you restore a backup

linux2014 2022-08-08 00:32:41
how?
Leon 2022-08-08 00:37:25
anyone here works with qt?
Leon 2022-08-08 00:39:01
I’m getting this error when running webbrowser.open(userPath) from my Python application
But it works normally in my venv

qt.qpa.plugin: Could not find the Qt platform plugin “xcb” in “”
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

djdisodo1 2022-08-08 03:14:47
what the most simple way i can get that receives bytes from stdin and hosts on http server
djdisodo1 2022-08-08 03:16:30
https://stackoverflow.com/questions/16640054/minimal-web-server-using-netcat

Minimal web server using netcatStack Overflow
I’m trying to set up a minimal web server using netcat (nc). When the browser calls up localhost:1500, for instance, it should show the result of a function (date in the example below, but eventual…
djdisodo1 2022-08-08 03:16:38
bruh it’s kinda ridiculous tho
ddhossein 2022-08-08 05:19:15
cryptodanvr 2022-08-07 22:32:16
Does anyone have experience with netplan?

yeah, whats up

alexmb7 2022-08-08 11:19:52
Tara_UID 2022-08-07 10:22:25
Hi
I have a question but I couldn’t find the answer in google.
How we can find out if all the required packages are installed in ubuntu or not?
Like when in I install unubtu for the first time yesterday, I use sudo apt update and also sudo apt upgrade to install packages but I think still some packages hadn’t installed yet.

apt-cache search .terms.
and
apt-cache show .pkg.

there will be many packages that arent installed

alexmb7 2022-08-08 11:20:33
djdisodo1 2022-08-08 03:14:47
what the most simple way i can get that receives bytes from stdin and hosts on http server

u try ?
i did many simple httpds
i wont recommend nc at all

djdisodo1 2022-08-08 11:20:52
alexmb7 2022-08-08 11:20:33
u try ?
i did many simple httpds
i wont recommend nc at all

i need to go really lowlevel

djdisodo1 2022-08-08 11:21:02
because what i am trying to host isn’t a file
alexmb7 2022-08-08 11:21:06
u need to parse, till two newlines
then process with the code
alexmb7 2022-08-08 11:21:25
djdisodo1 2022-08-08 11:20:52
i need to go really lowlevel

i did many i can help

alexmb7 2022-08-08 11:21:32
explain what u wanna host
alexmb7 2022-08-08 11:21:38
an interactive page ?
djdisodo1 2022-08-08 11:21:41
i want to host a ffmpeg output
djdisodo1 2022-08-08 11:21:47
as a seemingly mp4 file
alexmb7 2022-08-08 11:21:54
okk thats easy
alexmb7 2022-08-08 11:22:03
thats a httpd + cmds to exec per url say
djdisodo1 2022-08-08 11:22:05
but it needs to be streamable
djdisodo1 2022-08-08 11:22:13
with dlna
alexmb7 2022-08-08 11:22:14
i dunno those ffmpeg opts
alexmb7 2022-08-08 11:22:20
no idea dlna
djdisodo1 2022-08-08 11:22:27
so i can host my pc’s screen with dlna
alexmb7 2022-08-08 11:22:40
no idea mate
djdisodo1 2022-08-08 11:22:43
dlna is fine it just requires http video link that’s streamable
djdisodo1 2022-08-08 11:22:50
like streaming http link in vlc
alexmb7 2022-08-08 11:22:52
dlna or dnla or whatever plus streaming opts i dunno
alexmb7 2022-08-08 11:23:02
djdisodo1 2022-08-08 11:22:50
like streaming http link in vlc

that may also do http

alexmb7 2022-08-08 11:23:11
instead of this dlna
alexmb7 2022-08-08 11:23:27
id say it will do
djdisodo1 2022-08-08 11:23:30
dlna uses http
alexmb7 2022-08-08 11:23:30
a simple httpd
alexmb7 2022-08-08 11:23:37
when accessed sends ffmpeg
|