People who Joins , Parts or Quits a chatroom
this is #debian an IRC -Channel at freenode (freenode IRC service closed 2021-06-01)
0 [00:01:27] *** Quits: _aeris_ (~aeris@replaced-ip ) (Remote host closed the connection)
1 [00:01:42] *** Joins: _aeris_ (~aeris@replaced-ip )
2 [00:02:14] *** Joins: shibboleth (~shibbolet@replaced-ip )
3 [00:04:40] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
4 [00:06:29] *** Quits: ddsys (~ddsys@replaced-ip ) (Quit: Leaving)
5 [00:09:15] *** Joins: brizz (~brizz@replaced-ip )
6 [00:10:34] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 252 seconds)
7 [00:10:54] <jelly> _Vi, so does installing gcc-multilib make things better (or at least different)?
8 [00:11:18] <_Vi> It requests to remove other cross-compilation related packages.
9 [00:11:19] <brizz> i am deleting a large amount of files (millions) and it is slowing everything down even though cpu and memory are available (cpu is hardly used)--is there something I can do to make OS more snappy when this happens? i am thinking of some setting for open files but I dont know if that is right
10 [00:11:52] <jelly> that counts as different :-)
11 [00:12:37] <jelly> brizz, how are you deleting them specifically
12 [00:12:49] <brizz> os is behaving really weird. have spurts of not being able to do anything (like type this sentence), but CPU is real low
13 [00:13:08] <brizz> rm -rf *
14 [00:13:39] <_Vi> brizz, Maybe something like `find ... -print0 | pv -L1k -q | xargs -0 rm` can help?
15 [00:14:07] *** Quits: NetTerminalGene (~Thunderbi@replaced-ip ) (Quit: NetTerminalGene)
16 [00:14:26] <_Vi> (you can adjust removal speed using `pv -R`. Also you'll need `-depth` in `find` probably)
17 [00:15:11] <jelly> brizz, so a single-thread app. that shouldn't make the user interface sluggish. Is the storage usb connected?
18 [00:15:35] <brizz> no not usb
19 [00:15:44] <brizz> it is software raid tho
20 [00:15:56] <jelly> how much RAM do you have?
21 [00:16:01] <brizz> 32 GB
22 [00:16:07] <jelly> hmm
23 [00:16:43] <jelly> brizz, what does "cat /proc/sys/vm/dirty_background_ratio" say
24 [00:16:43] <brizz> so there is a faster rm command?
25 [00:16:53] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 240 seconds)
26 [00:16:58] <jelly> yes but that's less important
27 [00:17:02] <brizz> i ctrl+c out of the rm process so i could talk in here
28 [00:17:04] <_Vi> Does files removal even produce dirty pages?
29 [00:17:18] <jelly> it shoudn't produce very many
30 [00:17:47] <brizz> 80
31 [00:17:54] <jelly> but writing to disk does, yes, and writing metadata is still writing
32 [00:17:56] <_Vi> "but CPU is real low" -> Is it iowait or something else?
33 [00:17:58] <jelly> 80, wtf
34 [00:18:01] *** debhelper sets mode: +l 986
35 [00:18:26] <jelly> brizz, set it so something like 2
36 [00:19:33] <brizz> how?
37 [00:19:42] <jelly> 2% of 32GB is still 640MB which is quite enough to start writing it down
38 [00:19:47] <brizz> files are done deleting
39 [00:19:55] <brizz> in future tho
40 [00:20:02] <brizz> would be curious because this will happen again
41 [00:20:44] <jelly> brizz, a permanent setting, edit a file named like /etc/sysctl.d/local.conf and put a line with "vm.dirty_background_ratio = 2" in there
42 [00:21:16] <jhutchins> brizz: A lot of the load when deleting lots of files is handled by the controller and the hardware on the drive, so it doesn't show up in programs like top.
43 [00:22:48] *** Quits: dob1_ (~dob1@replaced-ip ) (Quit: quit)
44 [00:23:05] <jelly> brizz, if it's raid5 or raid6 perhaps you just have slow writes anyway, and doing random small writes (which is really what deleting files does) is the worst case scenario
45 [00:23:11] *** Joins: dob1 (~dob1@replaced-ip )
46 [00:23:47] *** Quits: tagomago (~tagomago@replaced-ip ) (Remote host closed the connection)
47 [00:24:20] <brizz> its raid 1
48 [00:24:39] <jelly> even with a fast disk, ext4 can't really delete more than a thousand or few thousand files per second
49 [00:25:40] <jelly> that said. the fastest way to wipe contents of a whole directory isn't rm -r, or find, but rsync -r --delete /emptydir /path/to/clean/up
50 [00:25:50] *** Joins: cliluw (~cliluw@replaced-ip )
51 [00:26:48] <jelly> sorry
52 [00:27:05] <jelly> make that: rsync -r --delete /emptydir/ /path/to/clean/up
53 [00:27:24] <oxek> really?
54 [00:27:26] <oxek> why?
55 [00:27:30] *** Joins: sioux_ (~udonknow@replaced-ip )
56 [00:28:01] <jelly> rsync source of .../foo copies the directory. Source of .../foo/ copies jsut the contents
57 [00:28:44] <oxek> sorry, I meant how come rsync would be faster than rm or find -delete?
58 [00:28:45] <sioux_> Hi everyone, i have this script replaced-url
59 [00:28:52] *** Joins: kop316 (~kop316@replaced-ip )
60 [00:29:12] *** Quits: kop316 (~kop316@replaced-ip ) (Client Quit)
61 [00:29:34] <jelly> so if you often rsync contents of two dirs you can just remember to always put / at the end instead of remembering actual syntax and why
62 [00:29:41] <greycat> if your script fails to change directory, that is a MASSIVELY fatal error and you need to abort immediately, and definitely NOT hide the error message, or else the user will not know why it's not working
63 [00:29:48] <oxek> sioux_: can you upload it someplace that does not require javascript to read?
64 [00:30:00] <sioux_> yeah sorry
65 [00:30:24] *** Joins: stree (~stree@replaced-ip )
66 [00:30:28] <jelly> DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
67 [00:30:59] <greycat> Horrible and fatally flawed.
68 [00:31:01] <jelly> I'm not even going to wait for greycat's barrage of bash pitfall URLs!
69 [00:31:14] <sioux_> oxek, here replaced-url
70 [00:33:23] <jelly> is that supposed to be part of some hook, why does it try to rely on where it's called from?
71 [00:33:25] <greycat> The one good thing in ... that ... is you checked the exit status of cd. If it fails, you'll end up with an empty string.
72 [00:33:26] *** Joins: bryceml (~bryceml@replaced-ip )
73 [00:33:39] *** Quits: haijuno (~haijuno@replaced-ip ) (Quit: Leaving)
74 [00:33:54] <greycat> by "that" I mean the thing jelly wrote
75 [00:34:04] <greycat> I'm not even going to look at the others
76 [00:34:06] *** Quits: monkwitdafunk (~user1@replaced-ip ) (Remote host closed the connection)
77 [00:34:09] *** Guest48036 is now known as CrazEd
78 [00:34:18] <jelly> well you can read the whole things now if you want to :-)
79 [00:34:26] <greycat> I really do not :-/
80 [00:34:39] *** CrazEd is now known as Guest61939
81 [00:34:55] <greycat> if it were #bash I'd just trigger !faq location and then /ignore the guy asking for it, because never ever not even once in the history of #bash has this NOT led to me screaming
82 [00:35:33] <greycat> but it's late, so I'll just go away instead
83 [00:35:35] *** Quits: greycat (~greg@replaced-ip ) (Quit: Bye)
84 [00:36:23] *** Quits: debsan (~debsan@replaced-ip ) (Ping timeout: 260 seconds)
85 [00:37:01] *** Quits: noboruma (~noboruma@replaced-ip ) (Remote host closed the connection)
86 [00:38:41] <jelly> sioux_, also, where does this error message happen exactly, did you try running it with set -x ?
87 [00:38:43] <sioux_> jelly, no it's not a hook, i just trying to change git remote of diferent services, so i have a lot directory with differente git remote. I have some services that i didn't clone and in this moment don't have importance
88 [00:38:59] <sioux_> greycat: why this is so bad?
89 [00:39:10] <jelly> he's gone for the day
90 [00:39:15] *** Joins: disi (6b837f00@replaced-ip )
91 [00:39:18] <sioux_> yeah, see now, sorry
92 [00:39:46] <sioux_> jelly, why this is so bad?
93 [00:40:09] <jelly> I'm not the resident bash expert, sorry
94 [00:40:33] <sioux_> jelly, i will try set -x
95 [00:40:46] *** Quits: w-oertl (~wolfgang@replaced-ip ) (Ping timeout: 240 seconds)
96 [00:42:11] <mutante> sioux_: he is saying you should first test if the directory exists before you try to change to it. if it doesn't exist tell the user "oops, cant find that" and exit
97 [00:42:24] <mutante> as opposed to hiding an error
98 [00:42:40] <sioux_> jelly, -x it's debug.. but the problem is, i know that i have some directories that i don't have. I filter service from a big docker-compose file..and i don't need all git repository that there are
99 [00:43:03] <jelly> I just recognized an instance of replaced-url
100 [00:43:03] *** Quits: sbraz (~sbraz@replaced-ip##) (Quit: ZNC - ##replaced-url
101 [00:43:26] <mutante> sioux_: "how to check if directory exists in a bash script"
102 [00:43:28] <sioux_> mutante, hum.. so i do another if, inside existing if?
103 [00:43:41] <sioux_> mutante, hm..ok
104 [00:43:57] <mutante> sioux_: I would say you do it as the very first thing, before the "cd" part
105 [00:44:36] <jelly> sioux_, yes, -x is debug, I want to see which command outputs the error, to suggest a way to avoid it
106 [00:44:55] *** Joins: sbraz (~sbraz@replaced-ip )
107 [00:45:18] <sioux_> mutante, onde cd that i have, exist..the error show inside [[ -d DIR ]], and not exist, throws error
108 [00:45:28] <sioux_> jelly, fine
109 [00:47:10] <mutante> sioux_: ah, yes, so you are already doing this in line 12, [[ -d DIR ]], correct. but you are not doing it before you are using "cd" on line 3. I don't understand why it is "DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"" though, seems a really complicated way to just set the current directory
110 [00:47:52] *** Joins: Spawns_Carpeting (~pi@replaced-ip )
111 [00:48:21] <sioux_> i found the error, it's on git -C
112 [00:48:28] *** Quits: bryceml (~bryceml@replaced-ip ) (Quit: WeeChat 3.0)
113 [00:48:56] <jelly> and now you know why set -x is cool
114 [00:49:07] <sioux_> jelly, yeah =) thanks
115 [00:49:21] <jelly> and you can move the -d test before that
116 [00:50:28] <sioux_> mutante, it's complicate but, we a big team, so somebody can execute the script in home directory, so the script will get the source, because in there, have a docker-file too.. but thanks so mucht to expend time to response =)
117 [00:52:10] *** Quits: sbraz (~sbraz@replaced-ip##) (Quit: ZNC - ##replaced-url
118 [00:52:13] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 240 seconds)
119 [00:53:11] *** Joins: cliluw (~cliluw@replaced-ip )
120 [00:53:48] *** Joins: sbraz (~sbraz@replaced-ip )
121 [00:54:27] *** Joins: debsan (~debsan@replaced-ip )
122 [00:55:13] *** Quits: xet7 (~xet7@replaced-ip ) (Remote host closed the connection)
123 [00:56:21] *** Joins: xet7 (~xet7@replaced-ip )
124 [01:00:11] *** Quits: iridos (~iridos@replaced-ip ) (Ping timeout: 260 seconds)
125 [01:00:12] *** Quits: nitefall (~thewellin@replaced-ip ) (Quit: nitefall)
126 [01:02:13] *** Joins: centrx (~centrx@replaced-ip )
127 [01:02:43] *** Quits: sioux_ (~udonknow@replaced-ip ) (Quit: Leaving)
128 [01:02:43] *** Quits: hyskaru (~hyskaru@replaced-ip ) (Quit: hyskaru)
129 [01:02:53] *** Quits: ValeraRozuvan (~ValeraRoz@replaced-ip ) (Ping timeout: 240 seconds)
130 [01:03:33] *** Quits: Scotty_Trees (~Scotty_Tr@replaced-ip ) (Quit: Leaving)
131 [01:05:33] *** Quits: Poster (~poster@replaced-ip ) (Ping timeout: 246 seconds)
132 [01:05:44] *** Joins: monkwitdafunk (~user1@replaced-ip )
133 [01:07:14] *** Quits: Mister00X (~quassel@replaced-ip ) (Quit: "I'll be back" — Arnold Schwarzenegger)
134 [01:07:17] *** Joins: bryceml (~bryceml@replaced-ip )
135 [01:08:01] *** debhelper sets mode: +l 980
136 [01:08:44] *** Joins: ValeraRozuvan (~ValeraRoz@replaced-ip )
137 [01:09:11] *** Quits: Haudegen (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
138 [01:09:47] *** Quits: nickshanks (~nick@replaced-ip##) (Quit: ZNC 1.7.5+deb4 - ##replaced-url
139 [01:10:35] *** Joins: nickshanks (~nick@replaced-ip )
140 [01:11:26] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
141 [01:11:42] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 240 seconds)
142 [01:13:31] *** Joins: Poster (~poster@replaced-ip )
143 [01:13:34] *** Joins: cliluw (~cliluw@replaced-ip )
144 [01:13:39] *** Joins: format_c (~format_c@replaced-ip )
145 [01:13:45] *** Quits: ValeraRozuvan (~ValeraRoz@replaced-ip ) (Remote host closed the connection)
146 [01:13:55] *** Joins: ValeraRozuvan (~ValeraRoz@replaced-ip )
147 [01:14:22] *** Quits: ceska (~Cieska@replaced-ip ) (Ping timeout: 252 seconds)
148 [01:14:30] *** Quits: igrtrrt (~igrtrrt@replaced-ip ) (Quit: igrtrrt)
149 [01:20:20] *** Quits: bryceml (~bryceml@replaced-ip ) (Quit: WeeChat 3.0)
150 [01:22:22] *** Joins: bryceml (~bryceml@replaced-ip )
151 [01:22:56] *** Quits: konrados (~konrados@replaced-ip ) (Remote host closed the connection)
152 [01:23:37] *** Joins: konrados (~konrados@replaced-ip )
153 [01:24:27] *** Joins: auk (auk@replaced-ip )
154 [01:24:41] *** Quits: shibboleth (~shibbolet@replaced-ip ) (Quit: shibboleth)
155 [01:25:53] *** Quits: fearnothing (~fearnothi@replaced-ip ) (Ping timeout: 240 seconds)
156 [01:29:57] *** Quits: riff_IRC (~riff2@replaced-ip ) (Quit: PROTO-IRC v0.73a (C) 1988 NetSoft - Built on 11-13-1988 on AT&T System V)
157 [01:29:59] *** Quits: FnorZ (~FnorZ@replaced-ip ) (Ping timeout: 245 seconds)
158 [01:30:27] *** Joins: riff-IRC (~riff2@replaced-ip )
159 [01:31:24] *** Quits: Haxxa (~Haxxa@replaced-ip ) (Quit: Haxxa flies away.)
160 [01:31:45] *** Quits: huhuhu (~huhuhu@replaced-ip ) (Quit: Leaving)
161 [01:32:31] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Ping timeout: 252 seconds)
162 [01:32:42] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 240 seconds)
163 [01:33:18] *** Joins: cliluw (~cliluw@replaced-ip )
164 [01:33:43] *** Joins: peterandre (peterandre@replaced-ip )
165 [01:34:18] *** Quits: Tom01 (~tom@replaced-ip ) (Remote host closed the connection)
166 [01:34:49] *** Guest61939 is now known as CrazEd
167 [01:35:20] *** CrazEd is now known as Guest80223
168 [01:37:04] *** Joins: ssiyad (ssiyad@replaced-ip )
169 [01:38:11] *** Quits: ValeraRozuvan (~ValeraRoz@replaced-ip ) (Remote host closed the connection)
170 [01:38:12] *** Joins: valera_ (~ValeraRoz@replaced-ip )
171 [01:38:32] *** Joins: peebowo (~u0_a200@replaced-ip )
172 [01:39:16] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
173 [01:40:22] *** Joins: Tom01 (~tom@replaced-ip )
174 [01:41:07] *** Quits: peebowo (~u0_a200@replaced-ip ) (Client Quit)
175 [01:43:02] *** Quits: Tom01 (~tom@replaced-ip ) (Remote host closed the connection)
176 [01:43:38] *** Quits: ph|ber (~cking@replaced-ip ) (Quit: leaving)
177 [01:44:45] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 246 seconds)
178 [01:45:34] *** Joins: _aeris (~aeris@replaced-ip )
179 [01:45:53] *** Joins: ddsys (~ddsys@replaced-ip )
180 [01:46:05] *** Joins: sinaowolabi (~Sina@replaced-ip )
181 [01:48:06] *** Quits: luuuciano__ (~luuuciano@replaced-ip ) (Ping timeout: 240 seconds)
182 [01:49:21] *** Quits: bryceml (~bryceml@replaced-ip ) (Quit: WeeChat 3.0)
183 [01:49:38] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 246 seconds)
184 [01:49:44] *** Quits: _aeris_ (~aeris@replaced-ip ) (Remote host closed the connection)
185 [01:49:44] *** _aeris is now known as _aeris_
186 [01:49:48] *** Quits: format_c (~format_c@replaced-ip ) (Quit: format_c)
187 [01:49:58] *** Parts: shadowscript (~b4stsh3ll@replaced-ip ) ()
188 [01:50:20] *** Joins: diniwed (~gavron@replaced-ip )
189 [01:52:21] *** Joins: bryceml (~bryceml@replaced-ip )
190 [01:54:49] *** Quits: OPK (~OPK@replaced-ip ) (Quit: OPK)
191 [01:54:53] *** Joins: Z4CHe (~zachary@replaced-ip )
192 [01:56:20] *** Joins: luuuciano__ (~luuuciano@replaced-ip )
193 [01:56:34] *** Joins: ZeroBeholder (~brad@replaced-ip )
194 [01:58:01] *** debhelper sets mode: +l 973
195 [01:58:10] *** Joins: Scotty_Trees (~Scotty_Tr@replaced-ip )
196 [02:00:12] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 240 seconds)
197 [02:00:48] *** Quits: puke (~vroom@replaced-ip ) (Quit: puke)
198 [02:01:13] *** Quits: banox (~banox@replaced-ip ) (Quit: Leaving)
199 [02:01:15] *** Quits: monkwitdafunk (~user1@replaced-ip ) (Remote host closed the connection)
200 [02:01:38] *** Joins: awal1 (~awal1@replaced-ip )
201 [02:02:12] *** Quits: ax56234 (~NickServ@replaced-ip ) (Read error: No route to host)
202 [02:02:14] *** Joins: is0ke3 (~is0ke3@replaced-ip )
203 [02:05:46] *** Quits: ZeroBeholder (~brad@replaced-ip ) (Ping timeout: 240 seconds)
204 [02:06:00] *** Joins: cliluw (~cliluw@replaced-ip )
205 [02:08:49] *** Joins: dvs (~hibbard@replaced-ip )
206 [02:08:59] *** Joins: Haxxa (~Haxxa@replaced-ip )
207 [02:09:22] *** Quits: p9 (~9p@replaced-ip ) (Ping timeout: 252 seconds)
208 [02:13:08] *** Joins: polardroid (~polardroi@replaced-ip )
209 [02:14:20] *** Quits: nifker (~Thunderbi@replaced-ip ) (Quit: nifker)
210 [02:15:56] *** Joins: jrebs (~jables@replaced-ip )
211 [02:17:38] <cybrNaut> gzip: stdout: No space left on device <= results when running: update-initramfs -c -t -k all
212 [02:17:41] <cybrNaut> i have 2gb free. How much do I need?
213 [02:18:01] <sney> that message refers to space in /boot specifically
214 [02:18:13] <cybrNaut> ah
215 [02:19:29] *** Joins: derpadmin (~derpadmin@replaced-ip )
216 [02:20:50] <cybrNaut> i have 7mb there. if i delete the oldest vmlinuz-* file, which I assume is just wasted space, is there anything else I should do, e.g. run update-grub?
217 [02:21:08] <abrotman> if you have a bunch of old kernel packages, uninstall them properly
218 [02:21:17] <abrotman> (unless yu've been compiling your own, etc)
219 [02:21:29] *** Quits: HalfWord (~halfword@replaced-ip ) (Ping timeout: 246 seconds)
220 [02:21:44] <abrotman> cybrNaut: dpkg -l linux-image-*
221 [02:21:57] *** Joins: redcaptrickster (~redcaptri@replaced-ip )
222 [02:22:19] *** Quits: _Vi (~vi@replaced-ip ) (Ping timeout: 260 seconds)
223 [02:22:23] *** Quits: redcaptrickster (~redcaptri@replaced-ip ) (Client Quit)
224 [02:22:56] <cybrNaut> thanks
225 [02:23:13] <oxek> I really hope bullseye makes /boot at least 1GB by default
226 [02:23:26] <aaii> Hi Guys, Do you know any good package for planning a day?
227 [02:23:40] *** Quits: czesmir (~stefan@replaced-ip ) (Ping timeout: 252 seconds)
228 [02:23:44] <cybrNaut> some start with "rc", which i'm guessing means I already removed
229 [02:24:18] <somiaj> cybrNaut: it means removed, but configuration files are still around. YOu have to purge them to get rid of configuration files
230 [02:24:18] <cybrNaut> so i guess i'll "aptitude remove <oldest image with 'ii' on the line>"
231 [02:24:43] <mutante> aaii: it means it has been remove but the config is still around
232 [02:24:46] *** Quits: Z4CHe (~zachary@replaced-ip ) (Ping timeout: 252 seconds)
233 [02:25:24] <aaii> mutante, I guess wrong mentioning :)
234 [02:25:42] *** Parts: jrebs (~jables@replaced-ip ) ()
235 [02:25:48] <mutante> aaii: if you want to delete config as well, there is --purge
236 [02:26:02] *** Quits: disi (6b837f00@replaced-ip ) (Quit: Connection closed)
237 [02:26:19] <aaii> LoL
238 [02:26:40] <mutante> arr, yes, wrong user,nvm
239 [02:27:14] <aaii> np
240 [02:27:34] <mutante> aaii: gnome-calendar
241 [02:28:59] <aaii> mutante, Thanks , But I need some for CLI mode
242 [02:30:25] <abrotman> you need a CLI-calendar, and vi/emacs isn't enough? :)
243 [02:30:52] <mutante> if you need reminders.. eh.. cron jobs / systemd timer
244 [02:32:16] <somiaj> ,i taskwarrior
245 [02:32:18] <judd> Package taskwarrior (utils, optional) in buster/amd64: feature-rich console based todo list manager. Version: 2.5.1+dfsg-7; Size: 680.6k; Installed: 2236k; Homepage: replaced-url
246 [02:32:26] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 240 seconds)
247 [02:32:50] <abrotman> judd: info etm
248 [02:32:51] <judd> Package etm (utils, optional) in buster/amd64: manages events and tasks using simple text files. Version: 3.2.30-1; Size: 287.1k; Installed: 1452k; Homepage: replaced-url
249 [02:32:51] <kantlivelong> is there a way to have debuilder/debhelper build a package of a different arch if i already have bin files?
250 [02:32:53] *** Joins: ax56234 (~NickServ@replaced-ip )
251 [02:33:21] <somiaj> kantlivelong: how different? LIke i386 on amd64, or a forign arch so you need a cross complier?
252 [02:33:45] <kantlivelong> somiaj: the bins are already cross compiled. i just need to have it build the deb file
253 [02:33:59] *** Quits: d1cor (~d1cor@replaced-ip ) (Ping timeout: 276 seconds)
254 [02:34:41] *** Joins: is0ke3 (~is0ke3@replaced-ip )
255 [02:35:41] *** Guest80223 is now known as CrazEd
256 [02:36:11] *** CrazEd is now known as Guest50620
257 [02:37:09] <kantlivelong> what i get is dh: warning: No packages to build. Possible architecture mismatch: amd64, want: armv7l
258 [02:38:13] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 240 seconds)
259 [02:41:53] <somiaj> I'm not sure at this point, you basically need to skip most the build process and only create the package, and I don't know a nice way to automate that.
260 [02:42:13] <kantlivelong> it works for amd64 or if i set arch to all
261 [02:43:43] <somiaj> sounds like it has some arch tests just to ensure you don't make a bad package. Maybe see if there is a way to ignore the arch mismatch test since your binaries are precompiled.
262 [02:44:48] <kantlivelong> thats what i'm hoping to do. just trying to find where that might be
263 [02:45:17] <somiaj> I don't have enough experience to help here, there is #packaging on irc.oftc.net
264 [02:48:01] *** debhelper sets mode: +l 967
265 [02:48:26] *** Quits: auk (auk@replaced-ip ) (Ping timeout: 246 seconds)
266 [02:49:41] *** Quits: Romarain (~Romarain@replaced-ip ) (Quit: Leaving)
267 [02:50:12] *** Quits: freshtube (~freshtube@replaced-ip ) (Ping timeout: 260 seconds)
268 [02:52:01] *** Joins: stree (~stree@replaced-ip )
269 [02:52:08] *** Quits: ripdisk (~ripdisk@replaced-ip ) (Ping timeout: 268 seconds)
270 [02:52:45] *** Joins: auk (auk@replaced-ip )
271 [03:00:02] *** Joins: freshtube (~freshtube@replaced-ip )
272 [03:00:51] *** Joins: catman370 (~catman@replaced-ip )
273 [03:03:11] *** Quits: auk (auk@replaced-ip ) (Ping timeout: 240 seconds)
274 [03:04:13] *** Quits: dvs (~hibbard@replaced-ip ) (Ping timeout: 240 seconds)
275 [03:06:01] *** Joins: auk (auk@replaced-ip )
276 [03:10:36] *** Joins: ripdisk (~ripdisk@replaced-ip )
277 [03:10:50] *** Quits: Tobbi (~Tobbi@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
278 [03:10:56] *** Quits: catman370 (~catman@replaced-ip ) (Quit: See you later..)
279 [03:12:22] *** Quits: tsal (~tsal@replaced-ip ) (Ping timeout: 260 seconds)
280 [03:13:18] *** Joins: tsal (~tsal@replaced-ip )
281 [03:15:23] *** Joins: gusmv (~gus@replaced-ip )
282 [03:18:15] *** Joins: CyberManifest (~CyberMani@replaced-ip )
283 [03:21:55] *** Quits: Brigo (~Brigo@replaced-ip ) (Ping timeout: 265 seconds)
284 [03:26:49] *** Quits: ephemer0l (~ephemer0l@replaced-ip##) (Quit: ##replaced-url
285 [03:27:57] *** Joins: Filo (~filohuhum@replaced-ip )
286 [03:28:26] *** Joins: ephemer0l_ (~ephemer0l@replaced-ip )
287 [03:28:39] *** Quits: b1ack0p (~m@replaced-ip ) (Quit: sleeping)
288 [03:29:39] *** Quits: auk (auk@replaced-ip ) (Ping timeout: 265 seconds)
289 [03:30:37] *** Quits: sauvin (sauvin@replaced-ip ) (Ping timeout: 265 seconds)
290 [03:32:58] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
291 [03:35:05] *** Joins: is0ke3 (~is0ke3@replaced-ip )
292 [03:36:25] *** Guest50620 is now known as CrazEd
293 [03:36:55] *** CrazEd is now known as Guest66658
294 [03:37:54] *** Joins: catman370 (~catman@replaced-ip )
295 [03:38:57] *** Joins: Slumlord (~Slumlord@replaced-ip )
296 [03:42:04] *** Joins: sappheiros (~sappheiro@replaced-ip )
297 [03:43:58] *** Quits: gusmv (~gus@replaced-ip ) (Quit: Leaving)
298 [03:44:10] *** Joins: arkho (~ccc@replaced-ip )
299 [03:46:05] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 265 seconds)
300 [03:46:10] *** Joins: dvs (~hibbard@replaced-ip )
301 [03:46:38] *** Quits: ax562 (~ax562@replaced-ip ) (Quit: Leaving)
302 [03:46:55] *** Joins: zykotick9 (~zykotick9@replaced-ip )
303 [03:54:50] *** Joins: sidmo_ (~ident@replaced-ip )
304 [03:55:41] *** Quits: sidmo (~ident@replaced-ip ) (Ping timeout: 252 seconds)
305 [03:56:30] *** Joins: edlou (uid413273@replaced-ip )
306 [03:58:36] *** Quits: Filo (~filohuhum@replaced-ip ) (Remote host closed the connection)
307 [03:58:53] *** Joins: Filo (~filohuhum@replaced-ip )
308 [04:00:02] *** Joins: meinwolf (~meinwolf@replaced-ip )
309 [04:00:11] *** Joins: diniwed (~gavron@replaced-ip )
310 [04:11:28] *** Joins: Z4CHe (~zachary@replaced-ip )
311 [04:13:08] <sappheiros> Is Debian suitable for novice programmers? or would you advise some other distribution and then transition later to Debian?
312 [04:13:17] *** Joins: citypw (~citypw@replaced-ip )
313 [04:13:31] *** Parts: zykotick9 (~zykotick9@replaced-ip ) ()
314 [04:14:12] <dvs> It depends how technically inclined you are.
315 [04:15:07] <sappheiros> Is it suitable for someone with programming ability, or ability to learn, but who wants things to "just work" and have documentation to follow?
316 [04:15:33] *** Quits: craigevil (craig@replaced-ip ) (Quit: leaving)
317 [04:15:33] <sappheiros> I'm accustomed to Ubuntu, was looking at Linux Mint, then thought maybe I should "grow up" and use Debian.
318 [04:16:14] <dvs> sappheiros: if you've already used Ubuntu then you have a pretty good chance with Debian.
319 [04:16:38] *** Joins: sauvin (~sauvin@replaced-ip )
320 [04:16:46] <sappheiros> Is Cinnamon a stable desktop environment, or would you recommend a more stable one to minimize potential for problems?
321 [04:17:12] <dvs> I've never used Cinnamon.
322 [04:25:21] <sappheiros> Which desktop environment do you prefer?
323 [04:25:47] <dvs> I use KDE and xfce
324 [04:26:02] <sappheiros> What are your reasons for each?
325 [04:26:51] <dvs> sappheiros: I like KDE's look and feel and use xfce for a lightweight GUI over VNC.
326 [04:28:19] *** Quits: BrianG61UK_ (~BrianG61U@replaced-ip ) (Remote host closed the connection)
327 [04:29:07] *** Joins: BrianG61UK_ (~BrianG61U@replaced-ip )
328 [04:29:54] <sappheiros> i.e. for remote desktop so there's less visuals to download?
329 [04:30:48] <dvs> yes, less computations for GUI.
330 [04:33:08] *** Parts: remline (~remline@replaced-ip ) ()
331 [04:36:06] *** Joins: fmaurer (~quassel@replaced-ip )
332 [04:37:07] *** Guest66658 is now known as CrazEd
333 [04:37:38] *** CrazEd is now known as Guest6968
334 [04:39:33] *** Quits: fmaurer_ (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
335 [04:40:09] *** Quits: sappheiros (~sappheiro@replaced-ip ) (Remote host closed the connection)
336 [04:40:31] *** Quits: ddsys (~ddsys@replaced-ip ) (Quit: Leaving)
337 [04:41:40] *** Quits: catman370 (~catman@replaced-ip ) (Quit: See you later..)
338 [04:42:26] *** Joins: _Matth_ (~Matth@replaced-ip )
339 [04:44:19] *** Joins: secntech (~secntech@replaced-ip )
340 [04:45:36] *** Quits: diniwed (~gavron@replaced-ip ) (Read error: Connection reset by peer)
341 [04:45:42] *** Joins: centrx (~centrx@replaced-ip )
342 [04:45:54] *** Joins: mohabaks (~mohabaks@replaced-ip )
343 [04:47:09] *** Quits: Filo (~filohuhum@replaced-ip ) (Ping timeout: 240 seconds)
344 [04:50:18] *** Quits: mohabaks (~mohabaks@replaced-ip ) (Remote host closed the connection)
345 [04:50:42] *** Joins: mohabaks (~mohabaks@replaced-ip )
346 [04:53:27] *** Quits: CyberManifest (~CyberMani@replaced-ip##) (Quit: Textual IRC Client: ##replaced-url
347 [04:54:55] *** Joins: rockworld (~TheRocker@replaced-ip )
348 [04:55:58] <rockworld> hi debian channel :)
349 [04:57:07] <rockworld> I need to activate shell_exec in my php.ini configuration, but when I check in php.ini there is nothing about shell_exec to uncomment, does anybody know what to do ?
350 [04:57:17] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
351 [04:58:08] *** Joins: OPK (~OPK@replaced-ip )
352 [04:59:11] <sney> rockworld: in debian, extra php.ini directives are usually under mods-available and symlinked to the appropriate conf.d. see for instance, 'ls -l /etc/php/7.3/fpm/conf.d/20-sockets.ini'
353 [04:59:31] *** Joins: is0ke3 (~is0ke3@replaced-ip )
354 [05:00:15] <rockworld> ls: cannot access '/etc/php/7.3/fpm/conf.d/20-sockets.ini': No such file or directory
355 [05:00:35] *** Joins: diniwed (~gavron@replaced-ip )
356 [05:00:40] <sney> that was an example that I figured would be enabled by default, you can pick a different .ini file from that directory to see what I mean
357 [05:00:53] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 276 seconds)
358 [05:01:18] *** Quits: wallacer (~quassel@replaced-ip ) (Remote host closed the connection)
359 [05:01:19] <rockworld> my php.ini is located at /etc/php/7.3/apache2/php.ini
360 [05:01:53] <sney> hm, prefork. you should consider changing that if this is not a legacy webapp.
361 [05:02:29] *** Joins: wallacer (~quassel@replaced-ip )
362 [05:04:07] <sney> anyway, just add the parameter you need to php.ini if it isn't in a conf.d or mods-available dir somewhere.
363 [05:04:16] *** Quits: Aavar_ (aavar@replaced-ip ) (Ping timeout: 252 seconds)
364 [05:04:58] <rockworld> hum thats a good question so I have to search for this parameter in other conf file
365 [05:07:00] <sney> do you have a /etc/php/7.3/mods-available dir?
366 [05:07:15] <rockworld> yes I do
367 [05:07:18] *** Quits: nyov (~nyov@replaced-ip ) (Killed (orwell.freenode.net (Nickname regained by services)))
368 [05:07:26] *** Joins: nyov (~nyov@replaced-ip )
369 [05:07:48] <sney> ok, and /etc/php/7.3/apache2/conf.d ?
370 [05:08:00] <rockworld> but nothing about php.ini file
371 [05:08:06] <rockworld> yes I have that too
372 [05:08:51] <sney> ok. your php.ini will have something like "include conf.d/*.ini" in it, that means it also used anything from the files in conf.d
373 [05:09:07] *** Joins: shadowscript (~b4stsh3ll@replaced-ip )
374 [05:09:11] <sney> and the files in conf.d are symlinks to mods-available that you also have
375 [05:09:27] <rockworld> right thats interesting
376 [05:09:35] <sney> so you enable the configuration in the mods-available file, symlink it to conf.d, and it just works after the reload. it keeps things organized.
377 [05:09:58] <rockworld> do you think it will be activated
378 [05:10:06] <rockworld> the parameter
379 [05:10:26] *** Joins: wintersky (uid453465@replaced-ip )
380 [05:10:34] <sney> if you follow the procedure I just mentioned, yes
381 [05:10:42] <rockworld> so I need to uncomment "include conf.d/*.ini"
382 [05:10:51] <rockworld> I will check for that in php.ini
383 [05:11:06] <sney> it should not be commented, this is how php works on debian.
384 [05:11:14] *** Quits: Baloo (baloorj@replaced-ip ) (Ping timeout: 245 seconds)
385 [05:11:19] <rockworld> alright mate
386 [05:11:35] <sney> *you* need to check the files in mods-available for the parameter you need. then *you* need to symlink that file to conf.d. and if it isn't there, then make one yourself.
387 [05:11:41] *** Joins: stree (~stree@replaced-ip )
388 [05:12:47] <rockworld> that sounds right but which file so lol I have to search everywhere for this parameter :)
389 [05:13:18] <sney> that's what grep is for.
390 [05:13:54] <rockworld> I dont know how to use it :D, im still learning a lot on debian friend
391 [05:14:01] <sney> no time like the present
392 [05:14:44] <rockworld> so there is a command I can type that will look all files for shell_exec?
393 [05:14:47] <sney> replaced-url
394 [05:15:51] <rockworld> man I really like irc community they are the best helper for long time
395 [05:16:07] <rockworld> thanks a lot
396 [05:16:10] <sney> np
397 [05:17:06] <rockworld> my english is a bit weird thats more difficult for me to understand but Im not too bad so just enough to understand a few thing
398 [05:18:54] *** Joins: Baloo (baloorj@replaced-ip )
399 [05:20:23] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
400 [05:22:40] *** Quits: luuuciano__ (~luuuciano@replaced-ip ) (Remote host closed the connection)
401 [05:22:54] *** Quits: TriJetScud (~TriJetScu@replaced-ip ) (Ping timeout: 245 seconds)
402 [05:24:42] *** Joins: s8548a (~s8548a@replaced-ip )
403 [05:26:22] *** Joins: TriJetScud (~TriJetScu@replaced-ip )
404 [05:27:25] *** Joins: craigevil (craig@replaced-ip )
405 [05:27:59] *** Joins: bicknell (bicknell@replaced-ip )
406 [05:28:01] *** debhelper sets mode: +l 973
407 [05:28:10] *** Joins: luuuciano (~luuuciano@replaced-ip )
408 [05:28:11] *** bicknell is now known as diso
409 [05:31:04] <rockworld> sney: so the command will be "grep shell_exec /etc/php/7.3/mods-available/* "
410 [05:31:13] <sney> !tias
411 [05:31:14] <dpkg> TIAS is "Try It And See".
412 [05:32:13] <rockworld> I tryed and it doesnt show anything lol
413 [05:32:34] <sney> then the pattern is not there, and you will have to make your own ini file and symlink it.
414 [05:33:22] *** Quits: TriJetScud (~TriJetScu@replaced-ip ) (Ping timeout: 276 seconds)
415 [05:34:16] <rockworld> can you help me found a tutorial on that by google or something
416 [05:34:26] <rockworld> Im looking but there is nothing :x
417 [05:34:35] <sney> there is no tutorial, just look at the other files, and imitate the way they do it
418 [05:35:08] <sney> your /etc/php is full of examples. follow them.
419 [05:35:41] <rockworld> sney: thanks I agree
420 [05:36:38] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Ping timeout: 276 seconds)
421 [05:36:58] <rockworld> the tutorial im following been made on php 5
422 [05:37:42] <sney> did you check on php.net to make sure the functions you need are in php 7?
423 [05:37:43] <rockworld> but it should work on php 7
424 [05:37:56] *** Guest6968 is now known as CrazEd
425 [05:38:26] *** CrazEd is now known as Guest33656
426 [05:38:48] <rockworld> I didnt mate
427 [05:38:56] *** Quits: zeden (~user@replaced-ip ) (Quit: WeeChat 3.0.1)
428 [05:39:02] <rockworld> I will :)
429 [05:39:35] *** Quits: tsal (~tsal@replaced-ip ) (Ping timeout: 246 seconds)
430 [05:40:52] *** Joins: TriJetScud (~TriJetScu@replaced-ip )
431 [05:41:03] *** Joins: tsal (~tsal@replaced-ip )
432 [05:41:07] *** Quits: debsan (~debsan@replaced-ip ) (Ping timeout: 260 seconds)
433 [05:42:18] *** Parts: ld (~user@replaced-ip ) ()
434 [05:42:23] *** Quits: Z4CHe (~zachary@replaced-ip ) (Ping timeout: 252 seconds)
435 [05:45:46] *** Joins: Antioch047 (~Antioch@replaced-ip )
436 [05:48:21] <rockworld> emp
437 [05:49:20] *** Quits: radu242 (~radu242@replaced-ip##) (Quit: The Lounge - ##replaced-url
438 [05:55:47] *** Quits: ChmEarl (~chmearl@replaced-ip ) (Quit: Leaving)
439 [05:56:25] *** Parts: polardroid (~polardroi@replaced-ip ) ()
440 [05:57:54] *** Quits: TriJetScud (~TriJetScu@replaced-ip ) (Ping timeout: 245 seconds)
441 [05:58:01] *** debhelper sets mode: +l 966
442 [06:00:08] *** Quits: Zotta (~zotta@replaced-ip ) (Quit: Bye!)
443 [06:00:20] *** Joins: Zotta (~zotta@replaced-ip )
444 [06:01:41] *** Joins: valera__ (~ValeraRoz@replaced-ip )
445 [06:02:09] *** Quits: citypw (~citypw@replaced-ip ) (Remote host closed the connection)
446 [06:02:42] *** Joins: citypw (~citypw@replaced-ip )
447 [06:04:06] *** Quits: valera_ (~ValeraRoz@replaced-ip ) (Ping timeout: 246 seconds)
448 [06:04:48] *** Parts: s8548a (~s8548a@replaced-ip ) ("Leaving")
449 [06:05:56] *** Quits: edlou (uid413273@replaced-ip ) (Quit: Connection closed for inactivity)
450 [06:07:31] *** Quits: freebench (~freebench@replaced-ip ) (Ping timeout: 252 seconds)
451 [06:07:35] *** Quits: ax56234 (~NickServ@replaced-ip ) (Read error: Connection reset by peer)
452 [06:08:45] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 240 seconds)
453 [06:11:13] *** Quits: shadowscript (~b4stsh3ll@replaced-ip ) (Quit: My damn controlling terminal disappeared!)
454 [06:11:36] *** Quits: craigevil (craig@replaced-ip ) (Remote host closed the connection)
455 [06:14:19] *** Quits: wallacer (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
456 [06:15:39] *** Joins: wallacer (~quassel@replaced-ip )
457 [06:15:45] *** Joins: craigevil (craig@replaced-ip )
458 [06:18:01] *** debhelper sets mode: +l 960
459 [06:20:07] *** Joins: puke (~vroom@replaced-ip )
460 [06:20:36] *** Quits: wallacer (~quassel@replaced-ip ) (Read error: Connection reset by peer)
461 [06:20:53] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 240 seconds)
462 [06:20:59] *** Joins: wallacer (~quassel@replaced-ip )
463 [06:22:41] *** Joins: diogenes_ (~diogenes_@replaced-ip )
464 [06:25:38] *** Joins: folti7777 (~folti@replaced-ip )
465 [06:26:35] *** Quits: folti7777 (~folti@replaced-ip ) (Client Quit)
466 [06:26:50] *** Quits: Spr1ng (~Spr1ng@replaced-ip ) (Ping timeout: 246 seconds)
467 [06:31:51] *** Joins: eclair (~eclairfar@replaced-ip )
468 [06:32:14] *** Joins: darunesh (~darunesh@replaced-ip )
469 [06:33:55] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
470 [06:35:28] <rockworld> can we use php5 and php7 at same time ?
471 [06:35:33] *** Quits: eclair (~eclairfar@replaced-ip ) (Client Quit)
472 [06:35:58] *** Joins: is0ke3 (~is0ke3@replaced-ip )
473 [06:36:12] *** Quits: diso (bicknell@replaced-ip ) (Quit: WeeChat 2.8)
474 [06:38:40] *** Guest33656 is now known as CrazEd
475 [06:39:10] *** CrazEd is now known as Guest13483
476 [06:39:56] *** Joins: clymax (arqing@replaced-ip )
477 [06:40:15] *** Joins: hwpplayer1 (~user@replaced-ip )
478 [06:42:36] *** Quits: hwpplayer1 (~user@replaced-ip ) (Remote host closed the connection)
479 [06:43:01] <rockworld> cause I need php_json extension on PHP5
480 [06:43:46] *** Joins: hwpplayer1 (~user@replaced-ip )
481 [06:43:59] <themill> php5 is nowhere in Debian packages (but you can using the sury.org packages for it if you're desperate)
482 [06:44:47] *** Quits: led_belly (~led_belly@replaced-ip ) (Remote host closed the connection)
483 [06:45:14] <rockworld> xD
484 [06:45:36] <rockworld> but I need extension from php5 and php7 at same time so I hope that can work
485 [06:45:56] <rockworld> I will check to find the repository I need
486 [06:47:03] <rockworld> so this is the link im looking for right replaced-url
487 [06:51:16] <themill> I don't know what you mean by "extension from php5 and php7 at the same time"
488 [06:51:24] <themill> Do you already have php5 and php7 installed?
489 [06:51:45] <rockworld> I have php7 but Im installing php5 rn
490 [06:51:59] <themill> why do you want php5?
491 [06:53:22] <rockworld> cause I need to enable php_mysqli, php_curl & php_fileinfo
492 [06:53:24] *** Joins: radu242 (~radu242@replaced-ip )
493 [06:53:28] <rockworld> on php7
494 [06:53:44] <rockworld> and on php5 I need php_json
495 [06:54:20] <rockworld> but I enabled on php7 what I was needing
496 [06:54:57] *** Joins: TriJetScud (~TriJetScu@replaced-ip )
497 [06:57:20] <themill> you don't need anything from php5 if you want things for php7
498 [06:58:23] <themill> If you want these modules for php7 then you'll find that they are packaged for Debian already and you should just install them.
499 [06:58:44] *** Quits: wallacer (~quassel@replaced-ip ) (Ping timeout: 245 seconds)
500 [07:00:02] *** Quits: riff-IRC (~riff2@replaced-ip ) (Remote host closed the connection)
501 [07:00:19] <rockworld> hum ok cause I need to make this tutorial to install my websocket server " replaced-url
502 [07:00:24] *** Quits: hwpplayer1 (~user@replaced-ip ) (Quit: will install kde)
503 [07:02:25] <rockworld> I just need to figure how to enable "php_json & shell_exec"
504 [07:02:48] <rockworld> on php7 if this is possible
505 [07:04:59] <rockworld> there is a package call php-json
506 [07:05:07] <rockworld> I will install this
507 [07:05:15] *** Joins: adapter (~adapter@replaced-ip )
508 [07:05:19] <rockworld> but I dont know if I can activate in configuration
509 [07:05:50] *** Joins: wallacer (~quassel@replaced-ip )
510 [07:06:15] <rockworld> this is for php 8.0 :x
511 [07:07:28] <rockworld> k I found that is installed for php7.3
512 [07:09:48] <rockworld> k I found it Im going to enable it
513 [07:11:17] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 246 seconds)
514 [07:11:22] *** Quits: adapter (~adapter@replaced-ip ) (Read error: Connection reset by peer)
515 [07:11:44] *** Joins: w-oertl (~wolfgang@replaced-ip )
516 [07:11:48] *** Joins: ridik (~ridik@replaced-ip )
517 [07:12:48] <themill> Not sure what tutorial you're following or why. It looks pretty old and you might be better off with something about 5 years newer.
518 [07:13:25] *** Joins: is0ke3 (~is0ke3@replaced-ip )
519 [07:13:49] <rockworld> thats a chat that we buyed for our website radio
520 [07:14:12] <rockworld> they have a lot of good content on it but maybe like you say it need to be updated
521 [07:14:59] <rockworld> do you know where can I activate this shell_exec in php config
522 [07:15:20] <rockworld> there is nothing in it about it when I used grep it didnt give any output lol
523 [07:15:56] <rockworld> I found json config it was already enabled by default
524 [07:16:10] <rockworld> the last thing now is shell_exec
525 [07:16:16] *** Quits: w-oertl (~wolfgang@replaced-ip ) (Ping timeout: 252 seconds)
526 [07:16:38] *** Quits: Apeiron` (~Apeiron@replaced-ip ) (Read error: Connection reset by peer)
527 [07:19:55] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 252 seconds)
528 [07:24:01] *** Joins: well_laid_lawn (~Jean-luc@replaced-ip )
529 [07:24:01] *** Joins: ihristov (55bb2ee2@replaced-ip )
530 [07:25:33] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 240 seconds)
531 [07:25:49] *** Joins: wytchmaster (~wytchmast@replaced-ip )
532 [07:27:50] *** Joins: is0ke3 (~is0ke3@replaced-ip )
533 [07:29:30] <n0cto> does newer versions of debian come with systemctl?
534 [07:29:44] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 276 seconds)
535 [07:30:26] *** Joins: cliluw (~cliluw@replaced-ip )
536 [07:31:40] *** Quits: hg0noz (~hg0noz@replaced-ip ) (Ping timeout: 252 seconds)
537 [07:32:17] *** Joins: stree (~stree@replaced-ip )
538 [07:32:25] <alkisg> n0cto: since at least 8 years now...
539 [07:34:05] *** Quits: Lordseabeach (~Lordseabe@replaced-ip ) ()
540 [07:34:44] *** Joins: Apeiron` (~Apeiron@replaced-ip )
541 [07:34:45] <tarzeau_> about the same time since devuan exists?
542 [07:35:43] <klys> that would make sense, since devuan uses sysvinit instead, and systemctl is a too for use with systemd.
543 [07:35:55] <klys> tool*
544 [07:36:05] *** Joins: shann (~quassel@replaced-ip )
545 [07:38:50] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 276 seconds)
546 [07:39:28] *** Guest13483 is now known as CrazEd
547 [07:39:58] *** CrazEd is now known as Guest8267
548 [07:40:37] *** Joins: is0ke3 (~is0ke3@replaced-ip )
549 [07:41:15] *** Joins: Jerrynicki (~niklas@replaced-ip )
550 [07:45:03] *** Joins: chele (~chele@replaced-ip )
551 [07:47:50] *** Joins: darutoko (~darutoko@replaced-ip )
552 [07:48:02] *** debhelper sets mode: +l 967
553 [07:48:21] *** Joins: szorfein (~daggoth@replaced-ip )
554 [07:48:22] *** Quits: awal1 (~awal1@replaced-ip ) (Quit: Leaving)
555 [07:49:04] *** Joins: toolz (toolz@replaced-ip )
556 [07:52:18] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 260 seconds)
557 [07:52:37] *** Quits: Jerrynicki (~niklas@replaced-ip ) (Remote host closed the connection)
558 [07:53:04] *** Joins: Jerrynicki (~niklas@replaced-ip )
559 [07:54:02] *** Joins: is0ke3 (~is0ke3@replaced-ip )
560 [07:57:22] *** Quits: _Matth_ (~Matth@replaced-ip ) (Remote host closed the connection)
561 [07:57:53] *** Joins: _Matth_ (~Matth@replaced-ip )
562 [08:02:28] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
563 [08:04:00] <TheBigK> is it actually 8 years now? rly that long?
564 [08:04:15] <TheBigK> man, im old...
565 [08:04:25] *** Joins: is0ke3 (~is0ke3@replaced-ip )
566 [08:09:02] *** Joins: tagomago (~tagomago@replaced-ip )
567 [08:11:44] *** Quits: centrx (~centrx@replaced-ip ) (Remote host closed the connection)
568 [08:22:02] *** Joins: centrx (~centrx@replaced-ip )
569 [08:22:35] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 260 seconds)
570 [08:22:41] *** Joins: endstille (~endstille@replaced-ip )
571 [08:23:38] *** Quits: endstille (~endstille@replaced-ip ) (Read error: Connection reset by peer)
572 [08:26:55] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
573 [08:29:24] *** Joins: centrx (~centrx@replaced-ip )
574 [08:30:39] *** Joins: valera_ (~ValeraRoz@replaced-ip )
575 [08:31:44] *** Quits: Renari (~Renari@replaced-ip ) (Ping timeout: 265 seconds)
576 [08:32:05] *** Joins: iflema (~ian@replaced-ip )
577 [08:33:26] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 276 seconds)
578 [08:33:26] *** Quits: valera__ (~ValeraRoz@replaced-ip ) (Ping timeout: 276 seconds)
579 [08:33:47] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
580 [08:34:09] *** Joins: Renari (~Renari@replaced-ip )
581 [08:34:56] *** Joins: is0ke3 (~is0ke3@replaced-ip )
582 [08:38:18] *** Joins: menace (~deknos@replaced-ip )
583 [08:39:03] *** Quits: menace (~deknos@replaced-ip ) (Remote host closed the connection)
584 [08:39:07] *** Joins: valera__ (~ValeraRoz@replaced-ip )
585 [08:39:54] *** Joins: drzacek (~drzacek@replaced-ip )
586 [08:39:59] *** Quits: Deknos (~deknos@replaced-ip ) (Ping timeout: 245 seconds)
587 [08:40:08] *** Guest8267 is now known as CrazEd
588 [08:40:38] *** CrazEd is now known as Guest73518
589 [08:41:30] *** Joins: sinaowolabi (~Sina@replaced-ip )
590 [08:41:53] *** Quits: valera_ (~ValeraRoz@replaced-ip ) (Ping timeout: 265 seconds)
591 [08:44:34] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 260 seconds)
592 [08:44:53] *** Joins: coot (~coot@replaced-ip )
593 [08:46:21] *** Joins: is0ke3 (~is0ke3@replaced-ip )
594 [08:46:40] *** Quits: soulz (~soulz@replaced-ip ) (Quit: leaving)
595 [08:48:58] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
596 [08:49:05] *** Joins: idhugo__ (~idhugo@replaced-ip )
597 [08:49:26] *** Joins: tnewman (~tnewman@replaced-ip )
598 [08:51:06] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 260 seconds)
599 [08:51:12] *** Joins: centrx (~centrx@replaced-ip )
600 [08:51:36] *** Quits: TheCreeper (~TheCreepe@replaced-ip ) (Remote host closed the connection)
601 [08:51:55] *** Joins: TheCreeper (~TheCreepe@replaced-ip )
602 [08:56:50] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
603 [08:57:24] *** Joins: Ycarus (~Ycarus@replaced-ip )
604 [08:57:36] *** Joins: mezzo (~mezzo@replaced-ip )
605 [08:58:27] *** Joins: martinus__ (~martin@replaced-ip )
606 [08:59:15] *** Joins: fearnothing (~fearnothi@replaced-ip )
607 [09:02:51] *** Joins: soulz (~soulz@replaced-ip )
608 [09:08:01] *** debhelper sets mode: +l 974
609 [09:09:14] *** Quits: unluckyshrubbery (~unluckysh@replaced-ip##) (Quit: ZNC 1.8.2 - ##replaced-url
610 [09:12:02] *** Joins: toli (~toli@replaced-ip )
611 [09:12:07] *** Joins: centrx (~centrx@replaced-ip )
612 [09:14:01] *** Quits: lordyod (~lordyod@replaced-ip ) (Ping timeout: 260 seconds)
613 [09:14:22] *** Quits: uvolmer (~uvolmer@replaced-ip ) (Remote host closed the connection)
614 [09:15:17] *** Joins: p9 (~9p@replaced-ip )
615 [09:16:49] *** Joins: uvolmer (~uvolmer@replaced-ip )
616 [09:16:57] *** Joins: cosimone (~user@replaced-ip )
617 [09:16:58] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
618 [09:18:24] *** Joins: centrx (~centrx@replaced-ip )
619 [09:20:48] *** Joins: citypw (~citypw@replaced-ip )
620 [09:20:58] *** Quits: godane (~godane4@replaced-ip ) (Ping timeout: 260 seconds)
621 [09:22:00] *** Quits: acu_ (~acu@replaced-ip ) (Ping timeout: 265 seconds)
622 [09:22:54] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 245 seconds)
623 [09:24:45] *** Quits: CombatVet (~c4@replaced-ip ) (Ping timeout: 240 seconds)
624 [09:24:59] *** Joins: CombatVet (~c4@replaced-ip )
625 [09:26:43] *** Quits: Renari (~Renari@replaced-ip ) (Ping timeout: 276 seconds)
626 [09:27:30] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
627 [09:27:58] *** Joins: tnewman (~tnewman@replaced-ip )
628 [09:28:49] *** Quits: cliluw (~cliluw@replaced-ip ) (Ping timeout: 252 seconds)
629 [09:29:48] *** Joins: cliluw (~cliluw@replaced-ip )
630 [09:30:31] *** Joins: Haudegen (~quassel@replaced-ip )
631 [09:32:01] *** Joins: luuuciano_ (~luuuciano@replaced-ip )
632 [09:32:20] *** Quits: luuuciano (~luuuciano@replaced-ip ) (Ping timeout: 268 seconds)
633 [09:34:54] *** Joins: lordyod (~lordyod@replaced-ip )
634 [09:35:19] *** Joins: dreamon (~dreamon@replaced-ip )
635 [09:39:37] *** Joins: Texou (~Texou@replaced-ip )
636 [09:40:43] *** Joins: nifker (~Thunderbi@replaced-ip )
637 [09:40:50] *** Guest73518 is now known as CrazEd
638 [09:41:01] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 276 seconds)
639 [09:41:20] *** CrazEd is now known as Guest10524
640 [09:42:36] *** Joins: Renari (~Renari@replaced-ip )
641 [09:44:03] *** Joins: Mister00X (quassel@replaced-ip )
642 [09:45:52] *** Joins: FnorZ (~FnorZ@replaced-ip )
643 [09:48:01] *** debhelper sets mode: +l 980
644 [09:48:52] *** Joins: centrx (~centrx@replaced-ip )
645 [09:48:54] *** Quits: craigevil (craig@replaced-ip ) (Remote host closed the connection)
646 [09:52:53] *** Quits: mentor (~m@replaced-ip ) (Ping timeout: 240 seconds)
647 [09:52:55] *** Joins: AquaL1te (~AquaL1te@replaced-ip )
648 [09:53:53] *** Joins: stree (~stree@replaced-ip )
649 [09:54:01] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
650 [09:55:25] *** Joins: mortderi1 (~mortderir@replaced-ip )
651 [09:57:20] *** Joins: Tobbi (~Tobbi@replaced-ip )
652 [09:58:42] *** Parts: brontosaurusrex (~woot@replaced-ip ) ("WeeChat 2.3")
653 [09:58:44] *** Quits: _Matth_ (~Matth@replaced-ip ) (Ping timeout: 265 seconds)
654 [09:59:41] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 240 seconds)
655 [10:01:12] *** Quits: fearnothing (~fearnothi@replaced-ip ) (Ping timeout: 240 seconds)
656 [10:01:30] *** Joins: fflori (~fflori@replaced-ip )
657 [10:01:44] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Quit: Leaving)
658 [10:04:15] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Quit: vergissmeinnicht)
659 [10:04:23] *** Quits: genr8_ (~genr8_@replaced-ip ) (Remote host closed the connection)
660 [10:04:49] *** Joins: genr8_ (~genr8_@replaced-ip )
661 [10:06:43] *** Quits: kini (~kini@replaced-ip ) (Ping timeout: 258 seconds)
662 [10:06:52] *** Joins: centrx (~centrx@replaced-ip )
663 [10:12:13] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
664 [10:14:26] *** Quits: rockworld (~TheRocker@replaced-ip ) (Quit: Leaving)
665 [10:14:32] *** Joins: kini (~kini@replaced-ip )
666 [10:16:20] *** Joins: b1ack0p (~m@replaced-ip )
667 [10:16:23] *** Quits: secntech (~secntech@replaced-ip ) (Quit: Leaving)
668 [10:16:48] *** Joins: fearnothing (~fearnothi@replaced-ip )
669 [10:19:34] *** Joins: uid_max (~samw@replaced-ip )
670 [10:20:13] *** Quits: adamfido (~pi@replaced-ip ) (Ping timeout: 240 seconds)
671 [10:24:17] *** Joins: Deknos (~deknos@replaced-ip )
672 [10:25:46] *** Quits: magnulu (~magnulu@replaced-ip ) (Ping timeout: 240 seconds)
673 [10:26:54] *** Joins: CyberManifest (~CyberMani@replaced-ip )
674 [10:28:35] *** Joins: freebench (~freebench@replaced-ip )
675 [10:28:42] *** Quits: lithiumpt (~lithiumpt@replaced-ip ) (Ping timeout: 265 seconds)
676 [10:31:28] *** Joins: mibo (~mibo@replaced-ip )
677 [10:32:00] *** Joins: eclair (~eclairfar@replaced-ip )
678 [10:34:02] *** Joins: centrx (~centrx@replaced-ip )
679 [10:39:01] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
680 [10:39:18] *** Quits: eclair (~eclairfar@replaced-ip ) (Quit: Leaving)
681 [10:39:52] *** Joins: centrx (~centrx@replaced-ip )
682 [10:40:17] *** Joins: eclair (~eclairfar@replaced-ip )
683 [10:41:14] *** Quits: alexrelis[m] (alexrelism@replaced-ip ) (Quit: Bridge terminating on SIGTERM)
684 [10:41:31] *** clymax is now known as crazed
685 [10:41:34] *** Quits: Celmor[m] (celmormatr@replaced-ip ) (Quit: Bridge terminating on SIGTERM)
686 [10:43:58] *** Quits: stree (~stree@replaced-ip ) (Excess Flood)
687 [10:44:15] *** Quits: RadoS (~cheater@replaced-ip ) (Remote host closed the connection)
688 [10:44:23] *** Joins: stree (~stree@replaced-ip )
689 [10:44:33] *** Joins: RadoS (~cheater@replaced-ip )
690 [10:44:39] *** Quits: buzzzz (~buzzzz@replaced-ip ) (Ping timeout: 265 seconds)
691 [10:44:43] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
692 [10:46:50] *** Joins: buzzzz (~buzzzz@replaced-ip )
693 [10:50:12] *** Quits: fearnothing (~fearnothi@replaced-ip ) (Ping timeout: 240 seconds)
694 [10:50:31] *** Quits: valera__ (~ValeraRoz@replaced-ip ) (Quit: valera__)
695 [10:50:51] *** Joins: ValeraRozuvan (~ValeraRoz@replaced-ip )
696 [10:52:47] *** Joins: Celmor[m] (celmormatr@replaced-ip )
697 [10:58:29] *** Joins: lithiumpt (~lithiumpt@replaced-ip )
698 [10:59:59] *** Joins: fearnothing (~fearnothi@replaced-ip )
699 [11:00:57] *** Joins: Romarain (~Romarain@replaced-ip )
700 [11:02:43] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
701 [11:03:06] *** Joins: tnewman (~tnewman@replaced-ip )
702 [11:03:12] *** Joins: diogenes_ (~diogenes_@replaced-ip )
703 [11:04:00] *** Joins: idhugo_ (~idhugo@replaced-ip )
704 [11:04:26] *** Quits: teksimian (~teksimian@replaced-ip ) (Read error: Connection reset by peer)
705 [11:04:26] *** Quits: Scotty_Trees (~Scotty_Tr@replaced-ip ) (Quit: Leaving)
706 [11:05:08] *** Joins: unluckyshrubbery (~unluckysh@replaced-ip )
707 [11:06:50] *** Quits: idhugo__ (~idhugo@replaced-ip ) (Ping timeout: 276 seconds)
708 [11:08:00] *** Joins: centrx (~centrx@replaced-ip )
709 [11:12:06] *** Joins: craigevil (craig@replaced-ip )
710 [11:12:39] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 258 seconds)
711 [11:12:40] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
712 [11:13:13] *** Joins: tnewman (~tnewman@replaced-ip )
713 [11:13:14] *** Joins: gatty (pacman@replaced-ip )
714 [11:13:17] *** Joins: bolovanos_ (~bolovanos@replaced-ip )
715 [11:13:27] *** Joins: sinaowolabi (~Sina@replaced-ip )
716 [11:13:44] *** Joins: centrx (~centrx@replaced-ip )
717 [11:17:41] *** Quits: YWH_1 (~YWH@replaced-ip ) (Quit: Leaving)
718 [11:18:24] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 258 seconds)
719 [11:26:13] *** Joins: Iamahuman (~noname@replaced-ip )
720 [11:26:19] *** Quits: nwe (~nwe@replaced-ip ) (Remote host closed the connection)
721 [11:26:54] *** Joins: banox (~banox@replaced-ip )
722 [11:28:27] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
723 [11:28:45] *** Joins: centrx (~centrx@replaced-ip )
724 [11:28:50] *** Joins: tnewman (~tnewman@replaced-ip )
725 [11:30:08] *** Quits: CyberManifest (~CyberMani@replaced-ip##) (Quit: Textual IRC Client: ##replaced-url
726 [11:30:09] *** Quits: Iamahuman4 (~noname@replaced-ip ) (Ping timeout: 250 seconds)
727 [11:30:32] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
728 [11:30:55] *** Joins: tnewman (~tnewman@replaced-ip )
729 [11:31:28] *** Joins: nwe (~nwe@replaced-ip )
730 [11:32:11] *** Quits: konrados (~konrados@replaced-ip ) (Ping timeout: 240 seconds)
731 [11:34:07] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
732 [11:38:52] *** Quits: n0cto (~nothing@replaced-ip ) (Quit: n0cto)
733 [11:38:59] *** Joins: gry (~test@replaced-ip )
734 [11:39:35] *** Joins: alexrelis[m] (alexrelism@replaced-ip )
735 [11:45:02] *** Joins: centrx (~centrx@replaced-ip )
736 [11:46:41] *** Quits: fearnothing (~fearnothi@replaced-ip ) (Ping timeout: 240 seconds)
737 [11:50:23] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
738 [11:52:29] *** Quits: CxP (~CxP@replaced-ip ) (Quit: bye)
739 [11:53:00] *** Joins: CxP (~CxP@replaced-ip )
740 [11:54:47] *** Joins: Brigo (~Brigo@replaced-ip )
741 [11:57:02] *** Quits: DodgeThis (~DodgeThis@replaced-ip ) (Read error: Connection reset by peer)
742 [11:58:01] *** Quits: d3sync (~d3sync@replaced-ip ) (Read error: Connection reset by peer)
743 [11:58:02] *** Joins: winy (~vince@replaced-ip )
744 [11:58:30] *** Joins: d3sync (~d3sync@replaced-ip )
745 [11:59:59] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Quit: vergissmeinnicht)
746 [12:02:49] *** Joins: riff-IRC (~riff2@replaced-ip )
747 [12:05:35] *** Quits: well_laid_lawn (~Jean-luc@replaced-ip ) (Quit: WeeChat 3.0)
748 [12:05:49] *** Joins: ychaouche (~ychaouche@replaced-ip )
749 [12:05:52] <ychaouche> hello #debian
750 [12:06:42] <ychaouche> What's a command that tells me if a particular package is installed or not ? I used dpkg -s <packagename> but it has lots of output. Is there another way or is that the preferred way ?
751 [12:09:01] <ychaouche> dpkg-query -l seems nice
752 [12:09:02] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
753 [12:09:05] <jelly> that is the preferred way, but if you want a casual look, dpkg -l packagename
754 [12:09:47] <jelly> if SECOND character in the line for that package is "i" the package is installed
755 [12:10:02] *** Quits: dselect (~dselect@replaced-ip ) (Quit: ouch... that hurt)
756 [12:10:09] <jelly> dpkg -l ychaouche'sstuff
757 [12:10:09] <dpkg> No packages found matching ychaouche'sstuff
758 [12:10:18] <jelly> dpkg -l ychaouche'sstuff
759 [12:10:32] <jelly> dpkg -l ychaouche'sstuff
760 [12:10:32] <dpkg> ii ychaouche'sstuff 2.4-4.1 jelly's private stamp collection
761 [12:10:41] *** Joins: centrx (~centrx@replaced-ip )
762 [12:10:46] <alkisg> There's also `dpkg-query -W htop` for even smaller output...
763 [12:11:00] *** Joins: tnewman (~tnewman@replaced-ip )
764 [12:11:19] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Remote host closed the connection)
765 [12:11:20] *** Joins: dselect (~dselect@replaced-ip )
766 [12:11:23] <ychaouche> alkisg: I like dpkg-query -W
767 [12:11:28] <ychaouche> thanks for that
768 [12:11:39] <alkisg> np
769 [12:11:47] <ychaouche> jelly: dpkg -l seems to be identical to dpkg-query -l
770 [12:12:28] <jelly> yes, dpkg command can be a front for dpkg-deb, dpkg-query, etc
771 [12:14:20] *** Joins: sinaowolabi (~Sina@replaced-ip )
772 [12:16:05] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
773 [12:18:17] *** Joins: ax56234 (~NickServ@replaced-ip )
774 [12:18:36] *** Joins: ztx (~ztx@replaced-ip )
775 [12:19:10] *** Joins: centrx (~centrx@replaced-ip )
776 [12:20:47] *** Quits: eclair (~eclairfar@replaced-ip ) (Quit: Leaving)
777 [12:23:35] *** Quits: b1ack0p (~m@replaced-ip ) (Quit: leaving)
778 [12:23:53] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
779 [12:24:17] *** Joins: czesmir (~stefan@replaced-ip )
780 [12:24:18] <themill> Note that "is it currently installed" doesn't mean it's not about to be removed in the next apt run etc
781 [12:27:32] *** Joins: centrx (~centrx@replaced-ip )
782 [12:28:01] *** debhelper sets mode: +l 986
783 [12:28:49] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Remote host closed the connection)
784 [12:29:07] *** Joins: idhugo__ (~idhugo@replaced-ip )
785 [12:29:10] *** Quits: ax56234 (~NickServ@replaced-ip ) (Remote host closed the connection)
786 [12:30:13] *** Quits: Mister00X (quassel@replaced-ip ) (Quit: "I'll be back" — Arnold Schwarzenegger)
787 [12:31:12] *** Quits: idhugo_ (~idhugo@replaced-ip ) (Ping timeout: 245 seconds)
788 [12:31:37] *** Joins: Slashman (~Slash@replaced-ip )
789 [12:32:07] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
790 [12:32:32] *** Joins: sinaowolabi (~Sina@replaced-ip )
791 [12:37:47] *** Joins: forgotmynick (uid24625@replaced-ip )
792 [12:38:18] *** Joins: evilbug (54e88bfe@replaced-ip )
793 [12:38:30] *** Joins: lucad111 (~lucad111@replaced-ip )
794 [12:39:33] *** Quits: ghoti (~paul@replaced-ip ) (Ping timeout: 240 seconds)
795 [12:41:50] *** Joins: centrx (~centrx@replaced-ip )
796 [12:42:26] *** Joins: daregap (~belovent@replaced-ip )
797 [12:42:53] *** Quits: daregap (~belovent@replaced-ip ) (Client Quit)
798 [12:45:08] *** Joins: NetTerminalGene (~Thunderbi@replaced-ip )
799 [12:45:55] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
800 [12:46:25] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
801 [12:46:34] *** Joins: tnewman (~tnewman@replaced-ip )
802 [12:47:09] *** Joins: daregap (~belovent@replaced-ip )
803 [12:47:11] *** Joins: ax562 (~ax562@replaced-ip )
804 [12:48:23] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
805 [12:48:39] *** Joins: tnewman (~tnewman@replaced-ip )
806 [12:51:56] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
807 [12:52:16] *** Joins: tnewman (~tnewman@replaced-ip )
808 [12:52:29] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 252 seconds)
809 [12:55:46] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
810 [12:56:19] *** Joins: tnewman (~tnewman@replaced-ip )
811 [12:56:41] *** Joins: igrtrrt (~igrtrrt@replaced-ip )
812 [12:57:44] *** Quits: tnewman (~tnewman@replaced-ip ) (Read error: Connection reset by peer)
813 [12:58:23] *** Joins: tnewman (~tnewman@replaced-ip )
814 [13:01:09] *** Quits: Jerrynicki (~niklas@replaced-ip ) (Ping timeout: 250 seconds)
815 [13:03:38] *** Joins: centrx (~centrx@replaced-ip )
816 [13:05:00] *** Joins: stree (~stree@replaced-ip )
817 [13:05:01] *** Quits: dpkg (~dpkg@replaced-ip ) (Quit: buh bye!)
818 [13:05:44] *** Joins: dpkg (~dpkg@replaced-ip )
819 [13:06:19] *** Iamahuman is now known as Iamahuman4
820 [13:06:42] *** Quits: JerryXiao (~JerryXiao@replaced-ip ) (Ping timeout: 240 seconds)
821 [13:09:01] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
822 [13:11:36] *** Joins: JerryXiao (~JerryXiao@replaced-ip )
823 [13:11:42] *** Joins: diogenes_ (~diogenes_@replaced-ip )
824 [13:12:00] *** Joins: folti7777 (~folti@replaced-ip )
825 [13:12:10] *** Joins: centrx (~centrx@replaced-ip )
826 [13:13:34] *** Joins: ljmf00 (ljmf0nullm@replaced-ip )
827 [13:14:39] *** Quits: [Lemmy] (~mathias@replaced-ip##) (Quit: ZNC 1.6.2 - ##replaced-url
828 [13:16:45] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
829 [13:18:41] *** Quits: rustyshackleford (uid236774@replaced-ip ) (Quit: Connection closed for inactivity)
830 [13:19:25] *** Joins: [Lemmy] (~mathias@replaced-ip )
831 [13:27:45] *** Joins: captSamIngram (~Thunderbi@replaced-ip )
832 [13:28:01] *** debhelper sets mode: +l 992
833 [13:32:42] *** Quits: szorfein (~daggoth@replaced-ip ) (Remote host closed the connection)
834 [13:32:45] *** Quits: gatty (pacman@replaced-ip ) ()
835 [13:33:05] *** Joins: szorfein (~daggoth@replaced-ip )
836 [13:33:26] *** Quits: szorfein (~daggoth@replaced-ip ) (Remote host closed the connection)
837 [13:34:58] *** Quits: ValeraRozuvan (~ValeraRoz@replaced-ip ) (Quit: ValeraRozuvan)
838 [13:35:03] *** Joins: szorfein (~daggoth@replaced-ip )
839 [13:36:27] *** Joins: shabius_ (~shabius@replaced-ip )
840 [13:37:13] *** Quits: Teacup (~qteacup@replaced-ip ) (Ping timeout: 252 seconds)
841 [13:37:29] *** Quits: TheCreeper (~TheCreepe@replaced-ip ) (Ping timeout: 245 seconds)
842 [13:37:32] *** Joins: spikhoff (sid490234@replaced-ip )
843 [13:37:33] *** Quits: thiras (~thiras@replaced-ip ) (Remote host closed the connection)
844 [13:37:51] *** Joins: thiras (~thiras@replaced-ip )
845 [13:38:02] *** Joins: Teacup (~qteacup@replaced-ip )
846 [13:38:03] *** Quits: shabius (~shabius@replaced-ip ) (Ping timeout: 260 seconds)
847 [13:45:22] *** Joins: Tom01 (~tom@replaced-ip )
848 [13:45:30] *** Quits: folti7777 (~folti@replaced-ip ) (Quit: Leaving.)
849 [13:45:51] *** Joins: Hercules (~Genkei@replaced-ip )
850 [13:51:19] *** Joins: konrados (~konrados@replaced-ip )
851 [13:51:59] *** Joins: tlaxkit (~konversat@replaced-ip )
852 [13:53:41] *** Joins: radkos (~radkos@replaced-ip )
853 [13:53:53] <TheBigK> i have an interesting problem to think about. may be someone came across something similar in the past. i have an apache webserver which does work as a balancer between tomcat backend servers... I use JSESSIONID as a stickysession cookie. the problem is, that the decision which appserver is used is based on the overall number of requests while the decision is only made when the user has no JESSIONID set. that means we have not a
854 [13:53:53] <TheBigK> very balanced user to appserver balancing in it. is there a better way than just splitting the workers between no session id and having a session id that i just count the traffic before the user is logged in?
855 [13:55:00] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: Bin weg.)
856 [13:57:40] *** Joins: matrixbot_bartab (~matrixbot@replaced-ip )
857 [13:58:46] *** Joins: zeden (~user@replaced-ip )
858 [14:04:06] *** Quits: Abrax (~Abrax@replaced-ip ) (Ping timeout: 240 seconds)
859 [14:11:00] *** Joins: igrtrrt_ (~igrtrrt@replaced-ip )
860 [14:11:01] *** Quits: igrtrrt (~igrtrrt@replaced-ip ) (Read error: Connection reset by peer)
861 [14:11:15] *** igrtrrt_ is now known as igrtrrt
862 [14:13:25] <jelly> TheBigK, do the backends share session state?
863 [14:13:28] *** Joins: saxin (~saxin@replaced-ip )
864 [14:13:58] <TheBigK> jelly: no. its just the cookie in the browser... when u delete the cookie u lose the session
865 [14:14:02] *** Joins: diniwed (~gavron@replaced-ip )
866 [14:14:36] <jelly> then you don't have other options but to use sticky session
867 [14:14:45] *** Quits: ychaouche (~ychaouche@replaced-ip ) (Quit: Konversation terminated!)
868 [14:14:45] *** Quits: bamdad (~bamdad@replaced-ip ) (Ping timeout: 240 seconds)
869 [14:14:59] *** Joins: bamdad_ (~bamdad@replaced-ip )
870 [14:15:34] <TheBigK> jelly: i know. the question if i can split the traffic between not logged in and logged in... but i probably need to balancers for that... which means doubling the heartbeat... which is kind of expensive in its way
871 [14:15:35] *** Joins: centrx (~centrx@replaced-ip )
872 [14:15:47] *** Joins: Jerrynicki (~niklas@replaced-ip )
873 [14:15:48] <TheBigK> * two balancers
874 [14:16:26] *** Quits: lithiumpt (~lithiumpt@replaced-ip ) (Read error: Connection reset by peer)
875 [14:17:07] *** Joins: ikus060 (~ikus060@replaced-ip )
876 [14:17:42] <jelly> I don't remember what the options were in mod_proxy, we mostly switched to haproxy instead
877 [14:19:32] <jelly> try asking in #httpd
878 [14:19:40] <TheBigK> u read my mind... already did
879 [14:19:42] *** Quits: dreamon (~dreamon@replaced-ip ) (Ping timeout: 240 seconds)
880 [14:20:12] <TheBigK> i read the documentation... didnt see anythign that would fit my needs... :)
881 [14:20:20] <jelly> and/or investigate other options for reverse proxy frontend
882 [14:20:27] <TheBigK> like ?
883 [14:20:37] <jelly> haproxy, or maybe nginx
884 [14:20:56] *** Quits: Iamahuman4 (~noname@replaced-ip ) (Quit: Konversation terminated!)
885 [14:21:00] <TheBigK> i never used haproxy. and i wouldnt think switching to nginx would help me there...
886 [14:21:33] <jelly> don't think, investigate
887 [14:21:37] <TheBigK> i just say fuck u developers... u develop ur freaking application stateless... and im done ;D
888 [14:22:03] <TheBigK> im kidding obviously ;D
889 [14:22:19] <jelly> or ask the devs to add a distributed db for session state (redis, mongo)
890 [14:22:56] *** Joins: gibarian (~jgratero@replaced-ip )
891 [14:22:58] *** Joins: d1cor (~d1cor@replaced-ip )
892 [14:23:07] <TheBigK> thats what i meant... but i believe thats not as easy said as done... im pretty happy that the devs doing microservices have to develop stateless :)
893 [14:24:06] <TheBigK> that makes my life a lot easier
894 [14:25:24] <TheBigK> jelly: why did u move to haproxy? im just curious. any specific reasons? besides performance obviously
895 [14:27:27] *** Quits: zaggynl (~zaggynl@replaced-ip ) (Quit: settings)
896 [14:29:36] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Ping timeout: 260 seconds)
897 [14:32:47] <ljmf00> debian staff, the ipv6 A record is down for deb.debian.org, right?
898 [14:33:07] <TheBigK> ljmf00: no its not
899 [14:33:23] <TheBigK> debian.map.fastlydns.net.
900 [14:33:23] <TheBigK> 2a04:4e42:62::644
901 [14:33:56] <TheBigK> deb.debian.org is a CNAME
902 [14:34:43] *** Joins: Mister00X (quassel@replaced-ip )
903 [14:35:19] *** Joins: badsektor (~badsektor@replaced-ip )
904 [14:35:39] <TheBigK> also the primary nameserver respond the same as my local DNS... so everything is fine
905 [14:37:53] *** Quits: jpe (~jp@replaced-ip ) (Ping timeout: 246 seconds)
906 [14:39:12] *** Joins: Zajt (c3438f6a@replaced-ip )
907 [14:40:35] *** Quits: uvolmer (~uvolmer@replaced-ip ) (Remote host closed the connection)
908 [14:41:01] *** Joins: Abrax (~Abrax@replaced-ip )
909 [14:41:31] *** Quits: sweatsuit (~sweatsuit@replaced-ip ) (Ping timeout: 260 seconds)
910 [14:43:18] *** Joins: ddsys (~ddsys@replaced-ip )
911 [14:46:31] *** Joins: debsan (~debsan@replaced-ip )
912 [14:48:01] *** debhelper sets mode: +l 998
913 [14:48:27] *** Joins: zaggynl (~zaggynl@replaced-ip )
914 [14:48:30] <jelly> TheBigK, compared to apache, flexibility
915 [14:49:18] <jelly> ljmf00, deb.debian.org is a CDN. Even if you see the same IP it might be routed to a different machine close to you, and that one might be down
916 [14:50:14] *** Joins: sweatsuit (~sweatsuit@replaced-ip )
917 [14:51:32] *** Joins: idhugo_ (~idhugo@replaced-ip )
918 [14:51:33] *** Joins: dreamon (~dreamon@replaced-ip )
919 [14:52:40] *** Quits: jtdowney (~jtdowney@replaced-ip ) (Quit: Bye)
920 [14:53:26] *** Joins: jtdowney (~jtdowney@replaced-ip )
921 [14:53:52] *** Quits: idhugo__ (~idhugo@replaced-ip ) (Ping timeout: 252 seconds)
922 [14:54:36] *** Quits: jtdowney (~jtdowney@replaced-ip ) (Client Quit)
923 [14:54:55] *** Quits: mortderi1 (~mortderir@replaced-ip ) (Quit: WeeChat 2.8)
924 [14:55:07] *** Joins: jtdowney (~jtdowney@replaced-ip )
925 [14:55:34] *** Joins: Haudegen (~quassel@replaced-ip )
926 [15:01:22] <TheBigK> jelly: but he asked for the record... i was just very exact with my answer ;D
927 [15:02:37] <TheBigK> sometimes theres something evil in me :p
928 [15:02:40] *** Joins: uvolmer (~uvolmer@replaced-ip )
929 [15:05:14] *** Joins: M1zuki (~iridium@replaced-ip )
930 [15:06:32] *** Quits: Abrax (~Abrax@replaced-ip ) (Quit: Leaving)
931 [15:07:18] *** Joins: Abrax (~Abrax@replaced-ip )
932 [15:11:50] *** Quits: Abrax (~Abrax@replaced-ip ) (Quit: Leaving)
933 [15:13:23] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 265 seconds)
934 [15:13:29] *** Joins: Abrax (~Abrax@replaced-ip )
935 [15:18:48] *** Joins: teksimian (~teksimian@replaced-ip )
936 [15:19:21] *** Joins: mtn (~mtn@replaced-ip )
937 [15:19:41] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 276 seconds)
938 [15:21:03] *** Joins: lithiumpt (~lithiumpt@replaced-ip )
939 [15:24:31] *** Joins: Ischwitch (~Ingvix@replaced-ip )
940 [15:24:57] *** Quits: Ingvix (~Ingvix@replaced-ip ) (Ping timeout: 245 seconds)
941 [15:24:57] *** Ischwitch is now known as Ingvix
942 [15:24:58] *** Quits: pyre (~pyre@replaced-ip ) (Ping timeout: 240 seconds)
943 [15:26:13] *** Joins: stree (~stree@replaced-ip )
944 [15:26:52] *** Quits: freebench (~freebench@replaced-ip ) (Ping timeout: 252 seconds)
945 [15:28:57] *** Quits: Zajt (c3438f6a@replaced-ip ) (Quit: Connection closed)
946 [15:33:45] *** Joins: emOne (~emOne@replaced-ip )
947 [15:34:05] *** Quits: szorfein (~daggoth@replaced-ip ) (Remote host closed the connection)
948 [15:34:13] *** Joins: odnes (~odnes@replaced-ip )
949 [15:34:54] *** Joins: szorfein (~daggoth@replaced-ip )
950 [15:37:10] *** Joins: H-var (~H-var@replaced-ip )
951 [15:38:01] *** debhelper sets mode: +l 1005
952 [15:38:48] <H-var> hello, can somebody help me out a little, please?
953 [15:39:02] <H-var> I am following this article to compile a kernel on debian: replaced-url
954 [15:39:19] <H-var> but during compilation, somewhere in the middle, I am getting this error
955 [15:39:46] <H-var> and I am a complete newbie, but I need to compile this kernel because of the hardware that I have that is not yet supported on debian
956 [15:39:50] *** Joins: shtrb (~shtrb@replaced-ip )
957 [15:39:59] <H-var> so I need to compile it on my own in order to make my new hardware work
958 [15:40:13] <wintersky> which release did you pick?
959 [15:40:19] <ratrace> H-var: which kernel are you compiling, what patches are you adding?
960 [15:40:37] *** Quits: Fusl (fusl@replaced-ip ) (Ping timeout: 250 seconds)
961 [15:40:48] *** Joins: rbr (~rober@replaced-ip )
962 [15:41:02] *** Quits: pppktz (~pppktz@replaced-ip##) (Quit: ZNC 1.7.2+deb3 - ##replaced-url
963 [15:41:03] <wintersky> you could go the kernel,org kernel
964 [15:41:09] *** Quits: Mathisen (mathisen@replaced-ip##) (Quit: ZNC 1.7.2+deb3 - ##replaced-url
965 [15:41:33] <H-var> I think I have enabled all of the possible options, and I am trying to compile the 5.12 kernel
966 [15:41:36] <ratrace> H-var: also what error
967 [15:42:04] <H-var> I lost the log, so right now I am re-compiling it again in order to be able to get the error again so I can share it
968 [15:42:22] <H-var> I will paste the output of the terminal in a second
969 [15:42:26] <H-var> it doesn't go too far
970 [15:43:22] <ratrace> H-var: do you know if your hardware is supported in 5.10? Do you know you really need 5.12+ ?
971 [15:43:40] <wintersky> the safwest way to compile the kernel on debian is to copy the config from /boot to your kernel source directory
972 [15:44:15] <H-var> i contacted the intel's developer of the driver for intel AX210, and they informed me that it is supported from 5.11 and on
973 [15:44:17] *** Joins: Fusl (fusl@replaced-ip )
974 [15:44:22] *** Joins: LuKaRo_ (~LuKaRo@replaced-ip )
975 [15:44:31] *** Quits: shtrb (~shtrb@replaced-ip ) (Ping timeout: 260 seconds)
976 [15:44:31] *** Quits: LuKaRo (~LuKaRo@replaced-ip ) (Ping timeout: 260 seconds)
977 [15:44:49] <jhutchins> ,kernels
978 [15:44:50] <judd> Available kernel versions are: experimental: 5.10.0-trunk-686 (5.10.2-1~exp1); sid: 5.10.0-6-686 (5.10.28-1); bullseye: 5.10.0-6-686 (5.10.28-1); buster-backports: 5.10.0-0.bpo.5-686-pae (5.10.24-1~bpo10+1); buster: 4.19.0-16-686-pae (4.19.181-1); stretch-backports: 4.19.0-0.bpo.9-686-pae (4.19.118-2+deb10u1~bpo9+1); stretch: 4.19.0-0.bpo.16-686 (4.19.181-1~deb9u1); jessie-
979 [15:44:51] <judd> backports: 4.9.0-0.bpo.6-686-pae (4.9.88-1+deb9u1~bpo8+1); jessie: 4.9.0-0.bpo.12-686 (4.9.210-1+deb9u1~deb8u1)
980 [15:45:04] *** Quits: tomboy64 (~tomboy64@replaced-ip ) (Quit: Off to see the wizard.)
981 [15:45:47] *** Joins: lazr47 (~lazr47@replaced-ip )
982 [15:45:50] *** Joins: Mathisen (mathisen@replaced-ip )
983 [15:45:58] <ratrace> H-var: also, do you have nvidia proprietary driver or any other DKMS module?
984 [15:46:50] <H-var> here is the error: replaced-url
985 [15:47:06] <H-var> I'm on AMD with integrated graphics
986 [15:47:46] *** Joins: pppktz (~pppktz@replaced-ip )
987 [15:47:48] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Quit: vergissmeinnicht)
988 [15:48:08] <jelly> !kernels
989 [15:48:08] *** Joins: AskerX (c3b5a31d@replaced-ip )
990 [15:48:10] <dpkg> Linux kernel versions, stable: 5.12, mainline: 5.12, stable 5.11: 5.11.17, longterm 5.10: 5.10.33, longterm 5.4: 5.4.115, longterm 4.19: 4.19.189, longterm 4.14: 4.14.232, longterm 4.9: 4.9.268, longterm 4.4: 4.4.268, linux-next: next-20210428
991 [15:48:21] <ratrace> H-var: ah that's about EFI certificates...
992 [15:48:23] <towo^work> H-var, remove the debian cert from your .config
993 [15:48:29] <wintersky> you might want at ##linux or pick a prebuilt kernel with pinning
994 [15:48:54] <wintersky> ask at ##linux *
995 [15:49:16] <towo^work> why he should
996 [15:49:17] <towo^work> ?
997 [15:49:26] <jelly> H-var, please also file a bug to for the 5.10 kernel package, debian kernel team does backport drivers if feasible
998 [15:49:31] <towo^work> the problem comes because he is using the config from debian
999 [15:49:33] *** Quits: igrtrrt (~igrtrrt@replaced-ip ) (Ping timeout: 240 seconds)
1000 [15:49:33] <ratrace> H-var: comment out the CONFIG_SYSTEM_TRUSTED_KEYS, is the fastest workaround, but _best_ one is to supply a certificate
1001 [15:50:32] <H-var> I found it: CONFIG_SYSTEM_TRUSTED_KEYS="debian/certs/debian-uefi-certs.pem"
1002 [15:50:38] <H-var> what do I do with this line?
1003 [15:50:49] <ratrace> comment it out, put a # in front of it
1004 [15:50:50] <towo^work> comment it
1005 [15:51:15] <H-var> but my UEFI system will be able to load, right?
1006 [15:51:34] <ratrace> run `make clean` and rerun `make bindeb-pkg`
1007 [15:51:37] <trysten> i just figured out how to get Mutt to reconnect to an IMAP mailbox!
1008 [15:51:54] <ratrace> H-var: should be able to yes, just without secureboot
1009 [15:53:23] <ratrace> H-var: oh also, compile faster by giving make a -j with numer of cores you have. so if oyu have 4, make -j4 bindeb-pkg .. assuming you want to give it that many
1010 [15:53:37] <jhutchins> Sigh. I keep telling people: the purpose of secureboot is to prevent people from installing linux.
1011 [15:53:59] <ratrace> H-var: oh you already are using -j . okay.
1012 [15:53:59] *** Quits: p9 (~9p@replaced-ip ) (Ping timeout: 265 seconds)
1013 [15:54:06] <jhutchins> If you think you need it, there's something you don't understand.
1014 [15:54:54] <ratrace> jhutchins: I don't disagree but modern hardware is increasing refusing to boot without secureboot
1015 [15:55:00] <ratrace> somethign something microsoft contract something something
1016 [15:55:12] <jelly> trysten, well??
1017 [15:55:47] <jelly> you don't say something like that and then leave us hanging
1018 [15:56:03] *** Joins: centrx (~centrx@replaced-ip )
1019 [15:56:46] *** Joins: kliq (~kliq@replaced-ip )
1020 [15:57:05] <H-var> how can I make a UEFI certificate for debian?
1021 [15:57:10] <H-var> is it easy?
1022 [15:57:24] <H-var> so I won't have to uncomment it?
1023 [15:57:27] *** Joins: shtrb (~shtrb@replaced-ip )
1024 [15:57:40] <H-var> comment*
1025 [15:57:48] *** Joins: jpe (~jp@replaced-ip )
1026 [16:00:33] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
1027 [16:00:49] <jhutchins> ratrace: Every implementation I know of has the ability to disable it.
1028 [16:00:50] *** Quits: fflori (~fflori@replaced-ip ) (Read error: Connection reset by peer)
1029 [16:01:33] *** Quits: bamdad_ (~bamdad@replaced-ip ) (Ping timeout: 240 seconds)
1030 [16:01:38] <H-var> is it possible that some of my debian packages will stop working, if I install kernel 5.12?
1031 [16:01:57] <H-var> all my packages are from the debian's repositories
1032 [16:02:10] *** Quits: tagomago (~tagomago@replaced-ip ) (Quit: Konversation terminated!)
1033 [16:02:14] <jhutchins> H-var: That's the thing about un-tested software: we don't know.
1034 [16:02:17] *** Quits: winy (~vince@replaced-ip ) (Quit: Leaving.)
1035 [16:02:19] *** Joins: bamdad (~bamdad@replaced-ip )
1036 [16:03:10] <H-var> well, is this something that is likely to happen, or it happens only rarely?
1037 [16:03:12] *** Joins: Aavar (aavar@replaced-ip )
1038 [16:03:17] <H-var> usually
1039 [16:03:38] *** Joins: tagomago (~tagomago@replaced-ip )
1040 [16:04:06] <wintersky> just pin a prebuilt kernel from sid
1041 [16:04:11] <wintersky> it is not hard
1042 [16:04:41] <jhutchins> wintersky: He wants a developmental kernel that isn't in sid yet.
1043 [16:05:12] <wintersky> then tell him to pick a realese that builds with the /boot debian config
1044 [16:05:15] <jhutchins> H-var: The nice thing is you can boot to a previous kernel if the new one fails.
1045 [16:05:18] <wintersky> since he wont listen to me
1046 [16:06:38] *** Quits: ztx (~ztx@replaced-ip ) (Quit: ztx)
1047 [16:07:23] *** Joins: centrx (~centrx@replaced-ip )
1048 [16:09:15] *** Quits: AskerX (c3b5a31d@replaced-ip ) (Quit: Connection closed)
1049 [16:09:17] <H-var> my problem with the /boot debian config is that I am doing all this in order to get a support for this new hardware
1050 [16:09:18] *** Joins: Spr1ng (~Spr1ng@replaced-ip )
1051 [16:09:40] <H-var> and it is not registered in /boot config because the current kernel cannot understand it
1052 [16:09:55] <H-var> so I have to detach the hardware in order to be able to boot at all
1053 [16:10:18] <H-var> so using the /boot config is useless for my purpose...
1054 [16:10:20] <H-var> :(
1055 [16:10:37] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
1056 [16:11:30] <wintersky> ok so
1057 [16:11:35] <wintersky> use the config from /boot
1058 [16:11:36] <wintersky> and
1059 [16:11:49] *** Quits: centrx (~centrx@replaced-ip ) (Ping timeout: 250 seconds)
1060 [16:11:49] <wintersky> adjust it for your needs with menuconfig
1061 [16:12:07] <wintersky> then build it and you should be fine
1062 [16:12:12] <H-var> but I do not know what I need to enable. Can you help me?
1063 [16:12:20] *** Quits: drzacek (~drzacek@replaced-ip ) (Quit: Leaving)
1064 [16:12:36] <H-var> I need full support for intel AX210, both wifi 6 and bluetooth
1065 [16:13:15] <wintersky> you can search trought menuconfig
1066 [16:13:21] <wintersky> just hit "/"
1067 [16:13:30] <wintersky> then enter what you want and hit enter
1068 [16:13:44] <wintersky> you can go like / and then ax210
1069 [16:15:13] <wintersky> that's the easy way
1070 [16:17:24] <ljmf00> TheBigK: maybe it's my ipv6 routing not properly working. There's a way to force apt to use ipv4? because pinging ipv4 is working just fine
1071 [16:17:28] *** Quits: konrados (~konrados@replaced-ip ) (Ping timeout: 252 seconds)
1072 [16:19:40] <jelly> ljmf00, echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99disable-ipv6
1073 [16:19:41] *** Joins: zbychuk (~zbychuk@replaced-ip )
1074 [16:19:48] <Dagger> use `apt-get -o Acquire::ForceIPv4=true`
1075 [16:19:58] <Dagger> don't disable it permanently just because of a temporary routing issue...
1076 [16:20:53] *** Joins: _Matth_ (~Matth@replaced-ip )
1077 [16:21:24] <H-var> wintersky "No matches found. " ehh..
1078 [16:21:43] <H-var> there are no matches for ax210
1079 [16:21:49] <jelly> dpkg, apt noipv6 is apt/apt-get/aptitude -o Acquire::ForceIPv4=true ... for a one-time run, or echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99disable-ipv6 for a more permament disabling of ipv6 access to repositories
1080 [16:21:50] <dpkg> jelly: okay
1081 [16:21:56] <wintersky> maye it's called otherwise then
1082 [16:21:56] <H-var> it's probably called something else
1083 [16:22:25] *** Joins: enoq (~textual@replaced-ip )
1084 [16:22:29] *** Quits: Mister00X (quassel@replaced-ip ) (Quit: "I'll be back" — Arnold Schwarzenegger)
1085 [16:22:46] <H-var> the codename is typhoonpeak
1086 [16:22:54] <wintersky> what is this ax210 device then?
1087 [16:22:54] <H-var> for ax210 in linux community
1088 [16:23:04] <wintersky> what is this ax210 device btw?
1089 [16:23:25] <H-var> it's the latest network gadget from intel
1090 [16:23:34] <H-var> it supports wifi 6 and bt 5.2
1091 [16:23:42] *** Joins: nitefall (~thewellin@replaced-ip )
1092 [16:23:56] <wintersky> and which kernel sources did you get?
1093 [16:23:57] <H-var> it's made for mini pci-e and costs only 18 bucks
1094 [16:24:49] <H-var> I got me those 5.12 ones
1095 [16:25:39] <H-var> wintersky is there a command to automatically say yes or "m" to all the things possible in the kernel during compilation?
1096 [16:25:54] <wintersky> well
1097 [16:25:56] <H-var> like make deb-pkg -Y all or something like that?
1098 [16:26:02] <wintersky> you caould make every driver a module
1099 [16:26:03] *** Quits: shtrb (~shtrb@replaced-ip ) (Ping timeout: 260 seconds)
1100 [16:26:35] <H-var> the only drawback is the space required, right?
1101 [16:26:56] <H-var> it won't use any other system resources, if I compile everything that there is, right?
1102 [16:27:16] <wintersky> yerah but you'll need initrd and i'm unsure will it work at all
1103 [16:27:21] *** Quits: forgotmynick (uid24625@replaced-ip ) (Quit: Connection closed for inactivity)
1104 [16:27:29] <H-var> I mean it does not load those unneded drivers etc into the system right? Only the ones necessary?
1105 [16:27:38] <wintersky> so what's the exact release you want to build again?
1106 [16:27:52] <H-var> I wanted to try if it will work on 5.12
1107 [16:27:52] <wintersky> i'm igor to help you out so tell me the precise number
1108 [16:28:04] <wintersky> you said you need at least 5.2
1109 [16:28:06] <wintersky> ok
1110 [16:28:22] <H-var> 5.12
1111 [16:28:25] <wintersky> downloading 5.12 as we speak
1112 [16:28:44] <H-var> I'm currently on debian with bullseys-backports enabled, 5.10.0-6-amd64
1113 [16:29:05] <jelly> H-var, 5.10 fails, right?
1114 [16:29:14] <H-var> can you please tag me so I can see the message later because I need to go to work T_T
1115 [16:29:28] <H-var> yes, 5.10 fails to load the bluetooth and usb part of the device
1116 [16:29:40] *** Joins: p9 (~9p@replaced-ip )
1117 [16:29:45] <ljmf00> <jelly "ljmf0null, echo 'Acquire::ForceI"> thanks :)
1118 [16:29:45] <jelly> oh, but wifi works
1119 [16:30:02] <H-var> yes, buyt only wifi 2.4ghz
1120 [16:30:16] <H-var> wifi 5ghz and 6ghz are supported in 5.11>
1121 [16:30:46] *** Quits: _Matth_ (~Matth@replaced-ip ) (Ping timeout: 260 seconds)
1122 [16:30:48] <H-var> but the bluetooth part breaks the system during boot, creating an infinite loop of trying to recognize the device
1123 [16:30:55] <H-var> aver and over forever
1124 [16:31:34] <jelly> fun
1125 [16:31:55] <JyZyXEL> nice to hear as i got a AX210 waiting in the mail :)
1126 [16:32:10] *** Quits: odnes (~odnes@replaced-ip ) (Ping timeout: 265 seconds)
1127 [16:35:07] <wintersky> H-var: i think you want the ipw2100 driver
1128 [16:35:09] *** Joins: ValeraRozuvan (~ValeraRoz@replaced-ip )
1129 [16:35:28] <wintersky> to be safe you can set all intel wireless drivers build as modules
1130 [16:35:47] <wintersky> then use lspci -k to see which one gets in use
1131 [16:37:34] *** Joins: odnes (~odnes@replaced-ip )
1132 [16:38:03] <wintersky> also, remember about firmware
1133 [16:39:35] *** Joins: idhugo__ (~idhugo@replaced-ip )
1134 [16:39:37] *** Joins: sayola (~vekto@replaced-ip )
1135 [16:40:33] *** Joins: konrados (~konrados@replaced-ip )
1136 [16:40:54] *** Joins: shtrb (~shtrb@replaced-ip )
1137 [16:42:48] *** Quits: idhugo_ (~idhugo@replaced-ip ) (Ping timeout: 265 seconds)
1138 [16:44:15] *** Joins: bertbob (~bertbob@replaced-ip )
1139 [16:46:48] *** Joins: Filohuhum (~filohuhum@replaced-ip )
1140 [16:47:44] *** Quits: moldorcoder7 (~moldorcod@replaced-ip ) (Ping timeout: 252 seconds)
1141 [16:48:26] *** Quits: lankanmon (~LKNnet@replaced-ip ) (Ping timeout: 240 seconds)
1142 [16:49:16] *** Joins: moldorcoder7 (~moldorcod@replaced-ip )
1143 [16:51:35] *** Quits: mibo (~mibo@replaced-ip ) (Quit: Leaving.)
1144 [16:52:12] *** Quits: odnes (~odnes@replaced-ip ) (Remote host closed the connection)
1145 [16:52:29] *** Quits: wallacer (~quassel@replaced-ip ) (Ping timeout: 245 seconds)
1146 [16:52:34] *** Joins: odnes (~odnes@replaced-ip )
1147 [16:55:59] *** Joins: winy (~vince@replaced-ip )
1148 [16:57:56] *** Quits: rbr (~rober@replaced-ip ) (Quit: Konversation terminated!)
1149 [16:58:38] *** Quits: Slumlord (~Slumlord@replaced-ip ) (Quit: Leaving)
1150 [17:02:34] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1151 [17:05:01] *** Joins: wallacer (~quassel@replaced-ip )
1152 [17:05:11] *** Quits: odnes (~odnes@replaced-ip ) (Ping timeout: 240 seconds)
1153 [17:05:57] *** Quits: tlaxkit (~konversat@replaced-ip ) (Quit: Konversation terminated!)
1154 [17:09:04] *** Joins: rustyshackleford (uid236774@replaced-ip )
1155 [17:10:17] *** Joins: _Matth_ (~Matth@replaced-ip )
1156 [17:10:33] *** Joins: Slumlord (~Slumlord@replaced-ip )
1157 [17:11:51] *** Quits: Tom01 (~tom@replaced-ip ) (Remote host closed the connection)
1158 [17:15:57] *** Joins: ChmEarl (~chmearl@replaced-ip )
1159 [17:17:49] *** Quits: oxek (~oxek@replaced-ip ) (Quit: oxek)
1160 [17:20:26] *** Quits: dreamon (~dreamon@replaced-ip ) (Remote host closed the connection)
1161 [17:24:46] *** Quits: _Matth_ (~Matth@replaced-ip ) (Ping timeout: 240 seconds)
1162 [17:25:46] *** Quits: idhugo__ (~idhugo@replaced-ip ) (Ping timeout: 240 seconds)
1163 [17:29:04] *** Joins: Mister00X (quassel@replaced-ip )
1164 [17:30:03] *** Quits: Antioch047 (~Antioch@replaced-ip##) (Quit: The Lounge - ##replaced-url
1165 [17:30:51] *** Quits: ax562 (~ax562@replaced-ip ) (Quit: Leaving)
1166 [17:34:11] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 240 seconds)
1167 [17:35:34] *** Quits: \\Mr_C\\ (~mrc@replaced-ip ) (Quit: Ping timeout: 999,999,999 years)
1168 [17:39:38] *** Quits: gibarian (~jgratero@replaced-ip ) (Quit: Leaving)
1169 [17:40:20] *** Quits: diniwed (~gavron@replaced-ip ) (Quit: WeeChat 2.3)
1170 [17:42:30] *** Joins: freebench (~freebench@replaced-ip )
1171 [17:42:57] *** Joins: ax562 (~ax562@replaced-ip )
1172 [17:43:15] *** Joins: catman370 (~catman@replaced-ip )
1173 [17:45:18] *** Quits: ikus060 (~ikus060@replaced-ip ) (Quit: Leaving)
1174 [17:47:19] *** Quits: catman370 (~catman@replaced-ip ) (Client Quit)
1175 [17:47:39] *** Joins: stree (~stree@replaced-ip )
1176 [17:49:46] *** Quits: enoq (~textual@replaced-ip##) (Quit: Textual IRC Client: ##replaced-url
1177 [17:51:02] *** Quits: SkIzZaTo (admin@replaced-ip ) (Ping timeout: 260 seconds)
1178 [17:51:10] *** Joins: catman370 (~catman@replaced-ip )
1179 [17:52:33] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: Bin weg.)
1180 [17:55:37] *** Quits: czesmir (~stefan@replaced-ip ) (Quit: leaving)
1181 [17:58:01] *** debhelper sets mode: +l 998
1182 [18:00:19] *** Joins: diniwed (~gavron@replaced-ip )
1183 [18:00:45] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 240 seconds)
1184 [18:01:33] *** Quits: diniwed (~gavron@replaced-ip ) (Client Quit)
1185 [18:02:12] *** Joins: lejocelyn (~lejocelyn@replaced-ip )
1186 [18:02:14] *** Quits: kliq (~kliq@replaced-ip ) (Ping timeout: 260 seconds)
1187 [18:02:48] *** Joins: adapter (~adapter@replaced-ip )
1188 [18:02:53] <lejocelyn> Hi, is there someone speaking fluently Lithuanian by any luck ? :D
1189 [18:03:23] *** Joins: idhugo__ (~idhugo@replaced-ip )
1190 [18:03:34] <lejocelyn> if so, what do you think of the pavardė in Gabija Eglėkutė?
1191 [18:04:12] *** Quits: d1cor (~d1cor@replaced-ip ) (Ping timeout: 240 seconds)
1192 [18:04:20] <lejocelyn> sorry, it might be a bit out of topic for this channel, maybe contact me by private message
1193 [18:04:45] *** Quits: Filohuhum (~filohuhum@replaced-ip ) (Ping timeout: 240 seconds)
1194 [18:04:51] *** Joins: dadinn (~dadinn@replaced-ip )
1195 [18:06:52] *** Joins: segamain (~segamain@replaced-ip )
1196 [18:07:13] <segamain> is repo and source the same thing ?
1197 [18:09:37] <alkisg> segamain: repository is a web site with debian packages. "apt source" is a URL to a debian repository. "source code" is the code of a program.
1198 [18:09:54] <alkisg> cat /etc/apt/sources.list, to see some "apt sources"
1199 [18:11:47] *** Joins: bswinnerton6 (~bswinnert@replaced-ip )
1200 [18:12:53] *** Quits: bswinnerton (~bswinnert@replaced-ip ) (Ping timeout: 240 seconds)
1201 [18:12:53] *** bswinnerton6 is now known as bswinnerton
1202 [18:13:14] *** Joins: sauvin_ (sauvin@replaced-ip )
1203 [18:14:14] *** Quits: klaas (~klaas@replaced-ip##) (Quit: ZNC 1.8.2 - ##replaced-url
1204 [18:14:29] <segamain> how can I delete a non debian repo ? I don't see any in the apt source.list btw ?
1205 [18:15:29] <sney> segamain: jhutchins already answered your question in the other #debian, please don't crosspost
1206 [18:15:30] *** Joins: klaas (~klaas@replaced-ip )
1207 [18:15:49] *** Quits: sauvin (~sauvin@replaced-ip ) (Ping timeout: 245 seconds)
1208 [18:16:12] <ndorf> segamain: check /etc/apt/sources.list.d/ directory as well
1209 [18:17:14] <segamain> ndorf: thx
1210 [18:17:19] <jelly> how many #debians are there?!?!
1211 [18:17:43] <segamain> jelly: 5
1212 [18:17:55] *** Quits: chele (~chele@replaced-ip ) (Ping timeout: 252 seconds)
1213 [18:19:46] *** Quits: jpe (~jp@replaced-ip ) (Ping timeout: 240 seconds)
1214 [18:20:48] *** Quits: uid_max (~samw@replaced-ip ) (Quit: Leaving)
1215 [18:21:27] *** Joins: oxek (~oxek@replaced-ip )
1216 [18:22:14] *** Joins: mthe878 (~mthe@replaced-ip )
1217 [18:22:27] <segamain> is it normal that the 'sources.list.d/' is empty ?
1218 [18:24:00] <GNU\colossus> yes
1219 [18:24:05] *** Joins: marcello1 (~marcello1@replaced-ip )
1220 [18:24:18] *** Quits: marcello1 (~marcello1@replaced-ip ) (Client Quit)
1221 [18:26:28] *** Quits: ledeni (~ledeni@replaced-ip ) (Quit: ⚡Leaving⚡)
1222 [18:26:50] *** Joins: ledeni (~ledeni@replaced-ip )
1223 [18:36:18] *** Joins: greycat (~greg@replaced-ip )
1224 [18:39:35] *** Quits: szorfein (~daggoth@replaced-ip ) (Remote host closed the connection)
1225 [18:40:00] *** Joins: szorfein (~daggoth@replaced-ip )
1226 [18:42:11] *** Joins: afidegnum (~user@replaced-ip )
1227 [18:42:40] *** Joins: rsx (~rsx@replaced-ip )
1228 [18:42:55] <segamain> what are binaries ?
1229 [18:43:08] <greycat> In general, it refers to a compiled program that can be executed.
1230 [18:44:32] <greycat> But in Debian, binary packages may contain things other than compiled programs. Scripts, data files, etc. In that case, it means ready to be installed and used.
1231 [18:44:51] *** Quits: adapter (~adapter@replaced-ip ) (Quit: Leaving)
1232 [18:45:16] *** Joins: adapter (~adapter@replaced-ip )
1233 [18:45:30] *** Quits: craigevil (craig@replaced-ip ) (Quit: leaving)
1234 [18:49:32] *** Quits: rsx (~rsx@replaced-ip ) (Quit: rsx)
1235 [18:49:41] *** Joins: peebowo (~u0_a200@replaced-ip )
1236 [18:50:12] *** Quits: peebowo (~u0_a200@replaced-ip ) (Client Quit)
1237 [18:51:02] *** Joins: craigevil (craig@replaced-ip )
1238 [18:53:02] *** Quits: Christian75 (~Christian@replaced-ip ) (Read error: Connection reset by peer)
1239 [18:54:47] *** Joins: Christian75 (~Christian@replaced-ip )
1240 [18:55:26] *** Quits: nevivurn (~nevivurn@replaced-ip ) (Quit: Goodbye~)
1241 [18:56:06] *** Joins: th0r (~th0r@replaced-ip )
1242 [18:56:59] *** Joins: bicknell (~bicknell@replaced-ip )
1243 [18:57:17] *** Quits: dadinn (~dadinn@replaced-ip ) (Quit: leaving)
1244 [18:58:20] *** Joins: bicknell1 (bicknell@replaced-ip )
1245 [18:58:20] *** bicknell1 is now known as diso
1246 [19:01:22] *** Quits: bicknell (~bicknell@replaced-ip ) (Ping timeout: 252 seconds)
1247 [19:01:27] *** Joins: gelignite (~gelignite@replaced-ip )
1248 [19:04:20] *** Joins: dadinn (~dadinn@replaced-ip )
1249 [19:05:44] *** Quits: gacekjk (~gacekjk@replaced-ip ) (Quit: leaving)
1250 [19:08:46] *** Quits: JohnML (~john1@replaced-ip ) (Remote host closed the connection)
1251 [19:08:53] *** Quits: ax562 (~ax562@replaced-ip ) (Ping timeout: 240 seconds)
1252 [19:08:54] *** Joins: mtn (~mtn@replaced-ip )
1253 [19:09:34] *** Joins: JohnML (~john1@replaced-ip )
1254 [19:10:37] *** Joins: Haudegen (~quassel@replaced-ip )
1255 [19:11:07] *** Joins: igrtrrt (~igrtrrt@replaced-ip )
1256 [19:11:10] *** Quits: JohnML (~john1@replaced-ip ) (Remote host closed the connection)
1257 [19:11:27] *** Joins: kliq (~kliq@replaced-ip )
1258 [19:11:48] *** Joins: JohnML (~john1@replaced-ip )
1259 [19:11:52] *** Joins: spectral` (~stuxnet@replaced-ip )
1260 [19:12:00] *** Quits: bolovanos_ (~bolovanos@replaced-ip ) (Ping timeout: 268 seconds)
1261 [19:12:30] *** Quits: alex11 (~alex11@replaced-ip ) (Quit: Leaving)
1262 [19:12:42] *** Joins: bolovanos (~bolovanos@replaced-ip )
1263 [19:12:52] *** Joins: alex11 (~alex11@replaced-ip )
1264 [19:15:29] *** Quits: Slashman (~Slash@replaced-ip ) (Quit: Leaving)
1265 [19:17:49] *** Quits: cosimone (~user@replaced-ip ) (Remote host closed the connection)
1266 [19:19:32] *** Joins: ax562 (~ax562@replaced-ip )
1267 [19:21:20] *** Quits: magpi (~magpi@replaced-ip ) (Ping timeout: 265 seconds)
1268 [19:21:49] *** Joins: Grldfrdom (uid391113@replaced-ip )
1269 [19:22:34] *** Joins: magpi (~magpi@replaced-ip )
1270 [19:23:51] *** Joins: Tom01 (~tom@replaced-ip )
1271 [19:27:51] *** Quits: th0r (~th0r@replaced-ip ) (Quit: Leaving)
1272 [19:27:54] *** Joins: dreamon (~dreamon@replaced-ip )
1273 [19:28:01] *** debhelper sets mode: +l 1006
1274 [19:29:01] *** Joins: PoaB (~Thunderbi@replaced-ip )
1275 [19:29:46] *** sauvin_ is now known as Sauvin
1276 [19:29:49] *** Quits: Mister00X (quassel@replaced-ip ) (Quit: "I'll be back" — Arnold Schwarzenegger)
1277 [19:34:59] *** Joins: Hokedli (~laslie@replaced-ip )
1278 [19:35:44] *** Quits: idhugo__ (~idhugo@replaced-ip ) (Ping timeout: 246 seconds)
1279 [19:35:59] *** Joins: bolovanos_ (~bolovanos@replaced-ip )
1280 [19:37:10] *** Quits: Renari (~Renari@replaced-ip ) (Read error: Connection reset by peer)
1281 [19:38:17] *** Joins: nicoz (nicoz@replaced-ip )
1282 [19:39:14] *** Quits: igrtrrt (~igrtrrt@replaced-ip ) (Quit: igrtrrt)
1283 [19:39:15] *** Quits: bolovanos (~bolovanos@replaced-ip ) (Ping timeout: 246 seconds)
1284 [19:39:47] *** Quits: dadinn (~dadinn@replaced-ip ) (Quit: leaving)
1285 [19:44:59] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 245 seconds)
1286 [19:46:17] *** Joins: igrtrrt (~igrtrrt@replaced-ip )
1287 [19:47:15] *** Joins: unixbassen (~unixbasse@replaced-ip )
1288 [19:51:03] *** Joins: bolovanos__ (~bolovanos@replaced-ip )
1289 [19:53:38] *** Quits: Furai (~Furai@replaced-ip ) (Quit: WeeChat 3.1)
1290 [19:54:02] *** Joins: bolovanos (~bolovanos@replaced-ip )
1291 [19:54:32] *** Quits: bolovanos_ (~bolovanos@replaced-ip ) (Ping timeout: 260 seconds)
1292 [19:55:33] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 240 seconds)
1293 [19:55:47] *** Quits: bolovanos__ (~bolovanos@replaced-ip ) (Ping timeout: 268 seconds)
1294 [19:57:29] *** Quits: lucad111 (~lucad111@replaced-ip ) (Quit: Leaving)
1295 [19:58:10] <wwilliam> is there anyway to see the output of pssh I am using -v but the only thing i get is "success" any ideas?
1296 [19:59:27] *** Quits: M1zuki (~iridium@replaced-ip ) (Remote host closed the connection)
1297 [20:00:34] <greycat> I can't seem to find a man page for it at manpages.debian.org. Hmm.
1298 [20:00:44] <sney> the man page on linux.die.net says to use -P
1299 [20:01:13] <greycat> Does it truly not have a man page in Debian, or is that the web page being borked?
1300 [20:01:57] <greycat> replaced-url
1301 [20:02:16] *** Joins: bolovanos_ (~bolovanos@replaced-ip )
1302 [20:02:29] <wwilliam> Ok I will use -P Thank you.
1303 [20:02:37] <greycat> so I guess it's replaced-url
1304 [20:03:11] *** Quits: bolovanos (~bolovanos@replaced-ip ) (Ping timeout: 268 seconds)
1305 [20:04:02] <wwilliam> Thank you greycat -P worked.
1306 [20:04:08] <greycat> wasn't me.
1307 [20:04:10] *** Quits: coot (~coot@replaced-ip ) (Quit: coot)
1308 [20:04:54] <greycat> Also, this man page is a complete disaster. The command name is misspelled multiple times (three "l" in a row instead of two), there are block of text that overlay each other, etc.
1309 [20:05:48] <greycat> (The two options in between -e/--errdir and -O/--options are unreadable because there are two lines that overwrite each other, in google-chrome-stable.)
1310 [20:05:51] *** Joins: coot (~coot@replaced-ip )
1311 [20:06:41] *** Quits: shabius_ (~shabius@replaced-ip ) (Quit: Leaving)
1312 [20:06:44] <greycat> The two options after -O/--options look like they are supposed to be -A/--askpass and -i/--inline but those are also overwriting each other. It's just easier to read those through the overlay botch.
1313 [20:07:32] <greycat> And following that pattern, it appears that the thing that looks like -Pprint on my browser is really supposed to be -P/--print but it's hard to tell that.
1314 [20:08:01] *** debhelper sets mode: +l 1000
1315 [20:09:06] *** Quits: bolovanos_ (~bolovanos@replaced-ip ) (Ping timeout: 240 seconds)
1316 [20:09:11] *** Joins: stree (~stree@replaced-ip )
1317 [20:09:47] <wwilliam> sney: Thank you that -P worked.
1318 [20:09:55] *** Joins: shabius (~shabius@replaced-ip )
1319 [20:11:26] *** Quits: segamain (~segamain@replaced-ip ) (Ping timeout: 260 seconds)
1320 [20:11:52] *** Joins: alexeightsix (~alexeight@replaced-ip )
1321 [20:12:18] <oxek> I would have fixed so many mistakes in many manpages, if only it was easier to submit those fixes
1322 [20:13:58] *** Quits: Miles8of9 (~obrien@replaced-ip ) (Ping timeout: 252 seconds)
1323 [20:14:44] <jelly> oxek, if you have a salsa account you can roam around and send merge requests
1324 [20:14:59] *** Joins: Renari (~Renari@replaced-ip )
1325 [20:15:06] <sney> emailing patches is easy enough too, I'm sure the issue is with troff
1326 [20:15:28] <oxek> isn't it still the case that most packages are not being handled through salsa?
1327 [20:15:42] <jelly> many are, may still are not
1328 [20:15:50] <jelly> many*
1329 [20:15:50] <sney> the more active ones are, afaict
1330 [20:15:58] *** Quits: dreamon (~dreamon@replaced-ip ) (Remote host closed the connection)
1331 [20:16:09] <oxek> unfortunately it is mainly the inactive packages that need these sorts of fixes
1332 [20:17:06] <jelly> step 1) become a DD step 2) do so many NMU uploads
1333 [20:18:56] *** Quits: p9 (~9p@replaced-ip ) (Ping timeout: 252 seconds)
1334 [20:19:20] *** Joins: fearnothing (~fearnothi@replaced-ip )
1335 [20:19:28] <sney> less steep procedure: step 1) file bugs with patches, and cc debian-qa and debian-doc; step 2) wait a couple weeks for normal responses; step 3) hassle a friendly DD or #debian-mentors to get some bulk NMUs going
1336 [20:19:47] <oxek> becoming a DD looks almost impossible to me - so many steps are needed. But that's likely a 'me' problem that I'd need to work on.
1337 [20:19:57] <sney> still requires twisting your brain into a torus to get the troff formatting right, but that only needs to happen once and then you're good forever. just like falling off a bike.
1338 [20:20:21] *** Joins: dreamon (~dreamon@replaced-ip )
1339 [20:21:06] <greycat> I've still never yet seen actual documentation for the roff markup syntax. I think I read somewhere that it's actually proprietary and can't be freely documented or something, but that might have been a troll.
1340 [20:21:26] <jelly> you can fall off a bike once and stay off of it forever, yeah
1341 [20:22:42] <jelly> "can't" is a weird thing to say. People have reverse engineered Cisco's proprietary protocols and written RFC about it
1342 [20:22:59] <jelly> also, samba
1343 [20:24:35] *** Quits: darutoko (~darutoko@replaced-ip ) (Quit: Leaving)
1344 [20:24:36] *** Joins: bolovanos (~bolovanos@replaced-ip )
1345 [20:24:37] <sney> I suspect it was once widespread enough that "everyone knew" how to do it, and then suddenly it was 20 years later and might as well be witchcraft
1346 [20:24:46] *** Quits: alex11 (~alex11@replaced-ip ) (Ping timeout: 240 seconds)
1347 [20:25:41] *** Quits: winy (~vince@replaced-ip ) (Ping timeout: 240 seconds)
1348 [20:25:52] *** Joins: Z4CHe (~zachary@replaced-ip )
1349 [20:26:23] *** Joins: alex11 (~alex11@replaced-ip )
1350 [20:27:14] *** Quits: hobbanero (~hobbanero@replaced-ip ) (Quit: Leaving)
1351 [20:30:13] <oxek> write it in markdown, and then use a tool that converts it
1352 [20:30:44] <greycat> if you were writing a whole new man page from scratch, sure... but to submit a patch against an existing one?
1353 [20:31:05] *** Quits: adapter (~adapter@replaced-ip ) (Quit: leaving)
1354 [20:31:08] <oxek> convert the manpage to html or some other format, fix it, and convert it back
1355 [20:31:30] <greycat> in fact, you might have to drill down into every single package individually and figure out whether their man pages are hand-written roff, or converted from some other format, and then learn whatever the original format is, and then work around the bugs in the converters....
1356 [20:31:48] *** Joins: adapter (~adapter@replaced-ip )
1357 [20:33:08] <jelly> yep, because patches are done against source and it's nice if you make minimal changes
1358 [20:33:36] *** Quits: adapter (~adapter@replaced-ip ) (Client Quit)
1359 [20:36:23] <jhutchins> You'd also want to be sure whether the changes you want to make only apply to debian, if they apply to other linuxes, or if they're POSIX=wide.
1360 [20:36:26] *** Joins: d1cor (~d1cor@replaced-ip )
1361 [20:37:57] <greycat> not just a question of making minimal changes... if the actual *source* isn't the .1 roff file then you have to change the original file instead
1362 [20:38:03] *** Quits: kliq (~kliq@replaced-ip ) (Read error: Connection reset by peer)
1363 [20:38:06] *** Joins: adapter (~adapter@replaced-ip )
1364 [20:39:20] <jelly> jhutchins, I don't care about other linuxes or posix.
1365 [20:43:59] *** Joins: winy (~vince@replaced-ip )
1366 [20:47:43] *** Joins: Miles8of9 (~obrien@replaced-ip )
1367 [20:49:20] <metbsd> is debian testing pretty much same as ubuntu?
1368 [20:49:26] <greycat> No.
1369 [20:50:16] <metbsd> even commands are same
1370 [20:50:38] <metbsd> so ubuntu copied from debian testing?
1371 [20:51:35] <trench> kind of
1372 [20:51:41] <trench> unstable/sid
1373 [20:52:03] <metbsd> but testing is stabler than ubuntu?
1374 [20:52:17] <metbsd> i see firefox is older
1375 [20:52:21] <trench> metbsd: cat /etc/debian_version
1376 [20:52:42] <metbsd> bullseye/sid
1377 [20:52:53] <mutante> metbsd: yes, but then they also started to do their own thing in small areas and it forked
1378 [20:52:56] <greycat> We do not know, and cannot easily find out, all of the ways that Ubuntu is different from Debian. Ask #ubuntu, although they probably won't know either.
1379 [20:53:13] <trench> iceweasel or something
1380 [20:53:50] <trench> replaced-url
1381 [20:53:53] <metbsd> ubuntu is more commercial program like
1382 [20:54:09] <mutante> metbsd: no, the other way around. stable is the most stable, then it's testing. newer for the price of being less stable
1383 [20:54:11] <greycat> the iceweasel thing was dropped many years ago
1384 [20:54:27] *** Quits: shtrb (~shtrb@replaced-ip ) (Quit: Leaving)
1385 [20:54:39] <mutante> trench: that was true for 10 years but not anymore now
1386 [20:54:42] <greycat> mutante: that makes it sound like testing is some sort of rolling release, which some people seem to *want* it to be, but it's not.
1387 [20:55:05] <trench> mutante: I'm old and don't use x :P
1388 [20:55:15] <mutante> greycat: oh, ok. yea, I just meant to speak on the order from "most stable to least stable"
1389 [20:55:43] *** Quits: craigevil (craig@replaced-ip ) (Quit: leaving)
1390 [20:55:44] <trench> metbsd: you can add backports to stable also
1391 [20:55:48] <greycat> testing is the staging area for what will become the next stable release, and any resemblance to a rolling release is coincidental
1392 [20:56:00] <mutante> trench: i'm old too, just sharing the news. the Firefox licensing issues was finally resolved in some way I forgot
1393 [20:56:21] <greycat> !iceweasel
1394 [20:56:21] <dpkg> Iceweasel was a DFSG-free fork of <firefox>, replacing it in Debian since 4.0 "Etch". See <why iceweasel>, <iceweasel vs firefox>, <iceweasel user-agent>, replaced-url
1395 [20:56:30] <trench> true
1396 [20:56:34] *** Joins: Filohuhum (~filohuhum@replaced-ip )
1397 [20:56:55] <trench> !backports
1398 [20:56:55] <dpkg> A backport is a package from a newer Debian branch, compiled from source for an older branch to avoid dependency and <ABI> complications. replaced-url
1399 [20:57:11] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
1400 [20:57:17] <mutante> also a major difference used to be that Ubuntu made their own Desktop env, Unity, but then they gave up on that, so it was less difference again
1401 [20:57:39] <greycat> they had a different init system at some point, not sure what their current init system is
1402 [20:57:40] <trench> but they are more into wayland now
1403 [20:58:07] <jelly> systemd since 16.04 or so
1404 [20:58:23] <trench> I just wish debian would drop openssl and change it something else
1405 [20:58:33] <jelly> their default DE is Gnome based, so yeah wayland
1406 [20:58:49] <jelly> trench, it's the apps that need to drop openssl, not debian
1407 [20:59:16] <mutante> remember when Ubuntu was brandnew? there used to be that "shipit" subdomain and you could just fill out a form and say "i need 50 CDs to share with my hacker space" and they would ship you 50 CDs for free, not even postage
1408 [20:59:32] *** Quits: Onyx47 (~onyx@replaced-ip ) (Quit: Konversation terminated!)
1409 [20:59:40] <mutante> sorry offtopic but it was an old memory
1410 [20:59:41] <jelly> debian already prefers gnutls where license allows
1411 [20:59:59] <zaggynl> that was pretty cool, less cool was messing around with ndiswrapper to get those %#%$#@ wifi nics working
1412 [21:00:57] <trench> mutante: that's why they got so pop..
1413 [21:01:35] <mutante> trench: yea, that and including nonfree modules to make it detect more stuff during hardware detection in default installer, back then
1414 [21:02:14] *** Joins: odnes (~odnes@replaced-ip )
1415 [21:02:48] *** Joins: rr123 (~xxiao@replaced-ip )
1416 [21:03:30] *** Joins: CyberManifest (~CyberMani@replaced-ip )
1417 [21:04:34] *** Quits: martinus__ (~martin@replaced-ip ) (Ping timeout: 252 seconds)
1418 [21:04:59] <rr123> curl replaced-url
1419 [21:05:40] <rr123> wget replaced-url
1420 [21:06:14] <mutante> rr123: works for me on Debian stable
1421 [21:06:17] <rr123> debian 10, apt get / curl/ wget all had trouble to download chrome.deb, this is inside virtuabox, am I missing something here?
1422 [21:06:29] <jelly> rr123, works for me, which debian is this? Are you behind the Great Firewall?
1423 [21:06:43] <mutante> rr123: what's curl -V say? version?
1424 [21:06:48] <rr123> other packages worked fine for apt-update etc, no I'm in Texas
1425 [21:07:08] <rr123> curl 7.64.0 (x86_64-pc-linux-gnu) libcurl/7.64.0 OpenSSL/1.1.1d zlib/1.2.11 libidn2/2.0.5 libpsl/0.20.2 (+libidn2/2.0.5) libssh2/1.8.0 nghttp2/1.36.0 librtmp/2.3
1426 [21:07:09] <jelly> maybe Texas has the GREATEST firewall, no idea
1427 [21:07:21] <mutante> corporate proxy? university?
1428 [21:07:26] <sney> system clock wrong?
1429 [21:07:29] <rr123> home router
1430 [21:08:03] <rr123> a typical work-from-home scenario, again all other packages etc worked well, only trouble is this chrome and only on debian 10
1431 [21:08:19] <mutante> add -vvv to curl command for possibly more hints?
1432 [21:08:36] <jhutchins> rr123: Try a different mirror.
1433 [21:08:39] <mutante> try to curl/wget while also running tcpdump ?
1434 [21:08:53] <petn-randall> I'm guessing ca-certificates is not installed.
1435 [21:09:00] <sney> apt uses http by default, so a ssl failure would not affect it out of the box. and if your system date is wrong, ssl will fail.
1436 [21:09:01] <jelly> rr123, perhaps the google CDN server you're connecting to is misbehaving.
1437 [21:09:28] <jelly> petn-randall, this isn't an incorrect cert situation
1438 [21:09:29] <jhutchins> Wouldn't most of the suggestions affect other packages as well? He said he can download some, just not chrome.
1439 [21:09:35] *** Quits: ntqz (ntqz@replaced-ip ) (Remote host closed the connection)
1440 [21:09:40] <mutante> how about simply replacing https with http?
1441 [21:09:42] *** Quits: Sabaku (~Sabaku@replaced-ip ) (Ping timeout: 240 seconds)
1442 [21:09:46] *** Quits: alexeightsix (~alexeight@replaced-ip ) (Ping timeout: 240 seconds)
1443 [21:10:07] <rr123> replaced-url
1444 [21:10:08] <mutante> rr123: curl replaced-url
1445 [21:10:15] <rr123> let me try http and tcpdump
1446 [21:10:23] *** Joins: Sabaku (~Sabaku@replaced-ip )
1447 [21:11:08] <jhutchins> Oh, wait, other packages wouldn't be this mirror. Sorry.
1448 [21:11:13] <jelly> rr123, also, put -O outputfile BEFORE the url.
1449 [21:11:33] <mutante> -vvv was meant to be added to the actual download command. while -V was an unrelated thing to get the version
1450 [21:12:01] <rr123> http looks sane, is google doing some ssl advanced experiments that debian openssl dislikes...
1451 [21:12:12] *** Joins: sappheiros (~sappheiro@replaced-ip )
1452 [21:12:21] *** Quits: mohabaks (~mohabaks@replaced-ip ) (Ping timeout: 240 seconds)
1453 [21:12:34] *** Joins: ecsim (~Thunderbi@replaced-ip )
1454 [21:12:37] *** ChanServ sets mode: +o eir
1455 [21:12:38] *** Joins: peebowo (~anon@replaced-ip )
1456 [21:12:39] *** eir sets mode: -bo $a:dr65758$##arguments eir
1457 [21:12:57] *** Joins: p9 (~9p@replaced-ip )
1458 [21:13:16] <rr123> apt install ./google-chrome-stable_current_amd64.deb : dpkg-deb (subprocess): decompressing archive member: lzma error: compressed data is corrupt
1459 [21:13:38] <jelly> rr123, md5sum ./google-chrome-stable_current_amd64.deb says what?
1460 [21:13:38] *** Quits: ecsim (~Thunderbi@replaced-ip ) (Client Quit)
1461 [21:13:42] <rr123> i have been suspicious on this as a virtualbox bug actually
1462 [21:13:46] <mutante> rr123: one common reason is that the versions of client and server are too far apart to agree on any cipher, like the server might disabled older ones as insecure while the client doesnt yet support the latest
1463 [21:13:55] <oxek> !iceweasel
1464 [21:13:55] <dpkg> Iceweasel was a DFSG-free fork of <firefox>, replacing it in Debian since 4.0 "Etch". See <why iceweasel>, <iceweasel vs firefox>, <iceweasel user-agent>, replaced-url
1465 [21:13:56] <sney> bet that deb is text/html
1466 [21:14:19] <peebowo> ^
1467 [21:14:26] <jelly> oh, -O does not take arguments
1468 [21:14:27] <oxek> "DFSG-free" sounds like it would be non-free then
1469 [21:14:34] <rr123> wait, it's indeed google-chrome....deb.1
1470 [21:14:53] <rr123> the old half-done chrome.deb is there to cause this
1471 [21:15:16] *** Quits: Hokedli (~laslie@replaced-ip ) (Quit: Konversation terminated!)
1472 [21:16:20] *** Joins: Texou (~Texou@replaced-ip )
1473 [21:16:47] *** Quits: uvolmer (~uvolmer@replaced-ip ) (Remote host closed the connection)
1474 [21:17:50] *** Joins: cybercalamity (4d6ff628@replaced-ip )
1475 [21:18:24] <jhutchins> rr123: What is the host OS?
1476 [21:18:32] * sappheiros checks replaced-url
1477 [21:20:52] * sappheiros checks replaced-url
1478 [21:21:27] <sappheiros> D'you know if 8 GB is enough space for debian install via USB?
1479 [21:21:40] <sappheiros> i mean a USB with nominal 8 GB
1480 [21:21:55] <sappheiros> for install on a 2 TB SSD
1481 [21:22:07] <nkuttler> depends on the installer..
1482 [21:22:09] <nkuttler> !netinst
1483 [21:22:09] <dpkg> methinks netinst is a small CD image with which you can install Debian. If, during the installation process you have a working Internet connection, you can install more packages straight away, otherwise, you will have a base install and more packages later. See replaced-url
1484 [21:22:14] <peebowo> relatively sure it is, debian isnt extraordinarilly big
1485 [21:22:19] <nkuttler> or do you only have usb?
1486 [21:22:24] <nkuttler> and no network?
1487 [21:22:53] <jelly> sappheiros, the basic installer needs like 300MB and grabs the rest over the internets
1488 [21:23:03] *** Quits: maxf (e23c17097e@replaced-ip ) (Quit: Gateway shutdown)
1489 [21:23:11] <horseshoecrab> i installed a vm with a 10g qcow2 on the weekend using netinst, and im sure there is bags of room left.
1490 [21:23:15] <sappheiros> I think I downloaded the USB installer file, and I'm not sure if ... crap ... maybe I didn't order a wireless card when I bought all my other PC components. I'd have an Ethernet cable, though.
1491 [21:23:53] <jelly> you'd also need a wired ethernet card
1492 [21:24:04] <sney> installing over ethernet is ideal anyway
1493 [21:24:06] <jhutchins> sappheiros: Maybe there's a port on the motherboard?
1494 [21:24:22] <sappheiros> Yeah there should be
1495 [21:25:09] *** Quits: diso (bicknell@replaced-ip ) (Quit: WeeChat 2.8)
1496 [21:26:01] <rr123> ok, this has been a long time issue for me on virtualbox + debian10(guest os), only occurred for chrome, host os is ubuntu 20.04. checked again md5sum is right, I can install on my vps debian server etc. I will revert to chromium on virtualbox instead which is flawless. errors seen: 1. wget/curl/apt failed at openssl but http download works 2. lzma error when manually install the correct deb file manually
1497 [21:26:07] <rr123> downloaded. 3. virtualbox actually failed to install debian sometimes for the same ssl error sometimes. it must be some corner case but I will move on.
1498 [21:26:59] <jelly> rr123, does the host OS have some sort of malware installed? :-)
1499 [21:27:46] *** Quits: Teacup (~qteacup@replaced-ip ) (Read error: Connection reset by peer)
1500 [21:27:56] *** Joins: Teacup (~qteacup@replaced-ip )
1501 [21:27:59] <sappheiros> Does 'dd' with option bs=1m sound like a good way to create a bootable USB drive from an iso on macOS? but how many bytes is "1m" and why do I even need to specify that operand?
1502 [21:28:00] <greycat> bad RAM?
1503 [21:28:07] *** Quits: Teacup (~qteacup@replaced-ip ) (Read error: Connection reset by peer)
1504 [21:28:10] *** Quits: nitefall (~thewellin@replaced-ip ) (Quit: nitefall)
1505 [21:28:16] <greycat> the default block size is 512
1506 [21:28:17] <horseshoecrab> sappheiros: i just cat it tbh
1507 [21:28:19] <horseshoecrab> that normally works
1508 [21:28:34] *** Joins: VadPerevad (~VadPereva@replaced-ip )
1509 [21:28:34] <sappheiros> concatenate and print files?
1510 [21:28:37] <jhutchins> rr123: Download on host, transfer to target.
1511 [21:28:47] <sney> sappheiros: dd works, cat works, cp works, extra dd options can sometimes speed things up but usually they are just for people to pretend they are hacking
1512 [21:28:51] <horseshoecrab> cat img > /dev/<usb>
1513 [21:29:02] <horseshoecrab> (but be very careful.) :(
1514 [21:29:18] <sappheiros> great, thanks. brb gonna break my computer and ruin my life with sudo dd
1515 [21:29:21] <sney> you are writing the .iso file directly to the usb block device. the method is not really important, as long as it writes the iso file directly, and doesn't try anything extra.
1516 [21:29:22] <sappheiros> (does macOS use sudo? ...)
1517 [21:29:24] <greycat> bear in mind sappheiros is on a non-debian system and is off topic and any answers we give may or may not make your Mac explode
1518 [21:29:32] <sappheiros> lol
1519 [21:29:38] <jelly> sappheiros, the 1MiB block size is a ballpark figure to avoid pushing may small writes to a potentially cheap device that can't aggregate them
1520 [21:29:41] <horseshoecrab> not arguing with sney or greycat
1521 [21:29:46] <horseshoecrab> they seem like sensible people
1522 [21:29:55] <peebowo> dd if=<iso>.iso of=/dev/sd* status='progress'
1523 [21:30:19] <jelly> sappheiros, on linux, it makes things faster and makes old usb sticks last longer
1524 [21:30:58] <jelly> however, on linux you can just do "cp netinst.iso /dev/sdX"
1525 [21:31:06] <oxek> /dev/sd* sounds like horrible example
1526 [21:31:07] <sappheiros> sweet, thanks. debian here i come!! (i hope ... waiting for PC parts to arrive ... ironically chassis and SSD coming in separate packages from everything else) peebowo I don't see status as an operand for 'dd' in the man pages :(
1527 [21:31:09] <horseshoecrab> well despite all the other stuff, main "issue" with peebowo example (same as mine) is being damn sure about where the usb block device for reasons given by greycat
1528 [21:31:19] <peebowo> oxek: your right
1529 [21:31:24] <jelly> and let cp worry about the right block size
1530 [21:31:28] *** Quits: Grldfrdom (uid391113@replaced-ip ) (Quit: Connection closed for inactivity)
1531 [21:31:32] <jhutchins> These days dd has sensible default blocksizes. It did not always have a default. Some people believe they can get better performance if they tweak the block size.
1532 [21:31:37] *** Joins: monkwitdafunk (~user1@replaced-ip )
1533 [21:31:47] <greycat> jhutchins: ... huh?
1534 [21:31:51] <jelly> jhutchins, does it, really?
1535 [21:31:51] <peebowo> oxek: just cant know what usb is the right one
1536 [21:32:06] <greycat> bs=BYTES
1537 [21:32:07] <greycat> read and write up to BYTES bytes at a time (default: 512); over‐
1538 [21:32:20] <greycat> I think jhutchins is just making shit up.
1539 [21:32:29] <sappheiros> yuh oh shots fired
1540 [21:32:35] *** Joins: Teacup (~qteacup@replaced-ip )
1541 [21:32:52] <peebowo> jhutchins trolling?
1542 [21:32:57] <horseshoecrab> greycat: hes probably rightish at least. dont make me regret saying i thought you were sensible! ;P
1543 [21:33:00] * jelly straces dd to a cheap usb stick
1544 [21:33:12] <ratrace> 512b is hardly sensible these days
1545 [21:33:22] <greycat> He's definitely wrong about the block size being different "These days".
1546 [21:33:28] <jhutchins> ratrace: Perhaps, but it works.
1547 [21:33:39] <ratrace> jhutchins: sure, but suboptimally
1548 [21:33:52] *** Joins: uvolmer (~uvolmer@replaced-ip )
1549 [21:33:59] <ratrace> at 512b you saturate iops before bandwidth on any modern sata2 rust spinner
1550 [21:34:05] <greycat> It's also quite *odd* to think that dd's behavior would change over time, when it's one of the ancient legacy unix commands that's standardized by POSIX.
1551 [21:34:16] <ratrace> *sata3
1552 [21:34:23] <jhutchins> greycat: I'm pretty sure I've used a version that did not have a default. It would not have been on debian.
1553 [21:34:34] <horseshoecrab> im sure i read something about block sizes being "bigger these days" but you wont BELIEVE what crusty old documentation this bored sysadmin will read!
1554 [21:35:58] <greycat> POSIX page is here, and also mandates 512 default. replaced-url
1555 [21:36:01] *** Quits: uvolmer (~uvolmer@replaced-ip ) (Remote host closed the connection)
1556 [21:36:24] <jhutchins> greycat: What year was it last revised?
1557 [21:36:49] *** Quits: captSamIngram (~Thunderbi@replaced-ip ) (Quit: captSamIngram)
1558 [21:36:59] <greycat> Read it your goddamned self and see.
1559 [21:37:04] <greycat> *plonk*
1560 [21:37:15] <jhutchins> 2018
1561 [21:37:15] *** Quits: raub (~raub@replaced-ip ) (Read error: Connection reset by peer)
1562 [21:37:23] <ratrace> jhutchins: maybe you meant cp? cp has kinda sensible default (129k iirc), and it can copy to/from block devices
1563 [21:37:33] <ratrace> 128k*
1564 [21:40:27] *** Joins: Scotty_Trees (~Scotty_Tr@replaced-ip )
1565 [21:40:27] <ratrace> I saw the other day GKH plonking the UMN posters on LKML and got me thinking.... greycat often shows username "greg". GKH... greg KH.... greg KHat ... grey khat .... greycat. are you GKH incognito here? :)
1566 [21:40:43] <greycat> no
1567 [21:41:04] <jelly> write(1, "\201|$\0301\0\0\2u\6\306@!\1\353\4\306@!\0E1\344H\213\25\372\314\n\0K\215"..., 512) = 512
1568 [21:41:04] <ratrace> aww.
1569 [21:41:05] *** Quits: zapatista__ (~zapatista@replaced-ip ) (Quit: Leaving)
1570 [21:41:35] *** Quits: d1cor (~d1cor@replaced-ip ) (Ping timeout: 252 seconds)
1571 [21:41:48] <mutante> at night all cats are grey
1572 [21:41:50] *** Joins: uvolmer (~uvolmer@replaced-ip )
1573 [21:43:07] <ratrace> some coincidental numerolog^W verbology there. :)
1574 [21:44:16] *** Quits: cybercalamity (4d6ff628@replaced-ip ) (Quit: Connection closed)
1575 [21:45:16] <jelly> well. dd does send 512B write() by default to this poor usb stick. It also does 1MiB writes when asked to, but they finish WAY too soon and then it's stuck on close() until the writes actually go to the device
1576 [21:45:24] *** Joins: rockworld (~rockworld@replaced-ip )
1577 [21:45:49] <jelly> with default bs, write speed was 1.7MB/s; with bs=1M, it was around 4.9MB/s
1578 [21:46:30] <jelly> dd (coreutils) 8.28
1579 [21:46:35] <ratrace> the "way to soon" is page caching without syncs, so close() implies a sync and it's blocking until the kernel retuns from sync()
1580 [21:46:55] <ratrace> always hated that about dd and caching. the progress bar, like cake, is eventually a lie.
1581 [21:47:14] <jelly> don't hate on dd, hate on the kernel lying thru its teeth
1582 [21:47:22] *** Joins: craigevil (craig@replaced-ip )
1583 [21:47:22] *** Quits: Hercules (~Genkei@replaced-ip ) (Quit: Leaving)
1584 [21:47:33] <peebowo> jelly: lmfao
1585 [21:47:33] *** Joins: shibboleth (~shibbolet@replaced-ip )
1586 [21:47:57] <horseshoecrab> NEVER hate on the kernel.
1587 [21:47:58] <jelly> what is dd supposed to do, gratuitous fsync every now and then?
1588 [21:48:07] <ratrace> it can if you tell it to
1589 [21:48:30] *** Parts: peebowo (~anon@replaced-ip ) ()
1590 [21:48:37] <horseshoecrab> kernel just living in the moment
1591 [21:48:40] <horseshoecrab> like we all shoud
1592 [21:48:54] <jelly> it sure likes its dirty, dirty buffers
1593 [21:49:15] <jhutchins> That's what buffers are for.
1594 [21:49:31] <jelly> jhutchins, so, which dd were you talking about?
1595 [21:49:56] <horseshoecrab> dont kink shame the kernel /
1596 [21:51:03] <sappheiros> so is the consensus that replaced-url
1597 [21:51:07] *** Joins: kil0 (~user@replaced-ip )
1598 [21:51:40] <greycat> ask #macosx
1599 [21:51:48] <horseshoecrab> not as far as im concerned. identify the correct block device, use cat. let tim cooks minions sort it out.
1600 [21:51:52] <horseshoecrab> (and what greycat said)
1601 [21:52:19] <ratrace> cat?! please don't abuse cats. use cp
1602 [21:52:32] <jelly> sadly not many people in here know the correct incantation for OSX dd. It probably has bs= and obs=
1603 [21:52:32] <ratrace> 128k is pretty sensible default for both rust spinners and solid states
1604 [21:52:47] <horseshoecrab> ratrace: that suggestion just gives me so many different emotions.
1605 [21:52:56] <horseshoecrab> 1./ slight disgust.
1606 [21:53:02] <horseshoecrab> 2./ mild admiration for cp
1607 [21:53:13] <horseshoecrab> 3./ annoyance i didnt know you could use it for that
1608 [21:53:24] <ratrace> not unexpected for an animal that's a horse, a shoe and a crab, at the same time :)
1609 [21:54:07] *** Quits: mukmuk (~mukmuk@replaced-ip ) (Quit: .)
1610 [21:54:41] *** Joins: galaad (~galaad@replaced-ip )
1611 [21:56:26] <monkwitdafunk> hello, is the list of software from: directory.fsf.org compatable with macosx?
1612 [21:56:42] <greycat> how in the hell would we know?
1613 [21:56:50] *** Joins: Piggy (~Piggy@replaced-ip )
1614 [21:57:07] <monkwitdafunk> you say posix, i say i dont know? :-D
1615 [21:57:07] <rockworld> where is the log files directory for mariadb ?
1616 [21:57:14] <jelly> monkwitdafunk, best find a FSF channe
1617 [21:57:36] <monkwitdafunk> ....
1618 [21:57:37] <greycat> rockworld: I would try either /var/log/mysql or /var/log/mariadb
1619 [21:58:04] <horseshoecrab> maybe he means database logs
1620 [21:58:13] *** Joins: mukmuk (~mukmuk@replaced-ip )
1621 [21:58:18] <horseshoecrab> but they'll be somewhere in var too i suspect
1622 [21:58:29] <ratrace> you mean write ahead logs?
1623 [21:59:03] <rockworld> I just updated to php8.0.2 and I dont know if thats the reason but I got a error when trying to acces the page
1624 [21:59:08] <jelly> monkwitdafunk, you're asking in #debian right now. We don't know a whole lot about OSX, or about source compatibility with other platforms. /msg alis list *osx* ?
1625 [21:59:16] *** Joins: zapatista (~zapatista@replaced-ip )
1626 [21:59:26] *** Joins: kliq (~kliq@replaced-ip )
1627 [21:59:45] <rockworld> "SQL error... Please check your error log file for details..."
1628 [22:00:08] <jelly> rockworld, where does this error come from, your php app?
1629 [22:00:18] <greycat> you might also try "journalctl -u mariadb" and/or "systemctl status mariadb"
1630 [22:00:32] *** Joins: cliq (~kliq@replaced-ip )
1631 [22:00:35] *** Quits: Spr1ng (~Spr1ng@replaced-ip ) (Quit: WeeChat 3.1)
1632 [22:00:37] <rockworld> from php page
1633 [22:00:37] *** Quits: kil0 (~user@replaced-ip ) (Remote host closed the connection)
1634 [22:00:41] <jelly> rockworld, if so, it probably points you to the _web server_ error.log, not sql server log
1635 [22:00:56] <monkwitdafunk> yes jelly, your suggestion is genuine
1636 [22:00:59] <ratrace> and keep in mind a lot of PHP apps are still incompatible with PHP8, which is why Bullseye won't have it yet.
1637 [22:00:59] *** Joins: kil0 (~user@replaced-ip )
1638 [22:01:17] *** Quits: luuuciano_ (~luuuciano@replaced-ip ) (Remote host closed the connection)
1639 [22:01:33] *** Quits: cliq (~kliq@replaced-ip ) (Max SendQ exceeded)
1640 [22:01:37] <jelly> monkwitdafunk, it's basically the same thing grey'cat said, only without hell
1641 [22:01:41] <rockworld> Apr 28 16:38:29 quebechosting mysqld[630]: 2021-04-28 16:38:29 5925 [Warning] Aborted connection 5925 to db: 'unconnected' user: 'unauthenticated' host: 'do-prod-ap-central-scanner-2604-3.do.binarye
1642 [22:01:50] *** Quits: kil0 (~user@replaced-ip ) (Remote host closed the connection)
1643 [22:01:55] <rockworld> looks like I need to setup the database
1644 [22:02:00] <jelly> monkwitdafunk, wrong channel this is
1645 [22:02:00] <craigevil> !sudo
1646 [22:02:00] <dpkg> Sudo, aka Substitute User DO, is a common way to give limited super user privileges to specific users. Not the magic "do what I want" button. Good in scripts with "username ALL = NOPASSWD: /some/program". See <sudo path>, <visudo>, <sudoers>. replaced-url
1647 [22:02:01] *** Joins: cliq (~kliq@replaced-ip )
1648 [22:02:08] <monkwitdafunk> i have an idea that if i am not using a linux that runs from ram, im going to go with trisquel, and debian. stick with the two!
1649 [22:02:35] *** Joins: Filohuhum_ (~filohuhum@replaced-ip )
1650 [22:02:43] *** Quits: Teacup (~qteacup@replaced-ip ) (Quit: but why?)
1651 [22:02:48] *** Quits: mezzo (~mezzo@replaced-ip ) (Quit: leaving)
1652 [22:02:48] <rockworld> Im maybe better to downgrade to 7.3
1653 [22:02:57] *** Quits: cliq (~kliq@replaced-ip ) (Max SendQ exceeded)
1654 [22:03:02] *** Quits: sussudio (~sussudio@replaced-ip ) (Quit: ....)
1655 [22:03:06] *** Joins: Teacup (~qteacup@replaced-ip )
1656 [22:03:15] <jelly> rockworld, look at web server logs first.
1657 [22:03:26] *** Joins: cliq (~kliq@replaced-ip )
1658 [22:03:27] *** Parts: diogenes_ (~diogenes_@replaced-ip ) ("vergissmeinnicht")
1659 [22:03:31] *** Joins: sussudio (~sussudio@replaced-ip )
1660 [22:03:40] <rockworld> ok I check
1661 [22:03:43] <jelly> ,v php8
1662 [22:03:44] <judd> No package named 'php8' was found in amd64.
1663 [22:03:47] <jelly> ,v php8.0
1664 [22:03:48] <judd> Package: php8.0 on amd64 -- sid: 8.0.3-1
1665 [22:04:19] *** Quits: kliq (~kliq@replaced-ip ) (Ping timeout: 252 seconds)
1666 [22:04:45] *** Quits: Filohuhum (~filohuhum@replaced-ip ) (Quit: Leaving)
1667 [22:05:35] <monkwitdafunk> i read a little information about LTS support
1668 [22:05:40] *** Quits: Lord_of_Life (~Lord@replaced-ip ) (Ping timeout: 265 seconds)
1669 [22:05:50] *** Joins: Lord_of_Life_ (~Lord@replaced-ip )
1670 [22:06:19] *** Quits: galaad (~galaad@replaced-ip ) (Quit: Leaving)
1671 [22:06:29] *** Joins: luuuciano (~luuuciano@replaced-ip )
1672 [22:07:17] <sappheiros> wooooo show of hands who here just "353370112 bytes transferred in 36.198910 secs (9761899 bytes/sec)" towards a new debian instaaaaall
1673 [22:07:33] *** Quits: wytchmaster (~wytchmast@replaced-ip##) (Quit: ##replaced-url
1674 [22:07:55] <monkwitdafunk> sappheiros, are you working with NVME
1675 [22:08:04] <monkwitdafunk> it is nice eh
1676 [22:08:22] <sappheiros> uh, i hope so >_> Disk Utility says "Lexar USB Flash Drive Media".
1677 [22:08:28] <monkwitdafunk> ?
1678 [22:08:33] <jelly> 10MB/s is a mediocre usb stick speed, not nvme speed
1679 [22:08:54] *** Lord_of_Life_ is now known as Lord_of_Life
1680 [22:08:56] <jelly> 0.5s would have been nvme speed
1681 [22:09:21] <ratrace> cough also, pagecache, cake, lies cough
1682 [22:09:23] <monkwitdafunk> sappheiros, are you talking about usb 3.0
1683 [22:09:27] *** Joins: Spr1ng (~Spr1ng@replaced-ip )
1684 [22:09:28] <sappheiros> yeah probably
1685 [22:09:53] *** Quits: SM0TVI (~sm0tvi@replaced-ip ) (Read error: Connection reset by peer)
1686 [22:09:55] *** Quits: lejocelyn (~lejocelyn@replaced-ip ) (Quit: lejocelyn)
1687 [22:10:06] <horseshoecrab> pfft. installing from usb is so tired. RUNNING root filesystem on usb is where its at.
1688 [22:10:10] <sappheiros> yeah Mac mini System Information shows two USB 3.1 Bus
1689 [22:10:11] <oxek> and that's why one uses dd instead
1690 [22:10:15] <monkwitdafunk> nvme speed would not mean much if it uses a USB
1691 [22:10:23] <oxek> because you can make it report transfer speed accurately
1692 [22:10:37] *** Joins: romo (~romo@replaced-ip )
1693 [22:11:06] *** Quits: Romarain (~Romarain@replaced-ip ) (Quit: Leaving)
1694 [22:11:11] *** Joins: SM0TVI (~sm0tvi@replaced-ip )
1695 [22:11:31] *** Joins: Furai (~Furai@replaced-ip )
1696 [22:11:58] <monkwitdafunk> bus speeds are more worthy of money spent, than speeds of scondary memory
1697 [22:13:40] <sappheiros> thanks
1698 [22:13:47] *** Parts: sappheiros (~sappheiro@replaced-ip ) ("let's see if i can accomplish another thing")
1699 [22:13:55] *** Quits: dreamon (~dreamon@replaced-ip ) (Ping timeout: 268 seconds)
1700 [22:15:06] *** Quits: Haxxa (~Haxxa@replaced-ip ) (Quit: Haxxa flies away.)
1701 [22:17:06] *** Quits: stree (~stree@replaced-ip ) (Ping timeout: 240 seconds)
1702 [22:17:25] <ratrace> rsync -va vault:/srv/dist/ISO/debian-bullseye-DI-rc1-amd64-netinst.iso ./
1703 [22:17:25] <ratrace> sent 378,628,483 bytes received 35 bytes 252,419,012.00 bytes/sec
1704 [22:17:25] <ratrace> total size is 378,535,936 speedup is 1.00
1705 [22:17:48] <ratrace> how 'bout that.
1706 [22:18:02] *** debhelper sets mode: +l 993
1707 [22:18:55] *** Quits: wallacer (~quassel@replaced-ip ) (Ping timeout: 276 seconds)
1708 [22:19:04] <jelly> your network is pretty fast?
1709 [22:19:59] *** Joins: Haxxa (~Haxxa@replaced-ip )
1710 [22:20:40] *** Joins: wallacer (~quassel@replaced-ip )
1711 [22:20:42] *** Quits: tagomago (~tagomago@replaced-ip ) (Ping timeout: 240 seconds)
1712 [22:21:30] <ratrace> 10 GbE better be :)
1713 [22:21:33] *** Quits: monkwitdafunk (~user1@replaced-ip ) (Remote host closed the connection)
1714 [22:24:00] *** Joins: monkwitdafunk (~user1@replaced-ip )
1715 [22:28:41] *** Quits: Tobbi (~Tobbi@replaced-ip ) (Ping timeout: 276 seconds)
1716 [22:29:49] *** Joins: stree (~stree@replaced-ip )
1717 [22:32:51] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 260 seconds)
1718 [22:33:47] *** Joins: Texou (~Texou@replaced-ip )
1719 [22:33:53] *** Quits: Jerrynicki (~niklas@replaced-ip ) (Remote host closed the connection)
1720 [22:38:05] <H-var> wintersky, the ipw2100 is only the wlan part of the driver. There are other parts as well.
1721 [22:38:27] <wintersky> ``huh?
1722 [22:38:32] <wintersky> rephrase?
1723 [22:38:39] <epsilon> 10G became cheap these days for SoHo
1724 [22:38:41] *** Quits: cliq (~kliq@replaced-ip ) (Ping timeout: 240 seconds)
1725 [22:39:07] *** Joins: not_phunyguy (~blaahchm@replaced-ip )
1726 [22:39:21] <H-var> can someone help me to select all the necessary things from make configmenu for the AX210 during the compilation?
1727 [22:40:00] <H-var> this way I can just copy the /boot config file, and only add the remaining necessary updates and new features which will make it possible to use AX210
1728 [22:41:33] *** Quits: phunyguy (~blaahchm@replaced-ip ) (Ping timeout: 240 seconds)
1729 [22:41:37] <H-var> during the compilation, the process ended with this error replaced-url
1730 [22:41:55] *** not_phunyguy is now known as phunyguy
1731 [22:42:43] <imMute> H-var: just a guess, but maybe the pahole program isn't installed?
1732 [22:42:52] <H-var> wintersky the AX210 has built-in bluetooth, and wlan, but ipw2100 is only responsible for the wlan? Isn't it? Right?
1733 [22:43:16] <imMute> H-var: Debian has that packaged in the dwarves package.
1734 [22:44:30] *** Joins: alexandros_tab_ (~quassel@replaced-ip )
1735 [22:44:31] *** Joins: alexandros_c__ (~quassel@replaced-ip )
1736 [22:45:08] <H-var> thank you imMute, I installed dwarves. Strange, nobody had mentioned a dwarves package as a prerequisite for compiling a kernel in any guides I read.
1737 [22:46:42] *** Quits: szorfein (~daggoth@replaced-ip ) (Quit: szorfein)
1738 [22:47:12] <jmcnaught> H-var: ipw2100 is only for some fairly old Intel wifi devices
1739 [22:47:58] <jmcnaught> H-var: iwlwifi the newer driver for most Intel wifi
1740 [22:48:14] <H-var> yes indeed that's the one that the device is loading
1741 [22:48:28] *** Quits: alexandros_tab (~quassel@replaced-ip ) (Ping timeout: 268 seconds)
1742 [22:48:28] *** Quits: alexandros_c_ (~quassel@replaced-ip ) (Ping timeout: 268 seconds)
1743 [22:48:32] <H-var> the only problem is the bluetooth part and usb part - those are failing to work
1744 [22:48:41] *** Quits: Z4CHe (~zachary@replaced-ip ) (Ping timeout: 265 seconds)
1745 [22:48:57] <H-var> but intel's devs stated that in 5.11 the AX210 is completely supported
1746 [22:49:27] <H-var> I just do not know what to look for in all those options in order to compile all the necessary packages
1747 [22:49:32] <jmcnaught> replaced-url
1748 [22:49:36] <H-var> including the wifi6 support
1749 [22:49:57] <H-var> it's a typo, or incorrect info
1750 [22:50:08] <H-var> in reality, it's supported since 5.11
1751 [22:50:35] <jelly> iwlwifi is just the wifi part
1752 [22:50:44] <H-var> exactly
1753 [22:51:07] <H-var> and in 5.10 it's working, but only the 2.4ghz wifi part of the device\
1754 [22:51:22] <H-var> all the other features are failing
1755 [22:53:13] *** Quits: afidegnum (~user@replaced-ip ) (Ping timeout: 240 seconds)
1756 [22:54:36] *** Quits: wodencafe (wodencafe@replaced-ip ) (Quit: All matter is merely energy condensed to a slwo vibration. We are all one consciousness experiencing itself subjectively, there is no such thing as death, life is only a dream, and we are the imagination of ourselves.)
1757 [22:55:00] *** Quits: craigevil (craig@replaced-ip ) (Quit: leaving)
1758 [22:57:33] *** Quits: abstrn (~abstracte@replaced-ip ) (Ping timeout: 240 seconds)
1759 [22:58:02] *** debhelper sets mode: +l 985
1760 [22:59:44] *** Quits: rustyshackleford (uid236774@replaced-ip ) (Quit: Connection closed for inactivity)
1761 [22:59:44] *** Quits: Grldfrdom_ (A099@replaced-ip ) (Quit: ZNC from FreeZNC.ru - Account expired)
1762 [22:59:44] *** Joins: kliq (~kliq@replaced-ip )
1763 [22:59:54] *** Quits: badsektor (~badsektor@replaced-ip ) (Remote host closed the connection)
1764 [23:00:02] <H-var> what should I select in that configmenu to make all the AX210 features work? Thank you
1765 [23:00:34] *** Joins: cliq (~kliq@replaced-ip )
1766 [23:00:42] <rockworld> what is the permission I should give to a service
1767 [23:02:02] <rockworld> like chmod 755 ?
1768 [23:02:04] <greycat> rockworld: that's an incredibly broad question
1769 [23:02:38] <greycat> #debian is not really qualified to tell you how to design the execution environment of a brand new service
1770 [23:02:53] <rockworld> greycat lol
1771 [23:03:08] <greycat> general principles would include things like "try to run it as a new UID that doesn't do anything else"
1772 [23:03:09] *** Joins: huhuhu (~huhuhu@replaced-ip )
1773 [23:03:40] <greycat> or, if it has to make use of existing resources, then give it the bare minimum of privileges necessary to use them
1774 [23:03:51] <greycat> I don't know why you think this is funny.
1775 [23:04:00] *** Quits: kliq (~kliq@replaced-ip ) (Ping timeout: 246 seconds)
1776 [23:05:01] <rockworld> greycat: sorry :p it was not bad intention but thats a question I was wondering just like that
1777 [23:05:24] <rockworld> -rw-r--r--
1778 [23:05:32] <rockworld> thats the permission I have right now
1779 [23:05:32] *** Quits: spectral` (~stuxnet@replaced-ip ) (Remote host closed the connection)
1780 [23:05:54] *** Joins: craigevil (craig@replaced-ip )
1781 [23:05:57] <rockworld> Im not too experienced with system
1782 [23:07:52] <greycat> are you talking about some config file that the service needs to read? or what?
1783 [23:08:01] *** Quits: kats99 (~pi@replaced-ip ) (Ping timeout: 265 seconds)
1784 [23:08:05] <greycat> why are you designing a new service if you are not familiar with the basics of your system?
1785 [23:08:07] <rockworld> it gonna work with apache
1786 [23:08:27] <rockworld> thats a websocket service
1787 [23:09:07] <greycat> Well, once again, #debian is not qualified to help you design a new service, especially a "websocket service". I don't even know what that *is*. Maybe #httpd will know.
1788 [23:10:05] <rockworld> Im going to ask them :) thanks
1789 [23:10:32] *** Joins: dvs (~hibbard@replaced-ip )
1790 [23:10:53] *** Joins: abstrn (~abstracte@replaced-ip )
1791 [23:14:22] *** Joins: tagomago (~tagomago@replaced-ip )
1792 [23:15:10] *** Joins: is0ke3 (~is0ke3@replaced-ip )
1793 [23:15:18] *** Joins: Stonefruit2 (~Stonefrui@replaced-ip )
1794 [23:17:39] *** Quits: cliq (~kliq@replaced-ip ) (Ping timeout: 246 seconds)
1795 [23:18:03] *** Quits: Stonefruit (~Stonefrui@replaced-ip ) (Ping timeout: 268 seconds)
1796 [23:18:46] *** Joins: gibarian_ (~jgratero@replaced-ip )
1797 [23:19:11] *** Joins: D4rk4ngel2020 (~darkangel@replaced-ip )
1798 [23:19:52] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
1799 [23:20:39] *** Quits: coot (~coot@replaced-ip ) (Quit: coot)
1800 [23:21:36] *** Joins: is0ke3 (~is0ke3@replaced-ip )
1801 [23:22:51] *** Joins: haijuno (~haijuno@replaced-ip )
1802 [23:30:09] *** Parts: uxfi (~uxfi@replaced-ip ) ("Leaving")
1803 [23:30:24] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 268 seconds)
1804 [23:30:27] *** Joins: uxfi (~uxfi@replaced-ip )
1805 [23:31:49] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
1806 [23:32:01] *** Joins: is0ke3 (~is0ke3@replaced-ip )
1807 [23:32:37] *** Quits: ax562 (~ax562@replaced-ip ) (Read error: Connection reset by peer)
1808 [23:33:11] *** Quits: gelignite (~gelignite@replaced-ip ) (Quit: Stay safe!)
1809 [23:33:17] *** Joins: Haudegen (~quassel@replaced-ip )
1810 [23:34:05] *** Joins: ax562 (~ax562@replaced-ip )
1811 [23:35:20] *** Joins: asterismo_l (~asterismo@replaced-ip )
1812 [23:35:56] *** Quits: meinwolf (~meinwolf@replaced-ip ) (Remote host closed the connection)
1813 [23:36:22] *** Quits: gibarian_ (~jgratero@replaced-ip ) (Quit: Leaving)
1814 [23:36:30] *** Joins: meinwolf (~meinwolf@replaced-ip )
1815 [23:37:15] *** Quits: Slumlord (~Slumlord@replaced-ip ) (Quit: Leaving)
1816 [23:37:43] *** Joins: ceska (~Cieska@replaced-ip )
1817 [23:40:53] *** Quits: odnes (~odnes@replaced-ip ) (Ping timeout: 265 seconds)
1818 [23:42:26] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 252 seconds)
1819 [23:43:23] *** Quits: ridik (~ridik@replaced-ip ) (Read error: Connection reset by peer)
1820 [23:44:26] *** Joins: is0ke3 (~is0ke3@replaced-ip )
1821 [23:44:51] *** Quits: meinwolf (~meinwolf@replaced-ip ) (Remote host closed the connection)
1822 [23:45:14] *** Joins: meinwolf (~meinwolf@replaced-ip )
1823 [23:47:07] *** Quits: tagomago (~tagomago@replaced-ip ) (Remote host closed the connection)
1824 [23:49:29] *** Quits: is0ke3 (~is0ke3@replaced-ip ) (Ping timeout: 246 seconds)
1825 [23:50:04] *** Quits: greycat (~greg@replaced-ip ) (Quit: Bye)
1826 [23:51:50] *** Joins: is0ke3 (~is0ke3@replaced-ip )
1827 [23:52:36] *** Joins: colemickens (colemicken@replaced-ip )
1828 [23:52:56] *** Joins: nitefall (~thewellin@replaced-ip )
1829 [23:53:42] <colemickens> hi, can anyone tell me what install scdaemon.udev rules into the correct location in debian?
1830 [23:54:01] <colemickens> the gnupg2 source package doesn't really hint as to how ti gets installed
1831 [23:55:56] *** Quits: monkwitdafunk (~user1@replaced-ip ) (Read error: Connection reset by peer)
1832 [23:56:18] *** Quits: lazr47 (~lazr47@replaced-ip ) (Ping timeout: 268 seconds)
1833 [23:56:55] *** Joins: wodencafe (wodencafe@replaced-ip )
1834 [23:57:31] *** Quits: D4rk4ngel2020 (~darkangel@replaced-ip ) (Ping timeout: 268 seconds)
1835 [23:57:44] <colemickens> I guess this is part of the answer: replaced-url
↑ top
context: nick names on moving displays as market values
#debian Freenode IRC channel closed on 2021-06-01
contact: a @ her0. be