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:00:09] <ratrace> ob-sed: why would you edit on the production server directly? nothing you said so far makes any sense
1 [00:00:13] <wasamasa> not to mention way more updates
2 [00:00:24] <ob-sed> tuxic: no the test machine is at home, the production server would be debian+xfce on amazon aws
3 [00:00:33] <ratrace> this is starting to sound like a joke
4 [00:00:44] <ob-sed> ratrace: minor bugfixing on a production server for example
5 [00:00:53] <ratrace> ob-sed: that'd be doing it wrong
6 [00:01:04] <ob-sed> why
7 [00:01:24] <ob-sed> what if i need to edit how much memory is allocated to scripts running on the server, minor bugfix, edit it in vi
8 [00:01:27] <ob-sed> or sublime
9 [00:01:32] <ob-sed> tho i admit, vi is fine
10 [00:01:39] <tuxic> don't use a GUI on AWS its a waste of resources ( money ) and its never advised to run a DE on for a server
11 [00:01:41] <ratrace> ob-sed: because your production environment should have minimum amount of software for the given task, and any "bug fixes" you do on your dev box, you test and deploy when you're sure they're ready
12 [00:01:48] <wasamasa> you edit it in a devel environment, test it, deploy it to production
13 [00:01:59] <wasamasa> if you're feeling fancy, deploy to staging, test some more, deploy to production
14 [00:02:16] <wasamasa> there's no reason to do coding on a server
15 [00:02:27] <ob-sed> well i did edit how much ram was allowed on a production server for scripts, no need for testing
16 [00:02:48] <wasamasa> it just invites more room for error and lack of reproducability
17 [00:02:53] <ob-sed> true
18 [00:02:58] *** Quits: dastier_ (~dastier@replaced-ip ) (Quit: Leaving)
19 [00:02:59] <ratrace> ob-sed: ideally you should use something like ansible for config management and NOT edit config files in production
20 [00:03:03] <wasamasa> admins being lazy is how you get hacked
21 [00:03:07] <ob-sed> coding at home, deploy changes to a remote server, good idea
22 [00:03:20] <ratrace> deploy via git for instance
23 [00:03:26] <ob-sed> ansible is learning a whole new system i dont need yet same with git
24 [00:03:30] <ob-sed> i admit i dont know git
25 [00:03:47] <ob-sed> git for /etc ? too complicated for me atm
26 [00:03:51] <ratrace> well you know what, you came here asking for advice and you're getting it. the answer to your orig question is a resounding: NO.
27 [00:03:53] <wasamasa> deployment can be as simple as doing a mirror operation with rsync
28 [00:04:33] <ob-sed> My question then is is Debian a good fit for a production server on aws (no X) with django and 5 million users a month ?
29 [00:04:42] *** Quits: elkalamar_ (elkalamar@replaced-ip ) (Read error: Connection reset by peer)
30 [00:04:45] <ob-sed> its abit like an instagram clone the webapp
31 [00:04:50] *** Quits: fax (~quassel@replaced-ip##) (Quit: ##replaced-url
32 [00:04:51] <wasamasa> yes, plenty people use their debian/ubuntu machines and are fine
33 [00:04:53] <ratrace> ob-sed: definitely
34 [00:05:01] *** Joins: elkalamar (elkalamar@replaced-ip )
35 [00:05:08] <ob-sed> nice sounds good thanks for the advice ratrace and wasamasa
36 [00:05:09] <ratrace> all our servers are debian, for example
37 [00:05:16] <ob-sed> ratrace: what about with Xfce ?
38 [00:05:21] <ob-sed> ratrace: what do your servers do ?
39 [00:05:36] <ratrace> web application backend for mobile apps
40 [00:05:43] <ob-sed> nice
41 [00:06:04] <ob-sed> ratrace: I will be deploying similar, the webapp will server as the GUI inside a mobile app browser container
42 [00:06:11] *** Joins: annadane (~annadane@replaced-ip )
43 [00:06:35] <ratrace> what do you mean
44 [00:07:31] <ob-sed> ratrace: I will write an app for android and iOS which will simply embed a web browser object, that web browser object will browse to my debian webapp server, the aws debian webapp server will serve a User Interface to the user on their mobile device
45 [00:08:10] <ratrace> ob-sed: I don't think google play or apple store are gonna allow that
46 [00:08:13] *** Quits: Olipro (~Olipro@replaced-ip ) (Ping timeout: 265 seconds)
47 [00:08:15] <ob-sed> mainly cos im not sure how to write a GUI for android + iOS that will update bits of data over HTTP to the webapp (im not familar with react.js and AJAX coding) for example
48 [00:08:20] <ob-sed> ratrace: why not?
49 [00:08:33] <wasamasa> you'll have to use their own webview
50 [00:08:46] <wasamasa> for security reasons they say
51 [00:08:46] <ob-sed> wasamasa: yeah thats what i'll do, use their own webview
52 [00:08:48] <ob-sed> all good
53 [00:08:50] <ratrace> ob-sed: because that means you can have whatever UI you want, change it any time with no review from them
54 [00:09:02] <ratrace> your app must be written according to their guidelines
55 [00:09:03] <ob-sed> oh i see what you mean ratrace
56 [00:09:03] <whislock> Yeah, that is not going to fly.
57 [00:09:24] <ratrace> you CAN however write a html5 interface and wrap it in one of those native launcher thingies
58 [00:09:30] <ratrace> phonegap or whatsitcalled
59 [00:09:45] <ob-sed> so what will i have to learn to write a GUI in say swift for iOS, that uses the aws debian webapp as the backend for storing the users photos for example
60 [00:09:52] <ratrace> you CAN have javascript powered UI and do API callbacks to your servers, but the UI must be consistent and predetermined
61 [00:09:57] <wasamasa> writing your own REST APIs
62 [00:10:22] <ob-sed> ratrace: yeah i guess i will have to learn how to make a javascript UI and do the API callbacks to the aws debian webapp backend
63 [00:10:23] <ratrace> ob-sed: no, like I said, you can have a HTML5+javascript app that's wrapped with "phonegap" as a standalone app
64 [00:10:29] <wasamasa> that's what everyone's doing these days
65 [00:10:32] <ob-sed> yep
66 [00:10:37] <ob-sed> thats what i need to learn how to do
67 [00:10:39] <ratrace> you don't need write in swift or java, you can have single codebase (html5+js) for both
68 [00:10:45] <ob-sed> nice
69 [00:10:47] <ob-sed> very good
70 [00:10:57] *** Joins: lastrodamo (~lastrodam@replaced-ip )
71 [00:11:01] *** Quits: grimR_ (~js@replaced-ip ) (Quit: Leaving)
72 [00:11:26] <ob-sed> html5+js on the webserver would be easy to write a UI i already know how, i guess i will have to get used to POSTing alot of HTTP data, and learn AJAX
73 [00:11:28] *** Joins: TinyTitMom (~TinyTitMo@replaced-ip )
74 [00:12:28] *** Quits: Gaaab (~Gaaab@replaced-ip ) (Remote host closed the connection)
75 [00:13:15] <ratrace> or use frameworks that do that low level stuff for you
76 [00:13:24] *** Joins: rda-mac (~rda-mac@replaced-ip )
77 [00:13:37] <ratrace> though personally I'd agree, learning it bottom up is the best way to learn
78 [00:13:45] *** Quits: hilt (~hilt@replaced-ip ) (Quit: hilt)
79 [00:14:00] *** Quits: greatgatsby (~greatgats@replaced-ip ) (Quit: Leaving)
80 [00:14:56] *** Quits: tuxic (~tux@replaced-ip ) (Quit: Leaving)
81 [00:15:10] *** Quits: pringau (~pringau@replaced-ip ) (Quit: Leaving)
82 [00:16:01] *** Quits: torbo (~user@replaced-ip ) (Remote host closed the connection)
83 [00:16:32] *** Joins: hilt (~hilt@replaced-ip )
84 [00:18:42] *** Joins: waterfilter (~waterfilt@replaced-ip )
85 [00:19:01] *** debhelper sets mode: +l 1569
86 [00:19:02] *** Quits: vlad-k (~Vladislav@replaced-ip ) (Ping timeout: 252 seconds)
87 [00:19:31] *** Quits: YesMan (~Rubafix@replaced-ip ) (Ping timeout: 250 seconds)
88 [00:19:33] *** Joins: Chunkyz (~Chunkyz@replaced-ip )
89 [00:19:37] *** Quits: Chunkyz (~Chunkyz@replaced-ip ) (Client Quit)
90 [00:19:49] <ob-sed> ratrace: so the frameworks, are any of them as easy to use as Visual Basics? e.g. drag and drop a user interface into place ?
91 [00:19:51] *** Joins: kord (632c7cb8@replaced-ip )
92 [00:19:57] <kord> hi all
93 [00:19:59] <ob-sed> I should probably check out Visual Studio and Xamarin
94 [00:20:07] *** Quits: ceska (~Cieska@replaced-ip ) (Ping timeout: 252 seconds)
95 [00:20:09] <wasamasa> I'd hope these times are finally over
96 [00:20:16] <ratrace> ob-sed: no I don't think they are visual like that
97 [00:20:23] *** Quits: Ekchuan (~RandyMars@replaced-ip ) (Ping timeout: 276 seconds)
98 [00:20:33] <wasamasa> yes, there's stuff for drag and drop designs, but it's aimed at designers creating mock-ups, not actual websites to run
99 [00:20:49] <abrotman> Are you asking if there's a Linux-ish GUI for coding .NET things?
100 [00:20:50] <wasamasa> doing anything useful with these is torture
101 [00:20:55] *** Parts: kord (632c7cb8@replaced-ip ) ()
102 [00:21:25] <ob-sed> ah right
103 [00:21:35] <ob-sed> abrotman: yes
104 [00:21:38] <abrotman> There is a #debian-cli on irc.oftc.net
105 [00:21:41] <abrotman> or used to be ..
106 [00:21:42] *** Quits: rda-mac (~rda-mac@replaced-ip ) (Remote host closed the connection)
107 [00:21:44] <ob-sed> thanks abrotman
108 [00:22:09] <abrotman> dpkg: tell ob-sed about mono
109 [00:22:12] <abrotman> see some of those resources
110 [00:22:18] *** Joins: rda-mac (~rda-mac@replaced-ip )
111 [00:22:29] <ob-sed> ah thanks yeah i think mono is what im after
112 [00:22:44] <ob-sed> <dpkg> abrotman wants you to know: [mono] infectious mononucleosis ("glandular fever", "kissing disease")
113 [00:22:45] <ob-sed> lol
114 [00:22:50] <ob-sed> not that mono tho ;-)
115 [00:23:00] <ratrace> har har har
116 [00:23:38] *** Quits: waterfilter (~waterfilt@replaced-ip ) (Ping timeout: 240 seconds)
117 [00:24:12] *** Joins: YesMan (~Rubafix@replaced-ip )
118 [00:24:30] *** Quits: _DeLa_ (~Thunderbi@replaced-ip ) (Quit: _DeLa_)
119 [00:25:51] *** Quits: lastrodamo (~lastrodam@replaced-ip ) (Quit: Quitte)
120 [00:26:21] *** Quits: dethos (~dethos@replaced-ip ) (Ping timeout: 252 seconds)
121 [00:27:04] *** Quits: rda-mac (~rda-mac@replaced-ip ) (Ping timeout: 265 seconds)
122 [00:27:27] *** Quits: GWM (~GWM@replaced-ip ) (Ping timeout: 252 seconds)
123 [00:29:01] *** debhelper sets mode: +l 1560
124 [00:29:59] *** Quits: mr4rm (~mr4rm@replaced-ip ) (Ping timeout: 246 seconds)
125 [00:31:35] *** Joins: patterson (~patterson@replaced-ip )
126 [00:32:26] *** Quits: czesmir (~stefan@replaced-ip ) (Quit: Lost terminal)
127 [00:32:37] *** Joins: irvinghuhuh (~sam@replaced-ip )
128 [00:32:44] <irvinghuhuh> Hi :)
129 [00:32:55] <ob-sed> Im choosing debian for my production server
130 [00:33:15] <ratrace> that's the ticket!
131 [00:33:44] *** Quits: asymptotically (~asymptoti@replaced-ip ) (Quit: Leaving)
132 [00:34:33] <annadane> sigh. anyone know why pavucontrol won't detect a source, so that i can't switch it to my headphones?
133 [00:34:41] <annadane> it's a music stream playing in firefox
134 [00:34:53] *** Joins: emOne (~emOne@replaced-ip )
135 [00:34:53] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
136 [00:34:53] *** Joins: emOne (~emOne@replaced-ip )
137 [00:35:20] <irvinghuhuh> Just a quick question : I just installed Debian on my laptop I realized the touchpad is not enough sensitive, I have to apply a relative big pressure on the pad to make the cursor move or scrolling.. Do you have any idea how I can solve that ?
138 [00:36:23] <annadane> i did kill pulseaudio and start it again, i don't know what's wrong...
139 [00:37:07] *** Joins: Ekchuan (~RandyMars@replaced-ip )
140 [00:37:55] *** Quits: jeweet_ (jeweet_@replaced-ip ) (Quit: ...and he's gone)
141 [00:37:56] *** Quits: JaredSchooley (~Sech@replaced-ip ) (Ping timeout: 276 seconds)
142 [00:38:04] *** Quits: Ard1t (~ard1t@replaced-ip##) (Quit: Nettalk6 - ##replaced-url
143 [00:38:08] *** Joins: jeweet_ (jeweet_@replaced-ip )
144 [00:38:27] <annadane> oh it might be a problem of group membership
145 [00:38:31] <annadane> i probably need to logout/in
146 [00:38:48] <ob-sed> irvinghuhuh: post a dmesg and your message to the mailing list
147 [00:39:04] *** Joins: JaredSchooley (~Sech@replaced-ip )
148 [00:39:16] <Kyros> irvinghuhuh: depending on the touchpad possibly either messing around with xinput or installing the synaptics xorg package
149 [00:39:48] <ob-sed> irvinghuhuh: try these links replaced-url
150 [00:39:54] <ob-sed> replaced-url
151 [00:39:57] <ob-sed> replaced-url
152 [00:40:08] <ob-sed> irvinghuhuh: you can adjust the sensitivity of the touchpad with the first link
153 [00:40:38] *** Joins: scde (~scde@replaced-ip )
154 [00:40:48] *** Quits: annadane (~annadane@replaced-ip ) (Remote host closed the connection)
155 [00:40:48] <ob-sed> depends what brand you have, hence the dmesg
156 [00:40:51] <Kyros> tbh xinput has never solved any problems for me
157 [00:40:57] <ob-sed> irvinghuhuh: could you pastebin a dmesg?
158 [00:41:11] *** Quits: gridcommand (~gridcomma@replaced-ip ) (Ping timeout: 250 seconds)
159 [00:41:13] <irvinghuhuh> Thanks for your answers :)
160 [00:41:26] <irvinghuhuh> Hm, how do I send you the command result ?
161 [00:41:43] <ratrace> !pastebin
162 [00:41:43] <dpkg> Do not paste more than 2 lines to this channel. Instead, use for text: replaced-url
163 [00:42:12] <irvinghuhuh> thanks
164 [00:42:34] *** Quits: stenrose (~martin@replaced-ip ) (Remote host closed the connection)
165 [00:42:57] *** Joins: frx774 (~jrwyant@replaced-ip )
166 [00:42:57] *** Joins: stenrose (~martin@replaced-ip )
167 [00:43:05] *** Joins: mr4rm (~mr4rm@replaced-ip )
168 [00:43:21] *** Quits: nuclearninja (~nucleargn@replaced-ip ) (Ping timeout: 250 seconds)
169 [00:43:59] *** Quits: ghost64 (~ghost64@replaced-ip ) (Read error: Connection reset by peer)
170 [00:44:00] *** Quits: TinyTitMom (~TinyTitMo@replaced-ip ) (Remote host closed the connection)
171 [00:44:07] *** Quits: Logan2001 (~Logan2000@replaced-ip ) (Quit: Quit)
172 [00:44:14] <irvinghuhuh> Here : replaced-url
173 [00:44:17] *** Quits: Piggy (~Piggy@replaced-ip ) (Ping timeout: 240 seconds)
174 [00:44:26] *** Quits: kzimmermann (~Thunderbi@replaced-ip ) (Ping timeout: 276 seconds)
175 [00:45:14] *** Joins: Piggy (~Piggy@replaced-ip )
176 [00:46:00] *** Quits: mr4rm (~mr4rm@replaced-ip ) (Client Quit)
177 [00:46:34] *** Joins: annadane (~annadane@replaced-ip )
178 [00:47:43] <ob-sed> irvinghuhuh: you have this touchpad: input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input6
179 [00:48:31] <ob-sed> irvinghuhuh: this is for a synaptics touch pad but might work on yours: replaced-url
180 [00:49:23] <Kyros> yeah, i think you want to use xinput for that one
181 [00:49:37] *** Joins: ghost64 (~ghost64@replaced-ip )
182 [00:49:39] <ob-sed> yeah xinput should work for a GlidePoint touchpad as well
183 [00:50:28] *** Joins: dArK_IcE (~lawl@replaced-ip )
184 [00:51:10] <irvinghuhuh> Even after installing "xserver-xorg-input-libinput", the command result of "xinput list" is "command unknown"
185 [00:52:13] *** Quits: YesMan (~Rubafix@replaced-ip ) (Read error: Connection reset by peer)
186 [00:52:56] *** Joins: dddd (~Me@replaced-ip )
187 [00:53:07] *** Quits: alexandros_c (~alexandro@replaced-ip ) (Ping timeout: 252 seconds)
188 [00:55:00] *** Joins: Arkangel (~sith@replaced-ip )
189 [00:55:29] <abrotman> did you install the xinput package?
190 [00:55:59] <Arkangel> Hello friends
191 [00:56:33] *** Quits: Haudegen (~quassel@replaced-ip ) (Ping timeout: 265 seconds)
192 [00:56:43] <irvinghuhuh> No, it works now thanks x)
193 [00:57:43] *** Parts: Arkangel (~sith@replaced-ip ) ()
194 [00:59:32] *** Joins: ro9u3or (~ro9u3or@replaced-ip )
195 [01:00:16] *** Quits: dArK_IcE (~lawl@replaced-ip ) ()
196 [01:01:33] *** Parts: ro9u3or (~ro9u3or@replaced-ip ) ()
197 [01:01:53] <irvinghuhuh> the result of "xinput list" : replaced-url
198 [01:02:26] *** Quits: Twiggy (Twiggy@replaced-ip ) (Remote host closed the connection)
199 [01:02:27] <irvinghuhuh> It doesn't tell me the name
200 [01:02:59] *** Quits: humbot (~o@replaced-ip ) (Quit: hello)
201 [01:02:59] *** Joins: shadow98 (uid236862@replaced-ip )
202 [01:05:32] *** Joins: CaCO3 (~CaCO3@replaced-ip )
203 [01:06:42] *** Quits: CaCO3 (~CaCO3@replaced-ip ) (Client Quit)
204 [01:09:01] *** debhelper sets mode: +l 1554
205 [01:12:26] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 240 seconds)
206 [01:14:26] *** Parts: lf94 (~lf94@replaced-ip ) ("WeeChat 2.4")
207 [01:17:54] *** Quits: jubo2 (~jubz@replaced-ip ) (Quit: Konversation terminated!)
208 [01:18:11] *** Joins: BlueByte (~walther@replaced-ip )
209 [01:18:13] <irvinghuhuh> I don't it's detected
210 [01:18:18] <irvinghuhuh> think*
211 [01:18:29] *** Joins: PairOfDiceTossed (~podt@replaced-ip )
212 [01:19:04] *** Quits: PairOfDiceTossed (~podt@replaced-ip ) (Client Quit)
213 [01:19:08] *** Joins: magic_ninja_work (~sparkie1@replaced-ip )
214 [01:19:33] *** Quits: irvinghuhuh (~sam@replaced-ip ) (Quit: Leaving)
215 [01:21:35] *** Quits: dddd (~Me@replaced-ip ) (Remote host closed the connection)
216 [01:25:14] *** Quits: emOne (~emOne@replaced-ip ) (Remote host closed the connection)
217 [01:25:21] *** Quits: dm4sg (~dm4sg@replaced-ip ) (Remote host closed the connection)
218 [01:27:57] *** Quits: squirrel (~mj@replaced-ip ) (Ping timeout: 252 seconds)
219 [01:29:01] *** debhelper sets mode: +l 1548
220 [01:30:29] *** Joins: hank_ (~hank@replaced-ip )
221 [01:31:02] *** Quits: hank_ (~hank@replaced-ip ) (Client Quit)
222 [01:31:55] *** orblivion is now known as orb
223 [01:32:22] <sponix> ratrace: so if I create the pool on this drive when it is connected USB 3, and export it, think it will import right back in without issues when I shuck it and hook it up Sata inside my rig ?
224 [01:32:37] *** Quits: jeddi (~jedd@replaced-ip ) (Ping timeout: 240 seconds)
225 [01:32:41] *** Joins: yue-lan (~lanyue@replaced-ip )
226 [01:34:09] *** Joins: jeddi (~jedd@replaced-ip )
227 [01:34:57] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
228 [01:35:49] *** Joins: j0hnny (kadnsjkfnw@replaced-ip )
229 [01:36:23] *** Joins: Wulf4 (~Wulf@replaced-ip )
230 [01:37:51] *** Quits: oiaohm (~oiaohm@replaced-ip ) (Read error: Connection reset by peer)
231 [01:38:17] *** Joins: oiaohm (~oiaohm@replaced-ip )
232 [01:38:44] *** Joins: m0rd3cai (~m0rd3cai@replaced-ip )
233 [01:38:45] *** Joins: Thedarkb-X40 (~beno@replaced-ip )
234 [01:40:10] <m0rd3cai> So need some assistance guys, debian 9.4 - xfce on lightdm. Trying to add new wallpaper. moved the file to /usr/share/backgrounds/xfce, verified the file is there but will not show in Desktop Settings. Its greyed out. Ive tried selecting a different folder with "other" but all options are greyed out. im assuming its some kind of permission issue
235 [01:40:20] *** Quits: Wulf (~Wulf@replaced-ip ) (Ping timeout: 276 seconds)
236 [01:40:20] *** Wulf4 is now known as Wulf
237 [01:40:21] <m0rd3cai> xfce4*
238 [01:41:18] *** Joins: emOne (~emOne@replaced-ip )
239 [01:41:18] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
240 [01:41:18] *** Joins: emOne (~emOne@replaced-ip )
241 [01:43:15] *** Joins: zeden (~user@replaced-ip )
242 [01:43:26] *** Quits: zeden (~user@replaced-ip ) (Client Quit)
243 [01:43:40] <sponix> m0rd3cai: have a look at the user/group and permissions on your other wallpapers that do work ... ?
244 [01:43:55] *** Quits: BlueByte (~walther@replaced-ip ) (Quit: This computer has gone to sleep)
245 [01:44:31] <m0rd3cai> sponix: yup thats the issue
246 [01:44:42] <annadane> m0rd3cai, unrelatedly, 9.4 is ancient
247 [01:45:01] <annadane> if you're still going to be on debian 9, 9.11 is the latest
248 [01:45:14] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 246 seconds)
249 [01:45:25] <sponix> m0rd3cai: amazing how you already knew where to look
250 [01:45:41] <m0rd3cai> i tried to figure it out first ;-)
251 [01:46:01] *** Joins: diniwed (~gavron@replaced-ip )
252 [01:46:46] <sponix> m0rd3cai: hmm, you saying my guesses are better than yours ?
253 [01:46:49] <m0rd3cai> heres what my folder looks like. the 2 show up on the bottom. debian-bground doesnt
254 [01:46:52] <m0rd3cai> replaced-url
255 [01:47:27] <sponix> m0rd3cai: so you want the number to chmod it to, to fix it ?
256 [01:47:30] <m0rd3cai> to clarify, im 99% sure its permissions. Just dont know how to straighten this out. Last time i put a picture in, it worked just find
257 [01:47:43] <m0rd3cai> i tried 700 but it didnt like that. im guessing 644?
258 [01:47:55] *** Quits: chalcedony (~chalcedon@replaced-ip ) (Ping timeout: 250 seconds)
259 [01:47:56] *** Joins: gouhoband (~gouhoband@replaced-ip )
260 [01:48:10] <m0rd3cai> maybe 600?
261 [01:48:13] <m0rd3cai> lol
262 [01:48:14] <sponix> m0rd3cai: don't guess
263 [01:48:32] <m0rd3cai> hrm...
264 [01:48:33] <sponix> m0rd3cai: what do the numbers stand for ?
265 [01:49:03] *** Quits: r01_mage (~Thunderbi@replaced-ip ) (Ping timeout: 245 seconds)
266 [01:49:43] <m0rd3cai> read/write and i want to say (wrong terminology) access to use the file?
267 [01:49:48] <sponix> m0rd3cai: linuxjourney.com for more details. And yes 644 should get you rwx-r-r -- pretty damn sure :)
268 [01:50:23] <m0rd3cai> yea rwx-r-r is what i need. im getting there. whole different world than winblows.
269 [01:50:32] <sponix> m0rd3cai: first set is for the user that owns it, the 2nd is for the group permission to it, and the last set, is for anyone/anything outside of those (guest)
270 [01:50:56] <m0rd3cai> thanks sponix, for not just giving the answer. I think thats the best way to help people answer questions, make them think!
271 [01:51:04] *** Quits: stochastix (~quassel@replaced-ip ) (Ping timeout: 252 seconds)
272 [01:51:23] *** Quits: argusbr (~tls@replaced-ip ) (Ping timeout: 250 seconds)
273 [01:51:26] *** Joins: emOne_ (~emOne@replaced-ip )
274 [01:51:37] <m0rd3cai> ok that makes alot more sense
275 [01:51:49] <sponix> m0rd3cai: you could have likely also done chmod +r file to give everyone read across the board
276 [01:52:03] *** Joins: stochastix (~quassel@replaced-ip )
277 [01:52:22] <sponix> hmm or that might have been chmod a+r file (a for all) ... I'd have to tinker with that one myself :)
278 [01:52:36] *** Joins: emOne__ (~emOne@replaced-ip )
279 [01:52:42] <sponix> m0rd3cai: I've been doing this for over 30 years, and still don't _always_ get it right on the 1st try lol
280 [01:52:43] *** Joins: pingfloyd (~pingfloyd@replaced-ip )
281 [01:53:47] <sponix> that website goes over a lot of the "basics" though, you need to get around the terminal and fix things
282 [01:53:59] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 276 seconds)
283 [01:54:08] *** Quits: marsupapu (~marsupapu@replaced-ip ) (Remote host closed the connection)
284 [01:54:30] <m0rd3cai> hah I hear that man! Theres ALOT to some linux systems. I love that though. awesome, looks like I have some reading to do!
285 [01:54:47] *** Quits: Nokaji (~Nokaji@replaced-ip##) (Quit: ***** (History in The Making) Prince Andrew and Jeffrey Epstein FULL INTERVIEW - BBC Newsnight - ##replaced-url
286 [01:55:25] <sponix> m0rd3cai: there is always MORE reading to do, no one has it all mastered, and also things are always changing
287 [01:55:44] <m0rd3cai> very true!
288 [01:55:48] *** Joins: jak2000 (~jak2000@replaced-ip )
289 [01:56:11] *** Joins: dilaa (~androirc@replaced-ip )
290 [01:56:29] *** Quits: emOne_ (~emOne@replaced-ip ) (Ping timeout: 265 seconds)
291 [01:57:06] <annadane> m0rd3cai, but yeah, run an apt update && apt upgrade, you might need an apt dist-upgrade too
292 [01:57:10] <annadane> to go from 9.4 to 9.11
293 [01:57:36] <annadane> you have until basically july of 2020 to switch to debian 10 before debian 9 begins to stop being supported for all packages
294 [01:57:42] <sponix> m0rd3cai: keep in in the channel here so all can learn. And no one should poke fun, for you asking about the basics
295 [01:58:01] <sponix> m0rd3cai: what you need to read on for the user/group change is "chown" command
296 [01:58:30] <m0rd3cai> yea I just saw that on the website.
297 [01:58:35] <m0rd3cai> its a group.
298 [01:58:36] <sponix> m0rd3cai: chown sponix:users file.jpg for example can do the user sponix, the group users, on the file.jpg :)
299 [01:59:00] <sponix> m0rd3cai: yep, that linuxjourney.com is gonna cover most of these things
300 [02:00:32] *** Joins: Brainium (~brainium@replaced-ip )
301 [02:01:07] *** Quits: de-facto (~de-facto@replaced-ip ) (Quit: See you around.)
302 [02:01:23] *** Joins: de-facto (~de-facto@replaced-ip )
303 [02:02:16] <m0rd3cai> sponix: ah, i found the "chgrp" command which changed the group but still doesnt show up in wallpapers. permissions match default bg file permissions. hrm....
304 [02:03:09] <sponix> m0rd3cai: you sure, do another ls -l on that dir and dump it to the pastebin again
305 [02:03:34] <m0rd3cai> un momento
306 [02:03:35] *** Parts: gouhoband (~gouhoband@replaced-ip ) ("Leaving")
307 [02:03:55] <m0rd3cai> replaced-url
308 [02:04:35] <sponix> m0rd3cai: and what directory is this in again ?
309 [02:04:35] <m0rd3cai> even did "chown root:root filename.jpg" after chgrp
310 [02:04:40] *** Quits: gnupi (~gnupi@replaced-ip ) (Quit: leaving)
311 [02:04:44] <m0rd3cai> /usr/share/backgrounds/xfce
312 [02:05:07] <m0rd3cai> from my knowledge, default wallpaper folder
313 [02:07:49] <sponix> m0rd3cai: majority of mine are just in /usr/share/backgrounds .... I do have a /usr/share/backgrounds/xfce (but it only contains a few defaults there)
314 [02:08:14] *** Joins: brainfreeze (~brainfree@replaced-ip )
315 [02:08:26] *** Quits: stochastix (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
316 [02:08:34] <m0rd3cai> those bastards. its supposed to be /usr/share/backgrounds.
317 [02:08:43] <m0rd3cai> lesson learned, hah!
318 [02:08:52] <m0rd3cai> well i learned a good lesson in file permission
319 [02:09:14] *** Joins: stochastix (~quassel@replaced-ip )
320 [02:09:15] <sponix> m0rd3cai: but hell, you should be able to make that owned by your user/group and just have in in /home/yourUser/pictures also :) my screen shots post as backgrounds possible when I surf to that directory :)
321 [02:09:46] *** Quits: terminalator (terminalat@replaced-ip ) (Ping timeout: 252 seconds)
322 [02:09:50] <sponix> m0rd3cai: I think/feel it is dumb not showing up when you dumped into the xfce spot... but whatever
323 [02:10:16] <sponix> m0rd3cai: whoever did this is likely not concerned with my personal opinion on the matter
324 [02:10:25] <m0rd3cai> I even created a folder in homedir with root permission, root group, chowned the wallpaper to root and xfce-settings still wouldnt let me select the folder. is that because the $home directory is owned by a different user?
325 [02:10:51] *** Quits: CodeBlue1776 (~CodeBlue1@replaced-ip ) (Read error: Connection reset by peer)
326 [02:10:53] *** Quits: ced117 (~ced117@replaced-ip ) (Ping timeout: 276 seconds)
327 [02:11:00] *** Quits: emOne__ (~emOne@replaced-ip ) (Remote host closed the connection)
328 [02:11:10] <m0rd3cai> sponix: yea i want to sort that out and have a wallpaper folder in $home
329 [02:11:11] <sponix> m0rd3cai: with very few exceptions everything in your /home/user should be owned by that users user/group
330 [02:11:24] <m0rd3cai> thats what i thought
331 [02:11:56] <m0rd3cai> kids bedtime, back in a bit
332 [02:12:00] <sponix> m0rd3cai: should be able to chown -R sponix:sponix ./wallpapers and be just fine
333 [02:12:15] <sponix> m0rd3cai: I gotta make a meal anyway
334 [02:12:30] *** Joins: ced117 (~ced117@replaced-ip )
335 [02:12:30] *** Quits: ced117 (~ced117@replaced-ip ) (Changing host)
336 [02:12:30] *** Joins: ced117 (~ced117@replaced-ip )
337 [02:12:55] *** Quits: scde (~scde@replaced-ip ) (Ping timeout: 265 seconds)
338 [02:13:35] *** Quits: frx774 (~jrwyant@replaced-ip ) (Quit: leaving)
339 [02:14:08] *** Quits: chomwitt (~chomwitt@replaced-ip ) (Ping timeout: 276 seconds)
340 [02:16:46] *** Joins: aZz7eCh (~aZz7eCh@replaced-ip )
341 [02:16:56] *** Joins: CodeBlue1776 (~CodeBlue1@replaced-ip )
342 [02:17:35] <Akuw> is there any app to wifi analizer?
343 [02:18:34] <sponix> Akuw: wireshark
344 [02:20:04] <senate> kismet
345 [02:21:08] *** Quits: tme520 (~tme520@replaced-ip ) (Ping timeout: 252 seconds)
346 [02:23:05] <senate> to analyze network packages use tcpdump
347 [02:27:00] *** Joins: doubletwist (~doubletwi@replaced-ip )
348 [02:28:04] <m0rd3cai> Linssid
349 [02:28:15] <m0rd3cai> Akuw: Linssid is a good one I use
350 [02:28:17] *** Quits: Brainium (~brainium@replaced-ip ) (Ping timeout: 246 seconds)
351 [02:29:05] <BazookaTooth> tcpshark is also a thing. bit easier to read perhaps
352 [02:29:14] <m0rd3cai> Akuw: if your wanting to analyze traffic on wifi network, wireshark's what you want. If you want to see what wifi AP's are around you and the signal strength, you want something like Linssid
353 [02:29:35] <BazookaTooth> you can also dump it to wireshark
354 [02:30:18] <BazookaTooth> termshark sorry
355 [02:34:31] *** Joins: chalcedony (~chalcedon@replaced-ip )
356 [02:36:53] *** Quits: zalt (~lambda443@replaced-ip ) (Ping timeout: 276 seconds)
357 [02:37:18] *** Quits: k000 (~k000@replaced-ip ) (Read error: Connection reset by peer)
358 [02:38:16] *** Joins: doubletwist- (~doubletwi@replaced-ip )
359 [02:38:26] *** Joins: rople (~rople@replaced-ip )
360 [02:38:55] *** Quits: doubletwist- (~doubletwi@replaced-ip ) (Client Quit)
361 [02:39:25] *** Joins: gridcommand (~gridcomma@replaced-ip )
362 [02:39:55] *** Joins: nucleargnat (~nucleargn@replaced-ip )
363 [02:40:17] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 240 seconds)
364 [02:40:34] *** Joins: rustbuckett (~downtime@replaced-ip )
365 [02:41:14] *** Joins: maqr (~Maqr@replaced-ip )
366 [02:42:00] *** Joins: lanyue_ (~lanyue@replaced-ip )
367 [02:43:04] *** Joins: sitting_duck (~sitting_d@replaced-ip )
368 [02:43:16] *** Parts: sitting_duck (~sitting_d@replaced-ip ) ()
369 [02:44:01] *** Quits: yue-lan (~lanyue@replaced-ip ) (Read error: Connection reset by peer)
370 [02:44:02] *** Joins: lanyue__ (~lanyue@replaced-ip )
371 [02:45:14] *** Quits: brainfreeze (~brainfree@replaced-ip ) (Quit: Leaving)
372 [02:46:26] *** Joins: tempus_fol (~tempus@replaced-ip )
373 [02:47:03] *** Quits: tempora (~tempus@replaced-ip ) (Quit: Bouncing away)
374 [02:47:38] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Ping timeout: 240 seconds)
375 [02:47:43] *** Quits: MenschZwoNull__ (~MenschZwo@replaced-ip ) (Ping timeout: 250 seconds)
376 [02:49:43] *** Quits: kein31 (~root@replaced-ip ) (Ping timeout: 252 seconds)
377 [02:51:43] *** Quits: kolla (~kolla@replaced-ip ) (Quit: %fog relay%)
378 [02:51:51] *** Joins: kein31 (~root@replaced-ip )
379 [02:52:09] *** Joins: kolla (~kolla@replaced-ip )
380 [02:55:55] *** Joins: root (~root@replaced-ip )
381 [02:56:18] *** root is now known as Guest83746
382 [02:57:51] *** tempus_fol is now known as tempus
383 [02:58:25] *** tempus is now known as tempora
384 [03:00:48] *** Quits: dilaa (~androirc@replaced-ip ) (Remote host closed the connection)
385 [03:01:06] *** Joins: lanyue_ (~lanyue@replaced-ip )
386 [03:01:09] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Ping timeout: 250 seconds)
387 [03:02:43] *** Joins: squirrel (~mj@replaced-ip )
388 [03:02:58] *** Joins: fmaurer_ (~quassel@replaced-ip )
389 [03:03:24] *** Quits: heidie-fr (~beaver@replaced-ip ) (Ping timeout: 260 seconds)
390 [03:03:38] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
391 [03:03:39] *** Quits: lanyue__ (~lanyue@replaced-ip ) (Ping timeout: 252 seconds)
392 [03:03:55] *** Quits: hilt (~hilt@replaced-ip ) (Remote host closed the connection)
393 [03:04:26] *** Joins: hilt (~hilt@replaced-ip )
394 [03:04:29] *** Joins: heidie-fr (~beaver@replaced-ip )
395 [03:06:20] *** Quits: nyov (~nyov@replaced-ip ) (Killed (orwell.freenode.net (Nickname regained by services)))
396 [03:06:28] *** Joins: nyov (~nyov@replaced-ip )
397 [03:06:35] *** Quits: fmaurer (~quassel@replaced-ip ) (Ping timeout: 252 seconds)
398 [03:07:00] <kreyren> #linux is busy.. replaced-url
399 [03:07:19] <dvs> ##linux"
400 [03:07:21] <dvs> ?
401 [03:07:25] <kreyren> yes
402 [03:09:40] <dvs> -xzpf not -xpf ?
403 [03:10:02] *** Quits: FightingFalcon (~ff@replaced-ip ) (Ping timeout: 240 seconds)
404 [03:10:28] *** Quits: crowley95 (~crowley95@replaced-ip ) (Quit: Bye bye ✋)
405 [03:11:09] <annadane> replaced-url
406 [03:11:29] <whislock> kreyren: Not sure if the space in your -C path is going to cause issues.
407 [03:11:56] *** Joins: crowley95 (~crowley95@replaced-ip )
408 [03:11:59] *** Quits: t4skforce (~t4skforce@replaced-ip ) (Ping timeout: 276 seconds)
409 [03:12:11] <senate> you need -z when it's gunzip
410 [03:12:19] <senate> tar -zxvf
411 [03:12:44] <whislock> No, you don't.
412 [03:12:55] <kreyren> whislock, same issue replaced-url
413 [03:14:14] <whislock> Manually specifying -z hasn't been needed in ages.
414 [03:14:43] <senate> old habit :P
415 [03:14:57] * kreyren was using -z but removed it for debugging since it autodetects
416 [03:15:35] <senate> haven't read tar manpages in ages
417 [03:15:52] <kreyren> i read it now, but i don't see where am i making syntax err O.o
418 [03:17:06] <whislock> kreyren: I just replicated that command, and it works.
419 [03:17:19] <kreyren> whislock, output?
420 [03:17:34] <senate> you have correct path to all files?
421 [03:17:37] *** Quits: mibo (~mibo@replaced-ip ) (Remote host closed the connection)
422 [03:17:55] <whislock> kreyren: The files are correctly extracted without errors.
423 [03:18:38] <kreyren> senate, yes replaced-url
424 [03:19:59] <whislock> kreyren: replaced-url
425 [03:20:43] *** Quits: SoulsForBelial (~SoulsForB@replaced-ip ) (Ping timeout: 245 seconds)
426 [03:21:34] <kreyren> weird
427 [03:21:49] <kreyren> whislock, tar 1.30 ?
428 [03:22:32] <whislock> Whatever version is in buster.
429 [03:23:06] <whislock> Which would be 1.30, yes.
430 [03:24:57] *** Quits: flo2marsnet (~flo2marsn@replaced-ip ) (Ping timeout: 240 seconds)
431 [03:25:18] *** Quits: monstar (~mitya@replaced-ip ) (Ping timeout: 245 seconds)
432 [03:25:19] *** Joins: crn (~crn@replaced-ip )
433 [03:26:00] *** Joins: steven_saus (~steven_sa@replaced-ip )
434 [03:26:23] *** Quits: Guest83746 (~root@replaced-ip ) (Ping timeout: 246 seconds)
435 [03:27:07] *** Joins: SoulsForBelial (~SoulsForB@replaced-ip )
436 [03:29:49] <kreyren> well this is weird ------------------------------------------------------
437 [03:29:49] <kreyren> Using kreytricks 20190912-next - sha256sum: b89e1bb900287ef6c92a14d681cba65d4645c5e28aa95199920ea75cc02977ea on platform nix_linux with wine-4.20 (Staging) and WINEARCH=win64 on WINEPREFIX=/home/kreyren/.local/share/wineprefixes/rocketleague including WINEDEBUG=fixme-all
438 [03:29:49] <kreyren> Executing w_do_call rocketleague_steam
439 [03:29:49] <kreyren> Executing load_rocketleague_steam
440 [03:29:56] <kreyren> Executing tar -C /home/kreyren/test_tar -xvpf /home/kreyren/.cache/winetricks/rocketleague_steam/d9vk-0.30.tar.gz d9vk-0.30/x64/d3d10.dll d9vk-0.30/x64/d3d10core.dll d9vk-0.30/x64/d3d10_1.dll d9vk-0.30/x64/d3d11.dll d9vk-0.30/x64/d3d9.dll d9vk-0.30/x64/dxgi.dll
441 [03:29:56] *** kreyren was kicked by debhelper (flood)
442 [03:29:59] *** Joins: crn_ (~crn@replaced-ip )
443 [03:30:03] *** Joins: kreyren (~kreyren@replaced-ip )
444 [03:30:07] <kreyren> tar: Exiting with failure status due to previous errors
445 [03:30:09] <kreyren> FATAL: Command tar -C /home/kreyren/test_tar -xvpf /home/kreyren/.cache/winetricks/rocketleague_steam/d9vk-0.30.tar.gz d9vk-0.30/x64/d3d10.dll d9vk-0.30/x64/d3d10core.dll d9vk-0.30/x64/d3d10_1.dll d9vk-0.30/x64/d3d11.dll d9vk-0.30/x64/d3d9.dll d9vk-0.30/x64/dxgi.dll returned status 2. Aborting.
446 [03:30:13] <kreyren> kreyren@dreamon:~$ tar -C /home/kreyren/test_tar -xvpf /home/kreyren/.cache/winetricks/rocketleague_steam/d9vk-0.30.tar.gz d9vk-0.30/x64/d3d10.dll d9vk-0.30/x64/d3d10core.dll d9vk-0.30/x64/d3d10_1.dll d9vk-0.30/x64/d3d11.dll d9vk-0.30/x64/d3d9.dll d9vk-0.30/x64/dxgi.dll
447 [03:30:17] <kreyren> d9vk-0.30/x64/d3d10.dll
448 [03:30:19] <kreyren> d9vk-0.30/x64/d3d10core.dll
449 [03:30:21] <kreyren> d9vk-0.30/x64/d3d10_1.dll
450 [03:30:23] <kreyren> d9vk-0.30/x64/d3d11.dll
451 [03:30:25] <kreyren> d9vk-0.30/x64/d3d9.dll
452 [03:30:27] <kreyren> d9vk-0.30/x64/dxgi.dll
453 [03:30:27] *** kreyren was kicked by debhelper (flood)
454 [03:30:37] *** Joins: kreyren (~kreyren@replaced-ip )
455 [03:30:41] <kreyren> sorryy
456 [03:30:42] <annadane> !paste
457 [03:30:42] <dpkg> Do not paste more than 2 lines to this channel. Instead, use for text: replaced-url
458 [03:30:46] <annadane> !lart kreyren
459 [03:30:46] * dpkg hurls dozens of incontinent, insomniac, hungry kittens with tiny little razor-sharp claws and a wide variety of contagious intestinal parasites at kreyren
460 [03:31:10] <kreyren> sorryyyy
461 [03:31:31] *** Quits: patterson (~patterson@replaced-ip ) ()
462 [03:31:44] *** Joins: _till_ (~till@replaced-ip )
463 [03:31:44] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
464 [03:31:44] *** Joins: _till_ (~till@replaced-ip )
465 [03:32:26] *** Quits: crn (~crn@replaced-ip ) (Ping timeout: 240 seconds)
466 [03:33:11] *** Joins: auk (auk@replaced-ip )
467 [03:33:21] *** Quits: crn_ (~crn@replaced-ip ) (Client Quit)
468 [03:34:09] *** Quits: whislock (~whislock@replaced-ip ) (Quit: WeeChat 2.6)
469 [03:34:09] *** Joins: crn (~crn@replaced-ip )
470 [03:34:19] *** Quits: tsrt^ (tsrt@replaced-ip ) ()
471 [03:35:17] *** Quits: Immanuel (~Manu@replaced-ip ) (Ping timeout: 240 seconds)
472 [03:35:23] *** Joins: nfip^ (nfip@replaced-ip )
473 [03:36:03] *** Quits: Ceber (~cerberus@replaced-ip ) (Ping timeout: 265 seconds)
474 [03:36:41] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 276 seconds)
475 [03:37:25] <m0rd3cai> hey guys wheres the lightdm conf file located so i can quit typing in my username everytime? ive changed it before but i can find the right keyword for google
476 [03:37:25] *** Joins: Immanuel (~Manu@replaced-ip )
477 [03:38:09] <m0rd3cai> nevermidn
478 [03:38:26] *** Joins: us3rknowmore (~Thunderbi@replaced-ip )
479 [03:38:48] <annadane> you did say never mind so i'll ignore your question, but 'man lightdm' and scroll down to "files"
480 [03:39:01] *** debhelper sets mode: +l 1542
481 [03:39:15] <m0rd3cai> haha finally found in /etc/lightdm/lightdm.conf
482 [03:39:30] <kreyren> figured it out i was quoting the expanded in wrapper which apparently made it to consider as one file separated by space.. which makes no sence come to think of it but it works
483 [03:39:32] <m0rd3cai> lol now to find the setting ti change lol ;-)
484 [03:39:33] *** Joins: sidmo (~ident@replaced-ip )
485 [03:39:56] <kreyren> whislock/senate: thanks for help
486 [03:40:12] *** Joins: tme520 (~tme520@replaced-ip )
487 [03:42:03] *** Quits: sidmo_ (~ident@replaced-ip ) (Ping timeout: 264 seconds)
488 [03:42:26] *** Quits: annadane (~annadane@replaced-ip ) (Remote host closed the connection)
489 [03:42:55] *** Joins: Ceber (~cerberus@replaced-ip )
490 [03:43:34] <sponix> m0rd3cai: what are you breaking now ?
491 [03:44:22] *** Quits: eb0t (~eblip@replaced-ip ) (Ping timeout: 252 seconds)
492 [03:48:17] *** Quits: button (~crayon@replaced-ip ) (Quit: Quit)
493 [03:48:27] *** Quits: zyun (~zyun@replaced-ip ) (Remote host closed the connection)
494 [03:48:51] *** Joins: crayon (~crayon@replaced-ip )
495 [03:49:00] *** Joins: gogeta (~gogeta@replaced-ip )
496 [03:49:02] *** Quits: longbow (~longbow@replaced-ip ) (Ping timeout: 276 seconds)
497 [03:49:21] *** Joins: yue-lan (~lanyue@replaced-ip )
498 [03:49:24] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Remote host closed the connection)
499 [03:49:30] *** Quits: gogeta (~gogeta@replaced-ip ) (Client Quit)
500 [03:49:45] *** Joins: zyun (~zyun@replaced-ip )
501 [03:51:19] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 252 seconds)
502 [03:51:57] *** Joins: whislock (~whislock@replaced-ip )
503 [03:54:03] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
504 [03:57:36] *** Quits: hobbanero (~hobbanero@replaced-ip ) (Quit: Leaving)
505 [03:57:43] *** Joins: hjarvard (~hjarvard@replaced-ip )
506 [03:58:12] <m0rd3cai> sponix: haha no its my laptop, its on and off alot and im tired of typing in my username, theres a conf file to set the username in and im searching for that one
507 [03:58:26] *** Quits: Plan_IX (~P9@replaced-ip ) (Ping timeout: 240 seconds)
508 [03:58:32] <m0rd3cai> done it before but I cant find the link in my bookmarks
509 [03:58:49] *** Joins: Plan_IX (~P9@replaced-ip )
510 [03:59:43] *** Joins: emOne (~emOne@replaced-ip )
511 [04:00:15] *** Joins: rustbuckett (~downtime@replaced-ip )
512 [04:00:42] <ahi2> m0rd3cai: greeter-show-manual-login=true and greeter-hide-users=false
513 [04:01:09] <ahi2> lightdm.conf
514 [04:01:44] *** Joins: lanyue_ (~lanyue@replaced-ip )
515 [04:03:19] <m0rd3cai> that goes in /etc/lightdm/lightdm-gtk-greeter.conf right?
516 [04:03:46] <ahi2> etc/lightdm/lightdm.conf on mine
517 [04:03:59] *** Quits: rople (~rople@replaced-ip ) (Ping timeout: 276 seconds)
518 [04:04:02] *** Quits: yue-lan (~lanyue@replaced-ip ) (Ping timeout: 240 seconds)
519 [04:04:03] *** Joins: lanyue__ (~lanyue@replaced-ip )
520 [04:04:05] <ahi2> i suppose there are diff ways
521 [04:04:38] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 276 seconds)
522 [04:05:39] *** Joins: rople (rople@replaced-ip )
523 [04:06:37] <m0rd3cai> dont want to fuck up my login. heres part of my conf file, the end of the general section. replaced-url
524 [04:07:14] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Ping timeout: 276 seconds)
525 [04:08:16] <ahi2> lightdm.conf?
526 [04:08:27] <m0rd3cai> correct
527 [04:08:34] <m0rd3cai> the link you gae
528 [04:08:37] <m0rd3cai> gave*
529 [04:09:08] <m0rd3cai> theres more to that conf, thats all that i posted. the rest i didnt touch
530 [04:09:16] <ahi2> i have mine after "[Seat:*]" in lightdm.conf
531 [04:10:01] <m0rd3cai> I see it. damn thought i had it
532 [04:10:04] *** Quits: Akuw (~ajsbox@replaced-ip ) (Remote host closed the connection)
533 [04:10:25] <ahi2> i had it somewher wlse before and it didnt work
534 [04:10:48] *** Quits: us3rknowmore (~Thunderbi@replaced-ip ) (Quit: us3rknowmore)
535 [04:11:05] *** Quits: jmcgnh (~jmcgnh@replaced-ip##) (Quit: ZNC 1.7.1 - ##replaced-url
536 [04:11:23] *** Joins: snaund (~saundkim@replaced-ip )
537 [04:11:26] <m0rd3cai> yea theyre already in the file, just need uncommenting them
538 [04:11:38] <m0rd3cai> and changing true or false
539 [04:12:48] <ahi2> right
540 [04:13:26] <m0rd3cai> brb, truth time lol
541 [04:13:30] *** Quits: m0rd3cai (~m0rd3cai@replaced-ip ) (Quit: leaving)
542 [04:13:38] *** Joins: us3rknowmore (~Thunderbi@replaced-ip )
543 [04:15:38] *** Quits: rople (rople@replaced-ip ) (Ping timeout: 240 seconds)
544 [04:15:55] *** Quits: Adbray (~Adbray@replaced-ip ) (Quit: Ah! By Brain!)
545 [04:17:56] *** Joins: rople (rople@replaced-ip )
546 [04:19:10] <sponix> m0you can set autologin within your DE settings (it will modify the needed config for you)
547 [04:19:41] <sponix> OH, tab complete fail because he already freaking quit !
548 [04:24:31] *** Joins: zyun (~zyun@replaced-ip )
549 [04:29:02] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 246 seconds)
550 [04:29:24] *** Joins: us4rknowmore (~Thunderbi@replaced-ip )
551 [04:30:56] *** Quits: us4rknowmore (~Thunderbi@replaced-ip ) (Client Quit)
552 [04:32:06] *** Quits: shibboleth (~shibbolet@replaced-ip ) (Quit: shibboleth)
553 [04:32:10] *** Joins: hervyqa (~hervyqa@replaced-ip )
554 [04:33:54] *** Parts: hervyqa (~hervyqa@replaced-ip ) ()
555 [04:34:13] *** Quits: crn (~crn@replaced-ip ) (Quit: Leaving)
556 [04:35:05] *** Parts: us3rknowmore (~Thunderbi@replaced-ip ) ()
557 [04:35:43] *** Quits: cp (~cp@replaced-ip ) (Ping timeout: 245 seconds)
558 [04:36:58] <hjarvard> hey guys I'm trying to build dunst package from deb-src using sbuild, and it fails with `make: dh: Command not found`, but I have debhelper installed inside chroot, what might be missing?
559 [04:37:55] *** Quits: snaund (~saundkim@replaced-ip ) (Quit: snaund)
560 [04:38:33] <sponix> hjarvard: what does this due ? And can't you just bring in a version from a repo ?
561 [04:38:41] <sponix> "what does this do?"
562 [04:38:49] <sponix> English is HARD
563 [04:39:01] *** debhelper sets mode: +l 1533
564 [04:41:04] *** Quits: schizo (~schizo@replaced-ip ) (Remote host closed the connection)
565 [04:41:08] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 245 seconds)
566 [04:41:22] *** Joins: yuitimothy (~yuitimoth@replaced-ip )
567 [04:42:02] <hjarvard> sponix, yeah, I have dunst installed from the repo, I just wanted to learn debian packaging and used dunst as an example, here is full output replaced-url
568 [04:42:31] *** Quits: JPT (~jpt@replaced-ip ) (Remote host closed the connection)
569 [04:42:40] *** Parts: cybercrypto (~morpheus@replaced-ip ) ("irssi v1.2.2 - running on FreeBSD amd64")
570 [04:43:44] <sponix> hjarvard: yeah, I got nothing for ya. Haven't learned about how to roll things up myself. Might be a future project/lesson for me
571 [04:44:03] *** Parts: yuitimothy (~yuitimoth@replaced-ip ) ("Comme ç'est mignon")
572 [04:44:05] <sponix> somiaj: is always lurking and might be able to lend a hand
573 [04:44:19] <hjarvard> k, thanks
574 [04:45:22] <sponix> dpkg: you got any wisdom on this ?
575 [04:45:22] <dpkg> I resemble that remark!
576 [04:45:38] <sponix> you would think a bot named dpkg might know something about packaging lol
577 [04:46:48] *** Joins: KaitoDaumoto (~Frat@replaced-ip )
578 [04:46:51] *** Joins: JPT (~jpt@replaced-ip )
579 [04:47:31] *** Joins: lanyue_ (~lanyue@replaced-ip )
580 [04:47:35] <hjarvard> we need an apt bot for this
581 [04:49:15] <ChmEarl> hjarvard, do you have debian/rules under your build tree?
582 [04:50:02] *** Quits: lanyue__ (~lanyue@replaced-ip ) (Ping timeout: 246 seconds)
583 [04:50:39] *** Quits: ahi2 (~ahi2@replaced-ip ) (Quit: Leaving)
584 [04:50:46] <hjarvard> ChmEarl, yes, here is the tree replaced-url
585 [04:51:08] *** Quits: Dibejzer (~Bas@replaced-ip ) (Quit: Leaving)
586 [04:51:44] <hjarvard> basically, I got dunst using `apt-get source dunst`
587 [04:53:42] *** Joins: emOne (~emOne@replaced-ip )
588 [04:53:42] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
589 [04:53:42] *** Joins: emOne (~emOne@replaced-ip )
590 [04:54:20] <ChmEarl> hjarvard, dh_listpackages
591 [04:54:51] <hjarvard> ChmEarl, I need to run this inside chroot?
592 [04:55:17] <ChmEarl> hjarvard, from top of buildroot
593 [04:57:05] <hjarvard> ah, I thought I only needed sbuild on the host and everything else will be inside chroot, I installed debhelper on the host, dh_listpackages returns `dunst`
594 [04:57:28] *** Quits: tme520 (~tme520@replaced-ip ) (Remote host closed the connection)
595 [04:57:44] *** Joins: jinmiaoluo1 (~Thunderbi@replaced-ip )
596 [04:57:49] *** Joins: tme520 (~tme520@replaced-ip )
597 [04:58:35] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 276 seconds)
598 [04:58:40] *** Joins: diniwed (~gavron@replaced-ip )
599 [04:59:14] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 276 seconds)
600 [04:59:31] <hjarvard> here is output from sbuild now replaced-url
601 [05:01:49] *** Quits: artlogic_ (~artlogic@replaced-ip##) (Quit: ZNC 1.7.5 - ##replaced-url
602 [05:02:13] *** Joins: artlogic (~artlogic@replaced-ip )
603 [05:02:17] <hjarvard> ChmEarl, in order to build a package, I must install all -dev dependencies on the host system?
604 [05:03:14] *** Quits: nfip^ (nfip@replaced-ip ) ()
605 [05:03:20] *** Joins: rustbuckett (~downtime@replaced-ip )
606 [05:05:14] *** Joins: zyun (~zyun@replaced-ip )
607 [05:05:47] *** Quits: debsan (~debsan@replaced-ip ) (Ping timeout: 246 seconds)
608 [05:06:54] *** Joins: quarters (~quarters@replaced-ip )
609 [05:08:43] <quarters> hello. I seem to be having difficulty installing openjdk8 on debian buster and was wondering if anyone can help
610 [05:09:12] *** Joins: uNmowed (~Kaede@replaced-ip )
611 [05:10:43] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
612 [05:10:53] <hjarvard> quarters, hi, what is your issue?
613 [05:12:13] <sponix> hjarvard: likely that 8 is depreciated and not in any of the repos for security reasons ?
614 [05:12:18] <sponix> that is probably the issue
615 [05:12:26] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Ping timeout: 240 seconds)
616 [05:12:29] <sponix> And he needs it for Minecraft
617 [05:12:51] <quarters> hjarvard, I get this issue: "E: Package 'openjdk-8-jdk' has no installation candidate"
618 [05:12:55] *** Joins: schizo (~schizo@replaced-ip )
619 [05:13:35] <hjarvard> sponix, you're an oracle lol
620 [05:14:03] <hjarvard> quarters, see above
621 [05:14:44] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
622 [05:14:53] <sponix> quarters: ditch Debian, Install MX Linux -- Tell it you want Java 8 from the "MX Installer" it provides ... It will do that, and you can play your Minecraft... Come back later and thank me
623 [05:15:30] <sponix> OR, go download that old Java 8 from the MX Linux repos, and dpkg it in :)
624 [05:15:32] <quarters> and then I tried to follow this thread: replaced-url
625 [05:15:50] <quarters> do people on linux play minecraft?
626 [05:16:02] <quarters> I thought that was a windows thing
627 [05:16:45] *** Quits: spacebison (~bison@replaced-ip ) (Ping timeout: 252 seconds)
628 [05:17:27] <hjarvard> quarters, what do you need jdk8 for? you might try amazon corretto instead of openjdk
629 [05:17:41] <sponix> quarters: looks too complicated for me, and probably you also. replaced-url
630 [05:17:51] <quarters> to run Cassandra
631 [05:17:54] *** Joins: cp (~cp@replaced-ip )
632 [05:18:13] <quarters> sponix, yeah. I'm finding myself going down dependency hell
633 [05:18:38] <quarters> and found a thread that kind of forecasts what I would go through here: replaced-url
634 [05:18:46] <sponix> Client: HexChat 2.14.2 • OS: MX ""patito feo"" 19 • CPU: Genuine Intel(R) CPU @ 2.90GHz (1.41GHz) • Memory: Physical: 30.7 GiB Total (9.2 GiB Free) Swap: 3.9 GiB Total (3.8 GiB Free) • Storage: 17.6 TB / 23.0 TB (5.4 TB Free) • VGA: NVIDIA Corporation GM206 [GeForce GTX 960] @ Intel Corporation Xeon E7 v3/Xeon E5 v3/Core i7 DMI2 • Uptime: 3w 0d 11h 20m 0s
635 [05:19:00] <quarters> so I came here for a more straightforward solution
636 [05:19:05] <sponix> quarters: I have not regretting my change to MX. I feel you will not either
637 [05:19:33] <sponix> be back in 20 minutes
638 [05:19:41] <quarters> the thing is, I'm trying to install this on a vm provided by google which is locked to debian
639 [05:20:35] <quarters> this.is.brutal :)
640 [05:21:06] <hjarvard> quarters, maybe corretto and cassandra will go along, I think 8 version is still supported replaced-url
641 [05:21:43] *** Joins: swift110 (~swift110@replaced-ip )
642 [05:22:02] <hjarvard> latest version released 5 days ago
643 [05:22:13] *** Quits: swift110 (~swift110@replaced-ip ) (Changing host)
644 [05:22:13] *** Joins: swift110 (~swift110@replaced-ip )
645 [05:22:43] <quarters> hjarvard, thanks! I'll try that now
646 [05:22:56] <quarters> yay
647 [05:23:11] <quarters> cassandra's still b0rked
648 [05:23:13] *** Quits: hilt (~hilt@replaced-ip ) (Quit: hilt)
649 [05:23:45] <hjarvard> what's the error message?
650 [05:23:55] <quarters> Connection error: ('Unable to connect to any servers', {'127.0.0.1': error(111, "Tried connecting to [('127.0.0.1',
651 [05:23:55] <quarters> 9042)]. Last error: Connection refused")})
652 [05:24:33] <swift110> hey
653 [05:24:35] <hjarvard> does the service running?
654 [05:24:52] <quarters> yes it is
655 [05:25:59] <quarters> I've been going down this thread for this: replaced-url
656 [05:26:15] <quarters> which is how I found the java 8 related solution
657 [05:26:43] <sponix> quarters: 1) what is cassandra ? and 2) are you sure you have it configured for localhost at port 9042 ?
658 [05:27:42] *** Quits: ChmEarl (~chmearl@replaced-ip ) (Quit: Leaving)
659 [05:28:07] *** Joins: mandrak (~Mandrak@replaced-ip )
660 [05:28:11] <quarters> sponix, 1) it's a nosql database 2) the yaml file seems to suggest so, plus leaving the config as is works out of the box locally for me
661 [05:28:50] <quarters> wtf
662 [05:28:53] <quarters> it's working now
663 [05:28:53] <hjarvard> quarters, so cassandra is working locally?
664 [05:29:05] <quarters> I hate magic
665 [05:29:13] <quarters> I wish I knew what happened
666 [05:29:28] <quarters> w/e
667 [05:29:38] <quarters> thanks, hjarvard!
668 [05:29:46] <hjarvard> maybe it just needs time to start
669 [05:29:50] <hjarvard> java duh
670 [05:29:53] <hjarvard> quarters, np
671 [05:30:09] *** Joins: spacebison (~bison@replaced-ip )
672 [05:30:55] <sponix> quarters: so you are all good ?
673 [05:31:07] <quarters> sponix, yep :D
674 [05:31:24] <sponix> Okay... I had a java 8 method for ya ready. But if it is going, whatever :)
675 [05:31:50] <hjarvard> just don't forget to update jdk and cassandra, or at least don't expose it over the internet :)
676 [05:31:54] *** Joins: _till_ (~till@replaced-ip )
677 [05:31:54] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
678 [05:31:54] *** Joins: _till_ (~till@replaced-ip )
679 [05:32:25] <sponix> hjarvard: well java 8 is past EOL, so it isn't gonna get any more security updates, that is why it has been pulled most everywhere
680 [05:32:33] <quarters> hjarvard, don't expose the service with cassandra over the net?
681 [05:32:45] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Read error: Connection reset by peer)
682 [05:32:51] <quarters> that was the reason I was trying to get java 8
683 [05:33:16] <sponix> quarters: why aren't you looking at MongoDB or something ?
684 [05:33:53] *** Quits: we6jbo (~we6jbo@replaced-ip ) (Remote host closed the connection)
685 [05:33:54] <quarters> sponix, for funsies
686 [05:33:55] <hjarvard> sponix, I googled and the next version of cassandra will support jdk 11 so it should be all good
687 [05:33:57] <sponix> Or a google search of "current nosql databases on Linux Debian 10"
688 [05:34:11] <quarters> hjarvard, that's very good to know
689 [05:34:12] <sponix> hjarvard: nifty
690 [05:34:33] <sponix> pretty big support gap going from 8 to 11 lol
691 [05:34:43] <sponix> someone took a LONG vacation
692 [05:34:50] <quarters> especially if java 8's no longer getting security updates, you'd think that cassandra would support that asap
693 [05:34:53] <quarters> seriously
694 [05:34:54] <hjarvard> quarters, yeah, you don't want to expose your services to all the internet, it's better setup firewall to allow access from certain ip addresses
695 [05:35:06] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
696 [05:35:44] <sponix> quarters: creator of cassandra was most likely using MongoDB in the mean time ;)
697 [05:35:50] <quarters> lol
698 [05:36:02] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
699 [05:36:04] <quarters> hjarvard, thanks for the tip. I'll do that
700 [05:36:09] <hjarvard> sponix, I remember the time when java 8 was the new shiny thing, how the time flies :)
701 [05:36:49] <sponix> hjarvard: remember when java wasn't bloated, and it was actually useful ? ... Um, yeah ... Neither do I -- lol
702 [05:37:10] <hjarvard> quarters, oh, and if you use cloud provider, then do set up firewall rules on the web console, not the vm itself, otherwise you can lose access to your server
703 [05:37:27] <sponix> Only thing Java has been good for, is to complete with Adobe Flash for having the most security issues
704 [05:37:48] <quarters> hjarvard, ah yeah. I'll do it there.
705 [05:39:07] *** Joins: lanyue__ (~lanyue@replaced-ip )
706 [05:39:59] *** Joins: led_belly (led_belly@replaced-ip )
707 [05:40:06] <hjarvard> sponix, yes, but there was no choice if one wants to develop apps on linux using statically typed language which is not terrifying
708 [05:40:22] <hjarvard> now that we have .net core things are changin
709 [05:41:37] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Ping timeout: 240 seconds)
710 [05:42:41] *** Quits: ob-sed (~obesd@replaced-ip ) (Read error: Connection reset by peer)
711 [05:43:01] *** Joins: well_laid_lawn (~Jean-luc@replaced-ip )
712 [05:43:05] *** Joins: lanyue_ (~lanyue@replaced-ip )
713 [05:43:13] *** Quits: lanyue__ (~lanyue@replaced-ip ) (Read error: Connection reset by peer)
714 [05:44:19] *** Quits: mandrak (~Mandrak@replaced-ip ) (Quit: Leaving)
715 [05:45:09] *** Joins: jmcgnh (~jmcgnh@replaced-ip )
716 [05:45:19] *** Quits: saptech (~saptech@replaced-ip ) (Quit: Leaving)
717 [05:45:32] *** Joins: alexandros_c (~alexandro@replaced-ip )
718 [05:48:05] *** Joins: emOne (~emOne@replaced-ip )
719 [05:48:06] *** Joins: oxek (qjvl@replaced-ip )
720 [05:48:29] <oxek> does debian provide any webproxy for reading the debian wiki? Or is there a copy of the debian wiki somewhere online?
721 [05:49:19] <sponix> oxek: wiki.debian.org might work
722 [05:50:03] *** Joins: zyun (~zyun@replaced-ip )
723 [05:50:18] <sponix> hjarvard: not sure MS .net is the answer to Linux problems. Specifically from a security stand point
724 [05:50:32] <sponix> quarters: you are on version 3.11.x of this Cassandra ?
725 [05:50:42] <sponix> quarters: with Debian 10 buster ?
726 [05:50:54] <quarters> no. 3.9
727 [05:51:30] <sponix> quarters: ..... why 3.9 ? site says 3.11.5 is the current release actually done in 2019
728 [05:52:08] <hjarvard> sponix, well, it might not be the answer but it's an option, and what's wrong with security?
729 [05:52:17] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 240 seconds)
730 [05:52:17] <sponix> replaced-url
731 [05:53:14] <sponix> hjarvard: You think Microsoft has a good security record ?
732 [05:54:29] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
733 [05:54:56] <quarters> sponix, not sure. that's the version that I got from apt. I can try to run apt update/upgrade and try again
734 [05:55:13] <sponix> You put a Microsoft Rig in the DMZ, and my rig is always in the DMZ. In 6 months we will talk about who got owned, and who didn't :)
735 [05:55:33] <sponix> quarters: page there shows how to add their repo to Debian sources to pull something current from them
736 [05:55:44] <quarters> oh yeah. that's what I used
737 [05:56:13] <hjarvard> sponix, I can't say for all Microsoft, but .net side of things was quite good actually, I am/was .net developer and I can't remember security screw ups
738 [05:56:16] <quarters> oh. not the official docs, apparently
739 [05:56:19] <quarters> I see those now
740 [05:56:21] <quarters> replaced-url
741 [05:56:38] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
742 [05:56:42] <sponix> quarters: hmm, not sure why it would do something that old then. try "apt-cache search cassandra" and see if there is more than one branch. You might have to do something like sudo apt install casandra-311 or such :)
743 [05:56:45] <hjarvard> sponix, nah, I'm good :)
744 [05:56:46] <quarters> not sure where I got my instructions from. maybe stackoverflow?
745 [05:57:02] <quarters> definitely
746 [05:57:53] <sponix> hjarvard: My Best friend programs MS Stuff for a Living, most of it .Net also... None of it likely on the Live internet for security testing :)
747 [05:59:34] <hjarvard> sponix, yeah, it's no wonder when all tasks must be done _yesterday_ :)
748 [05:59:59] <hjarvard> ... just a little hardcode here and a little hole there
749 [06:00:02] *** Quits: Lord_of_Life (~Lord@replaced-ip ) (Ping timeout: 252 seconds)
750 [06:00:27] <sponix> hjarvard: I can't deny that .Net dev can get it done "faster" lol
751 [06:00:51] *** Joins: Lord_of_Life (~Lord@replaced-ip )
752 [06:01:35] <hjarvard> sponix, faster than java? totally, I tried it several times and just drowned in options
753 [06:02:02] *** Joins: lanyue__ (~lanyue@replaced-ip )
754 [06:02:21] <sponix> hjarvard: he does internal custom accounting solutions with .Net and a lot of linking other existing systems together with it also
755 [06:03:48] <sponix> hjarvard: and for what it is worth, his code is likely still fairly secure and efficient because he is a freaking Genius and a hell of a problem solver. A lot of problems are more from laziness or ignorance than the language/libs itself :)
756 [06:04:02] <sponix> hjarvard: some just enable it easier than others... like "php" for example :)
757 [06:04:48] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Read error: Connection reset by peer)
758 [06:06:56] <hjarvard> sponix, well said :) I agree
759 [06:07:18] <sponix> hjarvard: know how I keep my code secure ?
760 [06:07:39] <hjarvard> sponix, by not writing it? lol
761 [06:07:42] <sponix> YEP
762 [06:07:46] <sponix> Bingo
763 [06:07:47] <hjarvard> :D
764 [06:08:11] *** Joins: lanyue_ (~lanyue@replaced-ip )
765 [06:08:14] <sponix> Code that goes on my rig -- reviewed by the Debian team.. They do a much better job than I can
766 [06:08:48] <hjarvard> do you think they can review every single line of code?
767 [06:08:49] *** Quits: lanyue__ (~lanyue@replaced-ip ) (Read error: Connection reset by peer)
768 [06:09:17] *** Quits: valdyn (~valdyn@replaced-ip ) (Ping timeout: 268 seconds)
769 [06:09:31] *** Joins: _till_ (~till@replaced-ip )
770 [06:09:31] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
771 [06:09:32] *** Joins: _till_ (~till@replaced-ip )
772 [06:09:39] *** Joins: yue-lan (~lanyue@replaced-ip )
773 [06:09:46] <hjarvard> my guess is that quality varies from package to package
774 [06:10:18] *** Quits: itamarst (uid165457@replaced-ip ) (Quit: Connection closed for inactivity)
775 [06:10:39] *** Quits: Velgor (~Velgor@replaced-ip ) (Ping timeout: 252 seconds)
776 [06:10:57] <hjarvard> I had least problems with debian than with any other distro though
777 [06:11:04] <sponix> hjarvard: sure, and those program coders find and do what they can, and it gets rolled back in, and the process continues... And _all_ of those coders still know more about it than me, and likely are pretty good with their own specific programs and tid bits
778 [06:11:38] *** Joins: GWM (~GWM@replaced-ip )
779 [06:12:12] *** Joins: Jade_NL (~JadeNL@replaced-ip )
780 [06:12:17] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Ping timeout: 240 seconds)
781 [06:12:17] <sponix> no such thing as perfect code when it is written by humans. BUT, I'm just looking to run what does the best for my use
782 [06:12:33] <sponix> That ends up being Debian mot of the time
783 [06:12:45] <hjarvard> sponix, sure, maintainers are doing a great job, I appreciate it, too
784 [06:12:48] <sponix> Or at least something pretty freaking close to it
785 [06:13:02] <sponix> hjarvard: you given Arch a try ?
786 [06:13:36] *** Quits: fmaurer_ (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
787 [06:13:43] <hjarvard> sponix, yes, I tried all major distros, including gentoo :)
788 [06:14:17] *** Joins: fmaurer (~quassel@replaced-ip )
789 [06:15:17] *** Joins: brettgilio (~brettgili@replaced-ip )
790 [06:16:02] *** Quits: bbt (~sam@replaced-ip ) (Ping timeout: 240 seconds)
791 [06:16:13] <sponix> hjarvard: if I was just doing a specific task per VM or so... Like just Bind DNS in one, or an nginx web server in another -- Arch would likely be my other choice, if it wasn't Debian
792 [06:16:17] *** Joins: Reptili4n (~chatzilla@replaced-ip )
793 [06:16:37] <sponix> hjarvard: Its base is comparably light and fast, and its packages are wicked current
794 [06:17:03] *** Quits: donofrio_ (~donofrio@replaced-ip ) (Remote host closed the connection)
795 [06:17:42] *** Joins: Velgor (~Velgor@replaced-ip )
796 [06:17:54] <hjarvard> sponix, yep, it's a good choice for home usage, but for some serious production servers I wouldn't bet on rolling distro
797 [06:18:41] <hjarvard> sponix, on the second thought, it should be fine in a vm or a container
798 [06:18:43] <sponix> hjarvard: I have that feeling also. But I know some that do just that with Arch, and have had good results
799 [06:19:44] <sponix> hjarvard: My Arch instances are in VM's but I know folks with it as their daily driver that have been rocking it for years with nothing but good things to say
800 [06:20:04] <hjarvard> sponix, if you have backups and can respin new instance quickly then sure, why not :)
801 [06:20:46] <sponix> hjarvard: Yeah... I have a few stages of Arch, that I just clone off when I want to play with it more
802 [06:20:53] <sponix> But I do that with about anything
803 [06:21:08] *** Quits: xinming_ (~xinming@replaced-ip ) (Ping timeout: 276 seconds)
804 [06:21:54] <hjarvard> sponix, what software do you use for that?
805 [06:21:57] <sponix> no need to run through an hour install when I can clone it off in like 5 minutes
806 [06:21:59] *** Joins: Dibejzer (~Bas@replaced-ip )
807 [06:22:09] *** Quits: Dibejzer (~Bas@replaced-ip ) (Remote host closed the connection)
808 [06:22:22] <sponix> hjarvard: right now VMware Workstation. Prior was just using vbox
809 [06:22:30] *** Quits: aZz7eCh (~aZz7eCh@replaced-ip ) (Remote host closed the connection)
810 [06:23:04] <hjarvard> sponix, I see, I always wanted to play with kvm and snapshots
811 [06:23:34] *** Joins: jm_ (flier@replaced-ip )
812 [06:25:01] <sponix> hjarvard: I did some kvm/qemu/virtmanager for a bit also
813 [06:25:01] *** Joins: Gerowen (~Gerowen@replaced-ip )
814 [06:25:10] *** Joins: xinming_ (~xinming@replaced-ip )
815 [06:25:37] <sponix> it requires a bit more "effort / energy" at times then I have
816 [06:26:25] <hjarvard> sponix, hm, I guess so, like most of the OSS :)
817 [06:27:06] <sponix> for me, vm's are for tinkering/breaking things within the vm itself -- not so much doing that with the vm software itself lol
818 [06:27:50] <sponix> I did manager to somehow crash a vm hosted with VMware the other day with regular usage though - 1st time I've had it fail me like that. Hopefully the last
819 [06:28:29] *** Joins: Caplain (~shayne@replaced-ip )
820 [06:28:34] <sponix> hjarvard: kvm and all that gets me chasing version numbers, and doing crazy things with it, normally leading to stability issues and other bad behaviors
821 [06:29:16] <sponix> hjarvard: VMware, and VirtualBox being "less capable" of fun/crazy things is better for my productivity in helping users (and hosting them also)
822 [06:29:35] *** Joins: FierceDeityLink (~shayne@replaced-ip )
823 [06:29:49] *** Joins: BoyDoy (~BoyDoy@replaced-ip )
824 [06:30:48] <sponix> well.. way past my bedtime. I had better crash out
825 [06:31:05] <Reptili4n> later dude
826 [06:32:03] *** Quits: Gerowen (~Gerowen@replaced-ip ) (Remote host closed the connection)
827 [06:33:26] *** Quits: Caplain (~shayne@replaced-ip ) (Ping timeout: 265 seconds)
828 [06:34:41] *** Joins: r1nt3c_ (~inerin@replaced-ip )
829 [06:35:17] <sponix> 3 Weeks since ditching Mint and going MX ... Outside of going Firefox-ESR instead of the regular ff branch. 0 issues
830 [06:35:51] *** Joins: towo^work (~towo@replaced-ip )
831 [06:36:49] *** Quits: jinmiaoluo1 (~Thunderbi@replaced-ip ) (Ping timeout: 265 seconds)
832 [06:36:59] <Reptili4n> thats good, i am about to try bohdi linux
833 [06:37:50] <hjarvard> sponix, well, that's good to know, I'll take that into account, good night
834 [06:37:55] <sponix> hmm, I probably should shut the rig off to hookup this 12TB drive, and remove the 5 x 1TB set ... I do have "hotplug" enabled for Sata in the BIOS though, so what the hell -- maybe I'll give it a shot :P
835 [06:39:22] <sponix> whats the worst that could happen ? lol
836 [06:39:29] <Reptili4n> should be fine
837 [06:39:35] <Reptili4n> <3
838 [06:40:41] <sponix> few months back when building my Aunt a rig, I needed a GPU, so I unhooked its PCIE Power and pulled it out of my rig -- Linux didn't fall on its nose then, surely a few Sata devices going in and out is legit
839 [06:41:33] <sponix> for some reason I feel _adding_ the 2nd GPU back in that way in reverse wouldn't turn out so well though
840 [06:42:10] *** Joins: emOne (~emOne@replaced-ip )
841 [06:42:22] <Reptili4n> lolo last night i accidentally cleaned my 8 tb hdd instead of my 8gb usb using cmd
842 [06:42:30] <Reptili4n> so dont feel bad
843 [06:42:50] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 240 seconds)
844 [06:43:08] <sponix> Reptili4n: Ouch
845 [06:44:01] *** Joins: lanyue_ (~lanyue@replaced-ip )
846 [06:44:08] <Reptili4n> i think i am going to be able to recover it
847 [06:44:16] *** Joins: Newami (~Newami@replaced-ip )
848 [06:44:19] <Reptili4n> but lesson learned
849 [06:44:30] <Reptili4n> to pay attention
850 [06:44:34] *** Quits: yue-lan (~lanyue@replaced-ip ) (Read error: Connection reset by peer)
851 [06:44:39] <sponix> Reptili4n: if you haven't written to it since, and read up on testdisk - your odds are fairly decent
852 [06:44:52] *** Quits: Newami (~Newami@replaced-ip ) (Client Quit)
853 [06:45:11] *** Joins: ensamvarg (~ensamvarg@replaced-ip )
854 [06:45:19] <sponix> Reptili4n: just need to boot off live media, install testdisk in the live, open ff to read on how to use it, and go to town :)
855 [06:45:47] <Reptili4n> thanks buddy i will try tat
856 [06:45:53] <Reptili4n> that^
857 [06:46:16] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 240 seconds)
858 [06:46:22] <sponix> Reptili4n: I think for that reason I'm gonna ZFS my new drive also. you can do things like cat /dev/urandom > /dev/sdj to the drive, and it will just ignore you :)
859 [06:47:11] <Reptili4n> nice good thinkin
860 [06:47:46] <sponix> Okay, I'm really gonna crash this time
861 [06:47:50] <sponix> good chat
862 [06:48:32] <Reptili4n> taker easy thanks for the tips
863 [06:50:05] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 246 seconds)
864 [06:50:10] *** Quits: arj15 (~arj15@replaced-ip ) (Read error: Connection reset by peer)
865 [06:50:18] *** Quits: galeido (~galeido@replaced-ip ) (Ping timeout: 245 seconds)
866 [06:50:26] *** Joins: arj15 (~arj15@replaced-ip )
867 [06:50:34] *** Quits: arj15 (~arj15@replaced-ip ) (Remote host closed the connection)
868 [06:53:14] *** Quits: quarters (~quarters@replaced-ip ) (Ping timeout: 240 seconds)
869 [06:54:43] *** Quits: brettgilio (~brettgili@replaced-ip ) (Ping timeout: 250 seconds)
870 [06:57:54] *** Joins: quarters (~quarters@replaced-ip )
871 [06:59:14] *** Quits: r1nt3c_ (~inerin@replaced-ip ) (Ping timeout: 240 seconds)
872 [07:00:08] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 276 seconds)
873 [07:00:34] *** Quits: vivid (~ViViD@replaced-ip ) (Quit: Leaving)
874 [07:01:19] *** Joins: r1nt3c (~inerin@replaced-ip )
875 [07:01:36] *** Joins: airstorm (~belovent@replaced-ip )
876 [07:03:17] *** Quits: bliv (~bliv@replaced-ip ) (Ping timeout: 240 seconds)
877 [07:03:27] *** Quits: kobain (~kobain@replaced-ip ) (Ping timeout: 252 seconds)
878 [07:03:51] *** Joins: bbt (~sam@replaced-ip )
879 [07:04:33] *** Quits: quarters (~quarters@replaced-ip ) (Ping timeout: 252 seconds)
880 [07:05:56] *** Joins: seengr (~seengr@replaced-ip )
881 [07:06:00] <seengr> ssa audio mp3 file:replaced-url
882 [07:06:00] <seengr> album:replaced-url
883 [07:06:01] <seengr> file:replaced-url
884 [07:06:01] <seengr> file:replaced-url
885 [07:06:01] *** Quits: seengr (~seengr@replaced-ip ) (Killed (Sigyn (Spam is off topic on freenode.)))
886 [07:07:23] *** Joins: rustbuckett (~downtime@replaced-ip )
887 [07:07:43] *** Joins: himcesjf_ (~cesjf@replaced-ip )
888 [07:08:15] *** Joins: quarters (~quarters@replaced-ip )
889 [07:08:35] *** Quits: him-cesjf (~cesjf@replaced-ip ) (Ping timeout: 276 seconds)
890 [07:08:35] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 276 seconds)
891 [07:10:05] *** Joins: ctfi (~ctfi@replaced-ip )
892 [07:10:49] *** Quits: quarters (~quarters@replaced-ip ) (Read error: Connection reset by peer)
893 [07:10:57] *** Joins: P1ersson (~P1ersson@replaced-ip )
894 [07:11:20] *** Joins: quarters (~quarters@replaced-ip )
895 [07:12:25] *** Quits: quarters (~quarters@replaced-ip ) (Remote host closed the connection)
896 [07:14:07] *** Quits: mikas (mikas@replaced-ip ) (Remote host closed the connection)
897 [07:15:44] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 276 seconds)
898 [07:17:13] *** Joins: liron_ (~liron@replaced-ip )
899 [07:18:29] *** Quits: CrystalMath (~coderain@replaced-ip##) (Quit: Support Richard Stallman | ##replaced-url
900 [07:19:01] *** Quits: heidie-fr (~beaver@replaced-ip ) (Quit: Reconnecting)
901 [07:19:09] *** Joins: diogenes_ (~diogenes_@replaced-ip )
902 [07:19:35] *** Joins: heidie-fr (~beaver@replaced-ip )
903 [07:20:02] *** Quits: liron__ (~liron@replaced-ip ) (Ping timeout: 240 seconds)
904 [07:20:25] *** Joins: rainmanjam (~rainmanja@replaced-ip )
905 [07:21:17] *** Quits: cp (~cp@replaced-ip ) (Ping timeout: 265 seconds)
906 [07:21:43] *** Quits: ctfi (~ctfi@replaced-ip ) (Remote host closed the connection)
907 [07:21:56] *** Quits: tyranny12 (~blarg@replaced-ip ) (Ping timeout: 240 seconds)
908 [07:22:01] *** Quits: jmcgnh (~jmcgnh@replaced-ip ) (Ping timeout: 250 seconds)
909 [07:22:25] *** Joins: dafal (~thalo@replaced-ip )
910 [07:23:24] *** Joins: _till_ (~till@replaced-ip )
911 [07:26:37] *** Joins: tyranny12 (~blarg@replaced-ip )
912 [07:26:46] *** Quits: tyranny12 (~blarg@replaced-ip ) (Changing host)
913 [07:26:46] *** Joins: tyranny12 (~blarg@replaced-ip )
914 [07:27:30] *** Quits: auk (auk@replaced-ip ) (Quit: Leaving)
915 [07:28:32] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 265 seconds)
916 [07:28:54] *** Joins: lanyue__ (~lanyue@replaced-ip )
917 [07:29:30] *** Joins: jmcgnh (~jmcgnh@replaced-ip )
918 [07:29:36] *** Quits: lanyue_ (~lanyue@replaced-ip ) (Remote host closed the connection)
919 [07:30:05] *** Joins: stephentt (~stephentt@replaced-ip )
920 [07:30:57] *** Quits: tme520 (~tme520@replaced-ip ) (Ping timeout: 252 seconds)
921 [07:31:18] *** Joins: fflori (~fflori@replaced-ip )
922 [07:31:49] *** Joins: cp (~cp@replaced-ip )
923 [07:32:52] *** Joins: scrappy_coco (~sc_______@replaced-ip )
924 [07:33:08] *** Quits: lanyue__ (~lanyue@replaced-ip ) (Ping timeout: 246 seconds)
925 [07:33:56] *** Joins: brettgilio (~brettgili@replaced-ip )
926 [07:34:35] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 276 seconds)
927 [07:38:36] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
928 [07:38:47] *** Joins: emOne (~emOne@replaced-ip )
929 [07:39:02] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
930 [07:39:41] *** Joins: chomwitt (~chomwitt@replaced-ip )
931 [07:40:07] *** Joins: kdc (~kdc@replaced-ip )
932 [07:41:01] *** Quits: scrappy_coco (~sc_______@replaced-ip ) (Quit: Leaving)
933 [07:41:59] *** Joins: strongestAvenger (~jeroen@replaced-ip )
934 [07:42:53] *** Quits: cp (~cp@replaced-ip ) (Quit: Disappeared in a puff of smoke)
935 [07:43:41] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 276 seconds)
936 [07:44:58] *** Quits: Tolerance (~Tolerant@replaced-ip ) (Quit: Leaving)
937 [07:46:14] *** Joins: vlad-k (~Vladislav@replaced-ip )
938 [07:46:39] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: ircarcs)
939 [07:48:24] *** Quits: heidie-fr (~beaver@replaced-ip ) (Quit: leaving)
940 [07:48:24] *** Joins: ich (~ich@replaced-ip )
941 [07:48:50] *** Quits: Immanuel (~Manu@replaced-ip ) (Ping timeout: 240 seconds)
942 [07:49:40] *** Joins: cp- (~cp-@replaced-ip )
943 [07:49:45] *** Joins: Immanuel (~Manu@replaced-ip )
944 [07:50:51] *** Joins: ob-sed (~obesd@replaced-ip )
945 [07:51:38] *** Quits: thelastjedi (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
946 [07:51:44] *** Joins: heidie-fr (~beaver@replaced-ip )
947 [07:51:56] *** Quits: heidie-fr (~beaver@replaced-ip ) (Client Quit)
948 [07:52:42] *** Joins: isnice (~isnice@replaced-ip )
949 [07:52:48] *** Joins: heidie-fr (~beaver@replaced-ip )
950 [07:54:16] *** Quits: strongestAvenger (~jeroen@replaced-ip ) (Quit: Konversation terminated!)
951 [07:54:53] *** Quits: Neoon (~Neoon@replaced-ip ) (Ping timeout: 245 seconds)
952 [07:55:00] *** Joins: Neoon (~Neoon@replaced-ip )
953 [07:55:30] *** Joins: grobi (~Thunderbi@replaced-ip )
954 [07:55:30] *** Joins: longbow (~longbow@replaced-ip )
955 [07:55:35] *** Joins: thelastjedi_ (~quassel@replaced-ip )
956 [07:55:36] *** Quits: kalamaki (~kalamaki@replaced-ip ) (Ping timeout: 240 seconds)
957 [07:56:10] *** Joins: Poffer (~Poffer@replaced-ip )
958 [07:56:28] *** Quits: isnice (~isnice@replaced-ip ) (Client Quit)
959 [07:57:34] *** Joins: BlueByte (~walther@replaced-ip )
960 [07:58:11] *** Joins: pclov3r (~pclover@replaced-ip )
961 [08:01:08] *** Quits: pclover (~pclover@replaced-ip ) (Ping timeout: 245 seconds)
962 [08:01:45] *** Quits: behanw (uid110099@replaced-ip ) (Quit: Connection closed for inactivity)
963 [08:02:37] *** Quits: GDiaX (~cupoftea@replaced-ip ) (Ping timeout: 240 seconds)
964 [08:02:39] *** Joins: FightingFalcon (~ff@replaced-ip )
965 [08:03:27] *** Joins: _till_ (~till@replaced-ip )
966 [08:03:27] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
967 [08:03:27] *** Joins: _till_ (~till@replaced-ip )
968 [08:04:05] *** Joins: decryp70 (~dcryp7@replaced-ip )
969 [08:04:49] <DJDan> in debian buster, what do i need to use in order to setup the a, mx, ns and other records for my domain?
970 [08:05:53] *** Joins: LionOpeter (~liron@replaced-ip )
971 [08:08:16] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
972 [08:08:50] *** Quits: liron_ (~liron@replaced-ip ) (Ping timeout: 240 seconds)
973 [08:09:05] <jm_> DJDan: a dns server
974 [08:09:32] *** Quits: pclov3r (~pclover@replaced-ip ) (Ping timeout: 246 seconds)
975 [08:09:53] *** Quits: KaitoDaumoto (~Frat@replaced-ip ) (Ping timeout: 246 seconds)
976 [08:09:57] <DJDan> yeah how do i do it?
977 [08:10:20] *** Joins: KaitoDaumoto (~Frat@replaced-ip )
978 [08:10:53] <DJDan> jm_: i got a VPS the other day. Got the http/https part done. Now i just need to workout the DNS Server and Mail Server
979 [08:10:57] <jm_> replaced-url
980 [08:11:04] *** Quits: soul-bw (~name@replaced-ip ) (Quit: Leaving)
981 [08:11:41] *** Joins: Ticho (~Ticho@replaced-ip )
982 [08:11:42] *** Joins: soul-d (~name@replaced-ip )
983 [08:11:45] <DJDan> so bind9 thanks.. is that what all linux distributions generally use?
984 [08:11:46] *** Quits: Ticho (~Ticho@replaced-ip ) (Changing host)
985 [08:11:46] *** Joins: Ticho (~Ticho@replaced-ip )
986 [08:12:09] <jm_> I would say most people use that, but there are other servers too
987 [08:12:25] *** Quits: stephentt (~stephentt@replaced-ip ) (Remote host closed the connection)
988 [08:12:54] *** Joins: stephentt (~stephentt@replaced-ip )
989 [08:13:23] *** Joins: dionysus69 (~Thunderbi@replaced-ip )
990 [08:13:34] *** Joins: liron_ (~liron@replaced-ip )
991 [08:14:01] *** Quits: r1nt3c (~inerin@replaced-ip ) (Remote host closed the connection)
992 [08:14:03] *** Joins: aj__ (~aj@replaced-ip )
993 [08:14:13] *** Quits: Poffer (~Poffer@replaced-ip##) (Quit: Textual IRC Client: ##replaced-url
994 [08:14:14] *** Joins: _till_ (~till@replaced-ip )
995 [08:14:14] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
996 [08:14:14] *** Joins: _till_ (~till@replaced-ip )
997 [08:15:35] *** Joins: colttt (~quassel@replaced-ip )
998 [08:15:58] *** Quits: stephentt (~stephentt@replaced-ip ) (Remote host closed the connection)
999 [08:16:28] *** Joins: pclover (~pclover@replaced-ip )
1000 [08:16:36] *** Joins: stephentt (~stephentt@replaced-ip )
1001 [08:17:16] *** Joins: tagomago (~tagomago@replaced-ip )
1002 [08:17:20] <DJDan> oh ok cool
1003 [08:17:29] *** Quits: LionOpeter (~liron@replaced-ip ) (Ping timeout: 276 seconds)
1004 [08:18:56] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1005 [08:19:01] *** debhelper sets mode: +l 1539
1006 [08:19:03] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 245 seconds)
1007 [08:20:04] *** Joins: toxync12- (~toxync12@replaced-ip )
1008 [08:20:05] *** Joins: mikas (mikas@replaced-ip )
1009 [08:20:05] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 276 seconds)
1010 [08:20:10] *** Joins: strongestAvenger (~jeroen@replaced-ip )
1011 [08:20:17] *** Joins: vivid (~ViViD@replaced-ip )
1012 [08:20:34] *** Quits: decryp70 (~dcryp7@replaced-ip ) (Read error: Connection reset by peer)
1013 [08:20:40] *** Joins: _till_ (~till@replaced-ip )
1014 [08:20:40] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1015 [08:20:40] *** Joins: _till_ (~till@replaced-ip )
1016 [08:20:56] *** Joins: wanqcrypt (~adilcan@replaced-ip )
1017 [08:22:22] *** Joins: beinbliss4 (~beinbliss@replaced-ip )
1018 [08:23:22] *** Joins: zyun (~zyun@replaced-ip )
1019 [08:25:13] *** Joins: Ycarus (~Ycarus@replaced-ip )
1020 [08:25:45] <DJDan> jm_: how do i know what to setup under dns management on my new vps. should i download old webhosting providor cpanel zone file or something
1021 [08:26:44] <DJDan> hmm /etc/resolv.conf already has stuff
1022 [08:26:49] <DJDan> for nameserver
1023 [08:26:50] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1024 [08:27:53] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
1025 [08:28:00] <jm_> DJDan: the zone file could probably serve as a starting point
1026 [08:28:04] *** Joins: _till_ (~till@replaced-ip )
1027 [08:28:32] <DJDan> jm_: the vps already has /etc/resolv.conf setup to 3 nameserver has that got anything to do with my domain stuff
1028 [08:28:39] <DJDan> cause it says domain mydomain.com
1029 [08:28:54] *** Joins: HerbY_NL2 (~HerbY_NL2@replaced-ip )
1030 [08:29:01] *** debhelper sets mode: +l 1545
1031 [08:30:06] *** Joins: PairofdiceTossed (~podt@replaced-ip )
1032 [08:32:43] *** Quits: fflori (~fflori@replaced-ip ) (Remote host closed the connection)
1033 [08:32:50] <jm_> DJDan: resolv.conf is used by resolver, so client side
1034 [08:32:55] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 252 seconds)
1035 [08:33:35] *** Joins: emOne (~emOne@replaced-ip )
1036 [08:33:35] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
1037 [08:33:35] *** Joins: emOne (~emOne@replaced-ip )
1038 [08:33:53] *** Joins: citypw (~citypw@replaced-ip )
1039 [08:34:55] *** Joins: nav2002 (~nav2002@replaced-ip )
1040 [08:34:57] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 240 seconds)
1041 [08:36:41] *** Quits: toxync12- (~toxync12@replaced-ip ) (Ping timeout: 265 seconds)
1042 [08:36:41] *** Quits: led_belly (led_belly@replaced-ip ) (Ping timeout: 265 seconds)
1043 [08:36:58] *** Joins: toxync12 (~toxync12@replaced-ip )
1044 [08:37:38] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 240 seconds)
1045 [08:38:05] *** Joins: _till_ (~till@replaced-ip )
1046 [08:38:05] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1047 [08:38:05] *** Joins: _till_ (~till@replaced-ip )
1048 [08:39:07] *** Joins: knidos (~knidos@replaced-ip )
1049 [08:39:08] *** Quits: grobi (~Thunderbi@replaced-ip ) (Quit: see you later alligator)
1050 [08:39:24] *** Quits: Marbug (~Marbug@replaced-ip##) (Quit: The Lounge - ##replaced-url
1051 [08:39:35] *** Quits: nucleargnat (~nucleargn@replaced-ip ) (Ping timeout: 276 seconds)
1052 [08:40:53] *** Joins: P1ersson (~P1ersson@replaced-ip )
1053 [08:41:37] *** Joins: bertbob (~bertbob@replaced-ip )
1054 [08:42:50] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1055 [08:43:52] *** Joins: jaggz (~jaggz@replaced-ip )
1056 [08:44:23] <jaggz> darn web references. How do I list all installed packages from a repository? this isn't working: aptitude search "?origin (deb.debian.org) ?installed"
1057 [08:44:33] <jaggz> (it's putting out emptiness)
1058 [08:45:38] *** Quits: liron_ (~liron@replaced-ip ) (Ping timeout: 240 seconds)
1059 [08:45:43] *** Quits: dionysus69 (~Thunderbi@replaced-ip ) (Ping timeout: 245 seconds)
1060 [08:46:30] <jm_> !which repo
1061 [08:46:30] <dpkg> To see what repository a package may have come from, try replaced-url
1062 [08:47:18] <jaggz> jm_, that's a pretty command. some version of it might even work for listing all installed packages from a repo
1063 [08:48:41] *** Quits: vlad-k (~Vladislav@replaced-ip ) (Ping timeout: 250 seconds)
1064 [08:48:49] *** Quits: PairofdiceTossed (~podt@replaced-ip ) (Remote host closed the connection)
1065 [08:49:07] *** Joins: dionysus69 (~Thunderbi@replaced-ip )
1066 [08:49:11] *** Joins: _till_ (~till@replaced-ip )
1067 [08:49:55] *** Joins: george959 (~george959@replaced-ip )
1068 [08:50:50] *** Quits: longbow (~longbow@replaced-ip ) (Ping timeout: 240 seconds)
1069 [08:51:45] *** Quits: CurryWurst (~CurryWurs@replaced-ip ) (Remote host closed the connection)
1070 [08:51:55] *** Joins: chele (~chele@replaced-ip )
1071 [08:52:27] <jm_> jaggz: btw, Origin is not deb.debian.org but something like Debian:10.1/stable
1072 [08:52:39] *** Joins: CurryWurst (~CurryWurs@replaced-ip )
1073 [08:52:49] *** Quits: BlueByte (~walther@replaced-ip ) (Quit: This computer has gone to sleep)
1074 [08:53:16] <jaggz> jm_, damned web page references. Yeah, and apt-cache policy doesn't seem to show it.. how do I get a list of origins?
1075 [08:53:44] <jaggz> (I'm testing if synaptic will work for my needs right now -- before continuing my search for functioning guidance)
1076 [08:53:53] <jaggz> (related to my failed web searches, not your help)
1077 [08:54:23] <jm_> jaggz: my best idea is «grep Origin /var/lib/apt/lists/*_InRelease»
1078 [08:54:34] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 265 seconds)
1079 [08:55:04] *** Joins: codetronaut (~codetrona@replaced-ip )
1080 [08:55:36] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1081 [08:55:47] *** Joins: _till_ (~till@replaced-ip )
1082 [08:55:47] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1083 [08:55:47] *** Joins: _till_ (~till@replaced-ip )
1084 [08:55:57] <jm_> aptitude -F '%O' search ... can also show it
1085 [08:56:12] <jm_> you obviously want more fields listed to make it useful
1086 [08:56:23] *** Joins: sphenxes (~sphenxes@replaced-ip )
1087 [08:56:41] <jaggz> jm_ trying those. (synaptic is the most convenient for me just examining things, by the way)
1088 [08:56:50] *** Joins: mibo (~mibo@replaced-ip )
1089 [08:56:55] <jaggz> I almost never touch synaptic..
1090 [08:57:45] *** Joins: bertbob (~bertbob@replaced-ip )
1091 [08:58:32] *** Joins: trooThnja (~tRoothn1n@replaced-ip )
1092 [08:58:36] <trooThnja> ssa audio mp3 file:replaced-url
1093 [08:58:36] *** Quits: trooThnja (~tRoothn1n@replaced-ip ) (Killed (Sigyn (Spam is off topic on freenode.)))
1094 [08:59:32] *** Joins: Marbug (~Marbug@replaced-ip )
1095 [09:00:26] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1096 [09:01:00] *** Joins: rizoto (~riz@replaced-ip )
1097 [09:01:08] *** Quits: wanqcrypt (~adilcan@replaced-ip ) (Ping timeout: 245 seconds)
1098 [09:01:13] *** Joins: Gaaab (~Gaaab@replaced-ip )
1099 [09:01:32] *** Joins: _till_ (~till@replaced-ip )
1100 [09:01:57] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 240 seconds)
1101 [09:02:05] *** Joins: wanqcrypt (~adilcan@replaced-ip )
1102 [09:02:08] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Remote host closed the connection)
1103 [09:05:41] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 265 seconds)
1104 [09:05:54] *** Joins: Haudegen (~quassel@replaced-ip )
1105 [09:06:28] *** Joins: toxync12 (~toxync12@replaced-ip )
1106 [09:06:36] *** Joins: Pjusur (~Pjusur@replaced-ip )
1107 [09:07:24] *** Quits: wanqcrypt (~adilcan@replaced-ip ) (Read error: Connection reset by peer)
1108 [09:07:44] *** Joins: tekmans13 (~tekmans@replaced-ip )
1109 [09:07:59] *** Quits: ilikeyou (uid389024@replaced-ip ) (Quit: Connection closed for inactivity)
1110 [09:08:08] <ratrace> sponix: yes, sure
1111 [09:08:58] *** Joins: vlad-k (~Vladislav@replaced-ip )
1112 [09:09:44] *** Quits: codetronaut (~codetrona@replaced-ip ) (Remote host closed the connection)
1113 [09:10:04] *** Joins: codetronaut (~codetrona@replaced-ip )
1114 [09:10:50] *** Joins: nucleargnat (~nucleargn@replaced-ip )
1115 [09:11:55] *** himcesjf_ is now known as him-cesjf
1116 [09:12:05] *** Quits: him-cesjf (~cesjf@replaced-ip ) (Quit: Quit)
1117 [09:12:21] *** Joins: him-cesjf (~cesjf@replaced-ip )
1118 [09:12:26] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1119 [09:13:47] *** Quits: lankanmon (~LKNnet@replaced-ip ) (Quit: Left...)
1120 [09:14:19] *** Quits: sphenxes (~sphenxes@replaced-ip ) (Quit: Leaving)
1121 [09:14:31] *** Joins: drzacek (~drzacek@replaced-ip )
1122 [09:17:18] *** Joins: _till_ (~till@replaced-ip )
1123 [09:17:18] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1124 [09:17:18] *** Joins: _till_ (~till@replaced-ip )
1125 [09:17:41] *** Quits: HerbY_NL2 (~HerbY_NL2@replaced-ip ) (Quit: Leaving)
1126 [09:18:50] *** Quits: Marbug (~Marbug@replaced-ip ) (Ping timeout: 240 seconds)
1127 [09:20:02] *** Quits: GWM (~GWM@replaced-ip ) (Ping timeout: 240 seconds)
1128 [09:22:29] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 250 seconds)
1129 [09:24:03] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 265 seconds)
1130 [09:24:19] *** Quits: irl25519 (~irl25519@replaced-ip ) (Quit: irl25519)
1131 [09:24:33] *** Joins: P1ersson (~P1ersson@replaced-ip )
1132 [09:25:32] *** Quits: tyranny12 (~blarg@replaced-ip ) (Remote host closed the connection)
1133 [09:26:15] *** Joins: encod3 (~encod3@replaced-ip )
1134 [09:26:46] *** Joins: tyranny12 (~blarg@replaced-ip )
1135 [09:26:46] *** Quits: tyranny12 (~blarg@replaced-ip ) (Changing host)
1136 [09:26:46] *** Joins: tyranny12 (~blarg@replaced-ip )
1137 [09:27:36] *** Joins: emOne (~emOne@replaced-ip )
1138 [09:27:50] *** Joins: _till_ (~till@replaced-ip )
1139 [09:28:12] *** Joins: xormor (~xormor@replaced-ip )
1140 [09:28:49] *** Joins: AquaL1te (~AquaL1te@replaced-ip )
1141 [09:29:09] <xormor> so I got Ctrl+Alt+End to display the gnome-system-monitor and Ctrl+Pause/Break to start xkill. Good times with my Debian GNOME desktop.
1142 [09:29:50] *** Joins: WoC (~woc@replaced-ip )
1143 [09:29:58] *** Joins: flo2marsnet (~flo2marsn@replaced-ip )
1144 [09:30:37] *** Joins: citypw (~citypw@replaced-ip )
1145 [09:31:26] <WoC> how was it you add a 2nd arch type for your installaion ? i.e. amd64 as primary and x86 as secondary for 32 bit retro compability ?
1146 [09:31:36] *** Joins: TheWizard (~thewizard@replaced-ip )
1147 [09:31:38] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 240 seconds)
1148 [09:31:48] *** Joins: scde (~scde@replaced-ip )
1149 [09:32:00] *** Joins: timur_davletshin (~timur_dav@replaced-ip )
1150 [09:32:15] *** Joins: zamuro (~Samantha@replaced-ip )
1151 [09:32:15] *** Quits: zamuro (~Samantha@replaced-ip ) (Changing host)
1152 [09:32:15] *** Joins: zamuro (~Samantha@replaced-ip )
1153 [09:32:44] *** Quits: citypw (~citypw@replaced-ip ) (Excess Flood)
1154 [09:33:11] *** Joins: citypw (~citypw@replaced-ip )
1155 [09:34:52] *** Joins: NetTerminalGene (~NetTermin@replaced-ip )
1156 [09:36:37] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 265 seconds)
1157 [09:36:46] *** Joins: dethos (~dethos@replaced-ip )
1158 [09:37:43] *** Quits: tagomago (~tagomago@replaced-ip ) (Quit: Konversation terminated!)
1159 [09:37:57] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 240 seconds)
1160 [09:38:36] *** Quits: orbiter (~orbiter@replaced-ip ) ()
1161 [09:39:01] *** debhelper sets mode: +l 1553
1162 [09:39:07] *** Joins: _till_ (~till@replaced-ip )
1163 [09:39:07] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1164 [09:39:07] *** Joins: _till_ (~till@replaced-ip )
1165 [09:39:16] *** Joins: wytchmaster (~wytchmast@replaced-ip )
1166 [09:39:22] *** Joins: tagomago (~tagomago@replaced-ip )
1167 [09:39:38] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 240 seconds)
1168 [09:40:54] *** Joins: platvoeten (~platvoete@replaced-ip )
1169 [09:41:39] *** Joins: Texou (~Texou@replaced-ip )
1170 [09:41:46] *** Quits: Texou (~Texou@replaced-ip ) (Changing host)
1171 [09:41:46] *** Joins: Texou (~Texou@replaced-ip )
1172 [09:44:02] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 240 seconds)
1173 [09:45:10] *** Quits: oxek (qjvl@replaced-ip ) (Quit: oxek)
1174 [09:46:52] *** Joins: han-solo (~han-solo@replaced-ip )
1175 [09:47:20] *** Joins: _till_ (~till@replaced-ip )
1176 [09:48:50] *** Quits: TheWizard (~thewizard@replaced-ip ) (Ping timeout: 240 seconds)
1177 [09:51:01] *** Joins: Marbug (~Marbug@replaced-ip )
1178 [09:51:17] *** Joins: black_ant (~antilope@replaced-ip )
1179 [09:51:18] *** Quits: black_ant (~antilope@replaced-ip ) (Changing host)
1180 [09:51:18] *** Joins: black_ant (~antilope@replaced-ip )
1181 [09:52:47] *** Joins: P1ersson (~P1ersson@replaced-ip )
1182 [09:52:47] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 246 seconds)
1183 [09:55:14] *** Quits: platvoeten (~platvoete@replaced-ip ) (Remote host closed the connection)
1184 [09:55:25] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 250 seconds)
1185 [09:56:56] *** Quits: scde (~scde@replaced-ip ) (Ping timeout: 276 seconds)
1186 [09:57:37] *** Joins: Osprey_Jr (~user@replaced-ip )
1187 [09:59:41] *** Joins: _till_ (~till@replaced-ip )
1188 [10:00:12] *** Joins: selfyd0x (~selfyd0xx@replaced-ip )
1189 [10:00:15] <selfyd0x> Apt7 album:replaced-url
1190 [10:00:16] *** Quits: selfyd0x (~selfyd0xx@replaced-ip ) (Killed (Sigyn (Spam is off topic on freenode.)))
1191 [10:01:44] *** Joins: krabador (~krabador@replaced-ip )
1192 [10:02:17] *** Quits: Marbug (~Marbug@replaced-ip ) (Ping timeout: 240 seconds)
1193 [10:03:08] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 252 seconds)
1194 [10:03:30] *** Joins: toxync12 (~toxync12@replaced-ip )
1195 [10:04:25] *** Joins: _DeLa_ (~Thunderbi@replaced-ip )
1196 [10:04:58] *** Joins: Texou (~Texou@replaced-ip )
1197 [10:05:08] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 265 seconds)
1198 [10:06:45] *** Quits: knidos (~knidos@replaced-ip ) (Quit: WeeChat 1.9.1)
1199 [10:07:26] *** Joins: m0rd3cai (~m0rd3cai@replaced-ip )
1200 [10:08:38] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 276 seconds)
1201 [10:09:24] *** Joins: SniperCZE (~SniperCZE@replaced-ip )
1202 [10:10:12] *** Joins: _till_ (~till@replaced-ip )
1203 [10:10:12] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1204 [10:10:12] *** Joins: _till_ (~till@replaced-ip )
1205 [10:10:41] *** Joins: toxync12 (~toxync12@replaced-ip )
1206 [10:12:59] *** Joins: Giotis (~Giotis@replaced-ip )
1207 [10:15:47] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 276 seconds)
1208 [10:15:47] *** Quits: njka- (~njka-@replaced-ip ) (Ping timeout: 276 seconds)
1209 [10:16:19] *** Joins: Slashman (~Slash@replaced-ip )
1210 [10:17:13] *** Quits: alexandros_c (~alexandro@replaced-ip ) (Ping timeout: 265 seconds)
1211 [10:17:40] *** black_ant is now known as Guest49910
1212 [10:17:40] *** Quits: Guest49910 (~antilope@replaced-ip ) (Killed (card.freenode.net (Nickname regained by services)))
1213 [10:17:58] *** Joins: black_an- (~antilope@replaced-ip )
1214 [10:18:08] *** Joins: emOne (~emOne@replaced-ip )
1215 [10:18:09] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
1216 [10:18:09] *** Joins: emOne (~emOne@replaced-ip )
1217 [10:18:20] *** Joins: n4dir (~n4dir@replaced-ip )
1218 [10:18:50] *** Quits: Ozzyboshi23 (~Ozzyboshi@replaced-ip ) (Ping timeout: 240 seconds)
1219 [10:19:02] *** debhelper sets mode: +l 1560
1220 [10:20:35] *** Joins: winy (~vince@replaced-ip )
1221 [10:21:49] *** Quits: Bonn333 (~Bonn333@replaced-ip ) (Quit: :()
1222 [10:21:58] *** Quits: nav2002 (~nav2002@replaced-ip##) (Quit: Going offline, see ya! (##replaced-url
1223 [10:22:33] *** Joins: Bonn333 (~Bonn333@replaced-ip )
1224 [10:22:35] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1225 [10:23:38] *** Quits: nucleargnat (~nucleargn@replaced-ip ) (Ping timeout: 240 seconds)
1226 [10:24:19] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Remote host closed the connection)
1227 [10:24:29] <dob1> it's not clear to me: using iptables ..... -d somehost -j DROP will drop/close established connection too?
1228 [10:26:30] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1229 [10:27:35] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
1230 [10:29:30] <jm_> dob1: in general no, but obviously a rule may affect new packets for existing connections
1231 [10:30:09] <dob1> jm_, ok how to close established connection ? (on forward chain)
1232 [10:30:11] *** Quits: BoyDoy (~BoyDoy@replaced-ip ) (Quit: Leaving)
1233 [10:30:17] *** Joins: Marbug (~Marbug@replaced-ip )
1234 [10:31:20] *** Joins: monstar (~mitya@replaced-ip )
1235 [10:31:23] <jm_> dob1: I have a recollection of a tool, let me see if i can find it
1236 [10:31:40] <dob1> tcpkill ? it doesn't work on forward chain
1237 [10:31:56] *** Joins: pookiethebear (~pookie666@replaced-ip )
1238 [10:36:35] *** Quits: kdc (~kdc@replaced-ip ) (Remote host closed the connection)
1239 [10:38:52] *** Joins: den_erpel (~den_erpel@replaced-ip )
1240 [10:39:20] <jm_> hmm can't remember it
1241 [10:39:27] <dob1> no problem :)
1242 [10:40:51] <den_erpel> I am trying to preseed a buster (10.2) iso to do unattended install (UEFI). When running it on VirtualBox, the entire install runs fine. When running it on the particular hardware; the install stops at 2 places:
1243 [10:40:51] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Read error: Connection reset by peer)
1244 [10:41:15] *** Joins: LionOpeter (~liron@replaced-ip )
1245 [10:41:31] <den_erpel> [1] No common cd-rom found. This one is fixed by either linking /dev/sdb to /dev/cdrom (no drivers need to be added)
1246 [10:41:57] *** Joins: oxek (qjvl@replaced-ip )
1247 [10:42:14] <den_erpel> [2] It fails to install grub/uefi. Inspecting the logs shows that it tries to remount the cdrom device in-target, but again, it fails to identify /dev/sdb as cdrom
1248 [10:42:40] <jm_> dob1: that's why I couldn't find it replaced-url
1249 [10:42:40] <den_erpel> I suppose I could figure out how to manually hack this, but this will not bring my closer to a solution, so hence my question:
1250 [10:43:10] *** Joins: behanw (uid110099@replaced-ip )
1251 [10:43:31] <den_erpel> Is there a linux kernel command line or a debian installer preseed option or a installer env value that I have missed so that I can force /dev/sdb to be the location of the iso/netinst installer (that I have missed)
1252 [10:44:22] <den_erpel> I've found some references to similar issues, but none that really have a solution
1253 [10:45:41] *** Quits: pacbard (~pacbard@replaced-ip ) (Read error: Connection reset by peer)
1254 [10:45:41] *** Joins: liron_ (~liron@replaced-ip )
1255 [10:47:40] *** Quits: Marbug (~Marbug@replaced-ip##) (Quit: The Lounge - ##replaced-url
1256 [10:47:54] *** Joins: pacbard (~pacbard@replaced-ip )
1257 [10:48:50] *** Quits: LionOpeter (~liron@replaced-ip ) (Ping timeout: 240 seconds)
1258 [10:49:09] *** Joins: rda-mac (~rda-mac@replaced-ip )
1259 [10:52:37] *** Quits: l9 (~muad@replaced-ip ) (Ping timeout: 250 seconds)
1260 [10:53:13] *** Quits: rizoto (~riz@replaced-ip ) (Quit: Leaving)
1261 [10:54:21] *** Joins: BlueByte (~walther@replaced-ip )
1262 [10:54:22] *** Joins: gierdo (~Dominik_G@replaced-ip )
1263 [10:54:44] *** Joins: dantonfiong (~fiong@replaced-ip )
1264 [10:55:39] *** Joins: lankanmon (~LKNnet@replaced-ip )
1265 [10:55:46] <ratrace> Guys, question. I ran reportbug but I don't have the sendmail binary installed (or any MTA for that matter) on that computer. Does that mean it didn't send the bug report and I must mail it myself? the tool didn't complain about an error or missing sendmail.... :/
1266 [10:57:14] *** Quits: ob-sed (~obesd@replaced-ip ) (Ping timeout: 240 seconds)
1267 [10:58:18] *** Joins: platvoeten (~platvoete@replaced-ip )
1268 [10:58:42] *** Joins: vlad-k_ (~Vladislav@replaced-ip )
1269 [10:59:01] *** debhelper sets mode: +l 1566
1270 [11:00:10] *** Joins: P1ersson (~P1ersson@replaced-ip )
1271 [11:01:43] *** Joins: jubo2 (~jubz@replaced-ip )
1272 [11:02:17] *** Quits: vlad-k (~Vladislav@replaced-ip ) (Ping timeout: 240 seconds)
1273 [11:02:23] *** Quits: zst (~z@replaced-ip ) (Ping timeout: 245 seconds)
1274 [11:02:23] *** Quits: WardenOfNight (~WardenOfN@replaced-ip ) (Read error: Connection reset by peer)
1275 [11:02:38] *** Joins: ruslan_m (ruslan@replaced-ip )
1276 [11:03:06] *** Joins: l9 (~muad@replaced-ip )
1277 [11:04:14] *** Joins: WardenOfNight (~WardenOfN@replaced-ip )
1278 [11:05:01] *** Quits: Gazooo (~Gazooo@replaced-ip##) (Quit: The Lounge - ##replaced-url
1279 [11:06:54] *** Joins: Gazooo (~Gazooo@replaced-ip )
1280 [11:07:21] *** Quits: a0z (~a0z@replaced-ip ) (Ping timeout: 250 seconds)
1281 [11:08:01] *** Quits: AimHere (~David@replaced-ip ) (Ping timeout: 252 seconds)
1282 [11:09:24] *** Joins: AimHere (~David@replaced-ip )
1283 [11:10:07] *** Joins: Marbug (~Marbug@replaced-ip )
1284 [11:10:38] *** Joins: TheWizard (~thewizard@replaced-ip )
1285 [11:12:44] *** Quits: dantonfiong (~fiong@replaced-ip ) (Quit: Leaving)
1286 [11:14:50] *** Joins: endstille (~endstille@replaced-ip )
1287 [11:15:10] *** Joins: infrastructule (~tutule@replaced-ip )
1288 [11:16:04] *** Joins: liron__ (~liron@replaced-ip )
1289 [11:16:31] *** Quits: emOne (~emOne@replaced-ip ) (Remote host closed the connection)
1290 [11:18:36] *** Joins: JustASlacker (~JustASlac@replaced-ip )
1291 [11:18:45] *** Quits: Osprey_Jr (~user@replaced-ip ) (Quit: leaving)
1292 [11:19:05] *** Quits: liron_ (~liron@replaced-ip ) (Ping timeout: 265 seconds)
1293 [11:19:39] *** Joins: asymptotically (~asymptoti@replaced-ip )
1294 [11:19:47] *** Quits: BlueByte (~walther@replaced-ip ) (Quit: This computer has gone to sleep)
1295 [11:21:06] *** Joins: Haohmaru (~Haohmaru@replaced-ip )
1296 [11:22:12] *** Joins: megatog (~megatog@replaced-ip )
1297 [11:22:37] *** Joins: nt80 (~nt80@replaced-ip )
1298 [11:22:50] <megatog> is there some way to have xorg load much earlier in the boot process?
1299 [11:23:01] *** Joins: Funkin-Stoopid (~xavier@replaced-ip )
1300 [11:23:55] <megatog> or is there a really good reason why it loads the login manager/xorg as late as it does?
1301 [11:25:10] <livebrain> i dont even know what to say megatog
1302 [11:25:25] *** Joins: we6jbo (~we6jbo@replaced-ip )
1303 [11:25:34] <ratrace> megatog: it's run as a dependency of graphical.target methinks, so it's run as early as possible when deps and requirements are met
1304 [11:25:37] <livebrain> do you drive your car first and start the engine later ?
1305 [11:25:41] *** Parts: diogenes_ (~diogenes_@replaced-ip ) ("vergissmeinnicht")
1306 [11:25:46] <ratrace> however... what's the actual problem you're seeing?
1307 [11:26:25] *** Quits: george959 (~george959@replaced-ip ) (Ping timeout: 250 seconds)
1308 [11:26:49] *** Quits: Giotis (~Giotis@replaced-ip ) (Quit: Cheers)
1309 [11:28:23] *** Quits: infrastructule (~tutule@replaced-ip ) (Quit: Leaving)
1310 [11:29:19] *** Joins: misterwhatever (~misterwha@replaced-ip )
1311 [11:29:23] *** Joins: gnupi (~gnupi@replaced-ip )
1312 [11:30:19] *** Quits: troy (~troy@replaced-ip ) (Quit: WeeChat 2.6)
1313 [11:30:46] *** Joins: troy (~troy@replaced-ip )
1314 [11:30:59] <oiaohm> megatog: there are a few things. X.org when it starts now has not always been as late is it is now in most distributions. replaced-url
1315 [11:31:18] <oiaohm> megatog: the login bit there is still stuff that needs to be readly before you can process a login.
1316 [11:34:21] *** Parts: Xalys (~ircusr@replaced-ip ) ()
1317 [11:34:43] *** Joins: aurelien (~user@replaced-ip )
1318 [11:34:49] *** Joins: Space_Man (~Space_Man@replaced-ip )
1319 [11:36:04] <aurelien> Hi #debian
1320 [11:36:10] <megatog> oiaohm: yes i do recall redhat/fedora loading xorg very early in the boot process to show the boot messages
1321 [11:36:16] *** Quits: lilabsence (~RizzoTheR@replaced-ip ) (Ping timeout: 240 seconds)
1322 [11:36:26] *** Quits: misterwhatever (~misterwha@replaced-ip ) (Excess Flood)
1323 [11:36:28] <aurelien> following replaced-url
1324 [11:36:33] <megatog> i could be misremembering
1325 [11:36:36] <aurelien> any idea why?
1326 [11:37:27] *** Quits: Jade_NL (~JadeNL@replaced-ip ) (Ping timeout: 265 seconds)
1327 [11:37:37] <megatog> livebrain: a car can be started that way, ironically
1328 [11:38:09] <ratrace> megatog: xorg never did show boot messages, you're confusing things. so, what's the actual problem you want to solve?
1329 [11:38:12] <ratrace> !xy
1330 [11:38:12] <dpkg> Slow down for a bit! Are you sure that you need to jump through that particular hoop to achieve your goal? We suspect you don't, so why don't you back up a bit and tell us about the overall objective... We know that people often falsely diagnose problems because they are too close to them -- it's easy to miss that there is a better way to proceed. See replaced-url
1331 [11:38:59] <megatog> ratrace: there is no problem
1332 [11:39:23] <ratrace> megatog: then what do you want to achieve?
1333 [11:39:25] *** Joins: oish (~charlie@replaced-ip )
1334 [11:39:29] <oiaohm> megatog: replaced-url
1335 [11:39:39] <oiaohm> megatog: basically a 2 year time window.
1336 [11:39:41] <megatog> it's been a long time since i saw it but it did have a cursor and it showed a progress bar at the top and showed boot messages in a text box
1337 [11:39:58] <oiaohm> 2009-2011.
1338 [11:40:14] <ratrace> megatog: remove "quiet" from the kernel command line via /etc/default/grub, and run update-grub if you wanna see "boot messages". not sure about progress bar, that sounds like maybe plymouth or some other tool like that
1339 [11:40:15] <megatog> i was just wondering if it was still possible to do this or why the feature fell off with distributions
1340 [11:40:54] *** Quits: monstar (~mitya@replaced-ip ) (Remote host closed the connection)
1341 [11:40:55] *** Joins: misterwhatever (~misterwha@replaced-ip )
1342 [11:41:23] *** Quits: well_laid_lawn (~Jean-luc@replaced-ip ) (Ping timeout: 252 seconds)
1343 [11:41:24] *** Joins: monstar (~mitya@replaced-ip )
1344 [11:41:30] *** Joins: LionOpeter (~liron@replaced-ip )
1345 [11:43:26] <jm_> megatog: you mean plymouth? try installing that
1346 [11:44:42] *** Quits: liron__ (~liron@replaced-ip ) (Ping timeout: 265 seconds)
1347 [11:44:50] <ratrace> but plymouth _hides_ boot messages with a graphical splash screen
1348 [11:45:15] *** Joins: emOne (~emOne@replaced-ip )
1349 [11:45:15] <jm_> yeah I thought they wanted to see progress bar, not boot messages :)
1350 [11:45:55] <ratrace> the original question wanted boot messages
1351 [11:46:00] *** Joins: liron_ (~liron@replaced-ip )
1352 [11:46:26] <ratrace> infact, the original question wanted xorg, because it's an XY problem... we had to pry out of them that they want boot messages (and apparently progress bar at the same time)
1353 [11:47:15] <megatog> ratrace: original question didn't say anything about boot messages
1354 [11:47:37] <megatog> all i asked was if it was possible to load xorg much earlier in the boot process
1355 [11:47:37] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
1356 [11:47:47] <megatog> you're reading way too much into the question
1357 [11:47:57] *** Quits: thelastjedi_ (~quassel@replaced-ip ) (Read error: Connection reset by peer)
1358 [11:48:12] <megatog> my question is pretty much answered
1359 [11:48:18] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
1360 [11:48:27] <ratrace> and that's what I said, you originally wanted xorg
1361 [11:49:01] *** debhelper sets mode: +l 1572
1362 [11:49:17] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 240 seconds)
1363 [11:49:32] *** Quits: LionOpeter (~liron@replaced-ip ) (Ping timeout: 265 seconds)
1364 [11:49:45] *** Quits: endstille (~endstille@replaced-ip ) (Quit: I'll be back.)
1365 [11:50:37] <megatog> < ratrace> the original question wanted boot messages
1366 [11:50:45] <megatog> coulda fooled me
1367 [11:50:55] <megatog> but thanks for the help
1368 [11:50:55] <ratrace> megatog: 11:46 < ratrace> infact, the original question wanted xorg, ...
1369 [11:51:39] *** Quits: WardenOfNight (~WardenOfN@replaced-ip ) (Read error: Connection reset by peer)
1370 [11:51:41] <megatog> you then later go on to say "we had to pry out of them that they
1371 [11:51:42] <megatog> want boot messages"
1372 [11:52:16] <ratrace> yup
1373 [11:52:26] <megatog> i didnt actually want that at all, i only said that the first time i saw something like what i was asking about included that
1374 [11:52:48] <ratrace> good, then problem solved.
1375 [11:52:58] *** Joins: Adbray (~Adbray@replaced-ip )
1376 [11:53:49] *** Joins: DodgeThis (~DodgeThis@replaced-ip )
1377 [11:53:54] *** Joins: scde (~scde@replaced-ip )
1378 [11:54:10] *** Joins: zyun (~zyun@replaced-ip )
1379 [11:54:10] *** Joins: y0kowka (~y0kowka@replaced-ip )
1380 [11:54:43] <megatog> i really wanted to know if it was possible to get the login manager started and finish loading all the other non-xorg-related things in the background but we got off track, but it appears that it's not possible
1381 [11:54:55] *** Joins: george959 (~george959@replaced-ip )
1382 [11:54:56] <megatog> so whatever
1383 [11:55:16] *** Joins: Feelsonix (~thomas@replaced-ip )
1384 [11:56:05] <ratrace> well, xorg / DM does load as soon as possible. you might be able to tweak it to run sooner by relaxing or changing dependency order, but that'd probably break everything
1385 [11:56:42] *** Joins: WardenOfNight (~WardenOfN@replaced-ip )
1386 [11:56:50] <ratrace> it's also being loaded "in the background" kinda, as systemd will parallelize where possible, sastisfying the dependency graph
1387 [11:57:16] *** Quits: misterwhatever (~misterwha@replaced-ip ) (Ping timeout: 265 seconds)
1388 [11:57:55] *** Joins: mortderire (mortderire@replaced-ip )
1389 [11:58:17] *** Quits: rople (rople@replaced-ip ) (Ping timeout: 240 seconds)
1390 [11:58:19] <megatog> i get the feeling it depends on a lot more now than it did in 2009 when i watched fedora boot in college
1391 [11:58:49] *** Quits: ich (~ich@replaced-ip ) (Remote host closed the connection)
1392 [11:59:29] <ratrace> megatog: are you referring to fedora's splash screen on boot with that progress bar? but that's not xorg doing afaik
1393 [11:59:39] <ratrace> it's plymouth
1394 [11:59:41] <megatog> i distinctly remember a cursor
1395 [11:59:54] <ratrace> cursor is not depending on xorg, see gpm
1396 [11:59:55] <megatog> yeah im fully aware that i might be wrong
1397 [12:00:57] *** Quits: m0rd3cai (~m0rd3cai@replaced-ip ) (Quit: Lost terminal)
1398 [12:01:14] *** Quits: Immanuel (~Manu@replaced-ip ) (Ping timeout: 240 seconds)
1399 [12:01:28] <megatog> it wasn't like a gpm cursor though, it was like an x cursor with a bitmap
1400 [12:01:41] <megatog> but nevermind, it's not possible
1401 [12:02:12] *** Joins: Immanuel (~Manu@replaced-ip )
1402 [12:02:15] <ratrace> I understand, just saying you don't need xorg to be able to read mouse events and draw a cursor in the fb
1403 [12:02:50] *** Joins: swordfish (~swordfish@replaced-ip )
1404 [12:03:26] *** Joins: humbot (~o@replaced-ip )
1405 [12:05:14] *** Joins: lucad111 (~lucad111@replaced-ip )
1406 [12:07:05] *** Joins: brokencycle (~brokencyc@replaced-ip )
1407 [12:08:22] *** Quits: heidie-fr (~beaver@replaced-ip ) (Remote host closed the connection)
1408 [12:08:54] *** Joins: heidie-fr (~beaver@replaced-ip )
1409 [12:09:52] *** swordfish is now known as sdns
1410 [12:10:02] *** Quits: dselect (~dselect@replaced-ip ) (Quit: ouch... that hurt)
1411 [12:10:21] *** Quits: jeweet_ (jeweet_@replaced-ip ) (Quit: ...and he's gone)
1412 [12:10:21] *** Quits: Al_lA (~derwhalfi@replaced-ip ) (Ping timeout: 252 seconds)
1413 [12:10:35] *** Joins: jeweet_ (jeweet_@replaced-ip )
1414 [12:11:07] *** Joins: dselect (~dselect@replaced-ip )
1415 [12:11:31] *** Joins: emOne (~emOne@replaced-ip )
1416 [12:11:32] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
1417 [12:11:32] *** Joins: emOne (~emOne@replaced-ip )
1418 [12:12:18] *** Joins: nav2002 (~nav2002@replaced-ip )
1419 [12:12:18] *** Joins: Al_lA (~derwhalfi@replaced-ip )
1420 [12:13:48] *** Joins: Osprey_Jr (~user@replaced-ip )
1421 [12:15:01] *** Quits: y0kowka (~y0kowka@replaced-ip ) (Remote host closed the connection)
1422 [12:15:21] *** Joins: weirdobeardo48 (~weirdobea@replaced-ip )
1423 [12:15:22] *** Joins: y0kowka (~y0kowka@replaced-ip )
1424 [12:15:56] *** Parts: Feelsonix (~thomas@replaced-ip ) ()
1425 [12:16:35] *** Quits: KBme (~KBme@replaced-ip ) (Quit: BAI2YALL)
1426 [12:16:35] *** Quits: codetronaut (~codetrona@replaced-ip ) (Ping timeout: 252 seconds)
1427 [12:16:58] *** Joins: KBme (~KBme@replaced-ip )
1428 [12:17:38] *** Quits: weirdobeardo (~weirdobea@replaced-ip ) (Ping timeout: 240 seconds)
1429 [12:18:00] *** Joins: m0u (~m0u@replaced-ip )
1430 [12:19:01] *** debhelper sets mode: +l 1579
1431 [12:22:47] *** Quits: n4dir (~n4dir@replaced-ip ) (Remote host closed the connection)
1432 [12:23:01] *** Joins: zeden (~user@replaced-ip )
1433 [12:24:07] *** Joins: bliv (~bliv@replaced-ip )
1434 [12:25:16] *** Quits: stephentt (~stephentt@replaced-ip ) (Remote host closed the connection)
1435 [12:28:34] *** Joins: Specialist (~tg@replaced-ip )
1436 [12:31:17] *** Quits: strongestAvenger (~jeroen@replaced-ip ) (Ping timeout: 240 seconds)
1437 [12:31:44] *** Joins: eypo (~eypo@replaced-ip )
1438 [12:32:04] *** Quits: Nefertiti (~Nefertiti@replaced-ip ) (Ping timeout: 265 seconds)
1439 [12:33:03] *** Joins: longbow (~chskab@replaced-ip )
1440 [12:33:03] *** Joins: KoL (~KoL@replaced-ip )
1441 [12:33:10] *** Joins: xzcvczx_ (~xzcvczx@replaced-ip )
1442 [12:33:12] *** Joins: leden_ (~leden@replaced-ip )
1443 [12:33:28] <dka> On Intellij, I can't get the System enviroment variable
1444 [12:33:44] <dka> I have tried in .profile, .bash_profile, .bashrc
1445 [12:34:12] <dka> everytime I add "export MY_ENV=test" and go in the Run/Debug Configurations and check my environmt variable, I see system environment and mine is not included
1446 [12:34:26] *** Joins: emOne_ (~emOne@replaced-ip )
1447 [12:34:32] <dka> I am trying to get env in my intellij gradle context
1448 [12:34:56] *** Quits: Obi-Wan (~obi-wan@replaced-ip ) (Disconnected by services)
1449 [12:34:57] *** Joins: ^Obi-Wan^ (~obi-wan@replaced-ip )
1450 [12:35:34] *** Joins: manakanapa (manakanapa@replaced-ip )
1451 [12:36:45] *** Joins: FoRTu_ (~quassel@replaced-ip )
1452 [12:36:56] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 246 seconds)
1453 [12:36:57] *** Quits: bay-max (~baymax@replaced-ip ) (Disconnected by services)
1454 [12:37:05] *** Joins: baymax- (~baymax@replaced-ip )
1455 [12:37:06] <ratrace> dka: where do you add that export?
1456 [12:37:17] <dka> I have tried in .profile, .bash_profile, .bashrc
1457 [12:37:28] *** Joins: ndorf_ (~nd@replaced-ip )
1458 [12:37:35] *** Joins: zamuro_ (~Samantha@replaced-ip )
1459 [12:37:38] <ratrace> dka: no, you need to figure out how your DM solves it. For example, my i3-wm setup I use ~/.xsessionrc to set up additional env
1460 [12:37:42] *** Joins: squareci1cle (~root@replaced-ip )
1461 [12:37:44] *** Joins: relaxed_ (~relaxed@replaced-ip )
1462 [12:37:49] <jm_> you need to start intellij from shell that has it set
1463 [12:37:50] *** Joins: ddelony1 (ddelony@replaced-ip )
1464 [12:37:53] *** Quits: azizLIGHT (~azizLIGHT@replaced-ip ) (Killed (cherryh.freenode.net (Nickname regained by services)))
1465 [12:38:09] *** Joins: azizLIGHT (~azizLIGHT@replaced-ip )
1466 [12:38:10] *** Joins: MasterNayru_ (~quassel@replaced-ip )
1467 [12:38:14] <dka> if I run idea from terminal then I must keep the terminal open
1468 [12:38:16] <dka> that's annoying
1469 [12:38:37] <jm_> you don't need to, you can start it in the background and detach it
1470 [12:38:45] <dka> how?
1471 [12:38:59] <ratrace> dka: right so you need to set up env the way your DM expects it. the ~/.xsessionrc I use with i3-wm / LightDM
1472 [12:39:01] <jm_> is it bash?
1473 [12:39:02] *** debhelper sets mode: +l 1591
1474 [12:39:13] <dka> yes
1475 [12:39:40] *** Joins: xingu_ (~xingu@replaced-ip )
1476 [12:39:46] <dka> ratrace, .xsessionrc doesn't work either
1477 [12:39:47] *** Quits: zamuro (~Samantha@replaced-ip ) (Remote host closed the connection)
1478 [12:39:47] *** Quits: leden (~leden@replaced-ip ) (Remote host closed the connection)
1479 [12:39:47] *** Quits: Lok (~KoL@replaced-ip ) (Remote host closed the connection)
1480 [12:39:47] *** Quits: xzcvczx (~xzcvczx@replaced-ip ) (Read error: Connection reset by peer)
1481 [12:39:48] *** Quits: ExoUNX (~ExoUNX@replaced-ip ) (Ping timeout: 240 seconds)
1482 [12:39:48] *** Quits: MasterNayru (~quassel@replaced-ip ) (Remote host closed the connection)
1483 [12:39:48] *** Quits: FoRTu (~quassel@replaced-ip ) (Remote host closed the connection)
1484 [12:39:48] *** Quits: Ceber (~cerberus@replaced-ip ) (Ping timeout: 240 seconds)
1485 [12:39:48] *** Quits: xingu (~xingu@replaced-ip ) (Ping timeout: 240 seconds)
1486 [12:39:48] *** Quits: LtL (~ltl@replaced-ip ) (Ping timeout: 240 seconds)
1487 [12:39:48] *** Quits: chownsauce (~chown@replaced-ip ) (Ping timeout: 240 seconds)
1488 [12:39:48] *** Quits: deltam (~deltam@replaced-ip ) (Ping timeout: 240 seconds)
1489 [12:39:48] *** Quits: relaxed (~relaxed@replaced-ip ) (Ping timeout: 240 seconds)
1490 [12:39:48] *** Quits: ddelony (ddelony@replaced-ip ) (Ping timeout: 240 seconds)
1491 [12:39:48] *** Quits: ndorf (~nd@replaced-ip ) (Ping timeout: 240 seconds)
1492 [12:39:48] *** Quits: squarecircle (~root@replaced-ip ) (Ping timeout: 240 seconds)
1493 [12:39:48] *** Joins: chownsauce (~chown@replaced-ip )
1494 [12:39:48] *** ChanServ sets mode: +o jelly
1495 [12:39:50] <jm_> idea & disown
1496 [12:40:01] <ratrace> dka: is ~/.xsessionrc sourced by your DM?
1497 [12:40:12] <dka> define DM
1498 [12:40:19] <ratrace> display manager, login manager
1499 [12:40:20] <jm_> maybe you need to tell it to use the debian session
1500 [12:40:40] <dka> jm how?
1501 [12:40:44] *** Quits: flo2marsnet (~flo2marsn@replaced-ip ) (Ping timeout: 276 seconds)
1502 [12:40:44] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Ping timeout: 276 seconds)
1503 [12:40:44] <ratrace> dka: of course, you DO have to logout / login after you alter that file
1504 [12:41:12] <jm_> dka: DM would typically have a session choice somewhere in its menus
1505 [12:41:12] <dka> launchin with disown seems to bring them
1506 [12:41:51] *** Joins: hk239^2 (~d@replaced-ip )
1507 [12:41:53] <dka> should I alter my shortcut and add & disown at the end?
1508 [12:41:54] *** Joins: oerheks1 (~OerHeks@replaced-ip )
1509 [12:42:04] *** Joins: mabgnu (~amin@replaced-ip )
1510 [12:42:07] *** Joins: Ceber (~cerberus@replaced-ip )
1511 [12:42:11] *** Joins: maqr_ (~Maqr@replaced-ip )
1512 [12:42:16] *** Joins: shingouz_ (~not@replaced-ip )
1513 [12:42:16] *** Quits: shingouz (~not@replaced-ip ) (Disconnected by services)
1514 [12:42:17] *** Joins: Pjusur1 (~Pjusur@replaced-ip )
1515 [12:42:28] *** Joins: frgo (~frgo@replaced-ip )
1516 [12:42:34] *** Joins: areisp_ (~ars@replaced-ip )
1517 [12:42:40] *** Joins: [Brain] (~brain@replaced-ip )
1518 [12:42:41] *** Joins: deltam (~deltam@replaced-ip )
1519 [12:42:43] <ratrace> dka: eh... you using a .desktop shortcut?
1520 [12:42:46] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: Bin weg.)
1521 [12:42:49] *** Joins: camel_ (fade@replaced-ip )
1522 [12:43:23] *** Joins: Marbug1 (~Marbug@replaced-ip )
1523 [12:43:30] <jm_> no, disown is purely if you start it from shell
1524 [12:43:36] *** Joins: panga_ (~panga@replaced-ip )
1525 [12:43:43] *** Joins: SuperKaramba (~TaxDodger@replaced-ip )
1526 [12:43:46] <dka> ratrace, yes
1527 [12:43:48] *** Joins: u21_ (~tracking@replaced-ip )
1528 [12:43:48] <ratrace> dka: then you can also add the env IN it.... replaced-url
1529 [12:43:50] <dka> jm how can I do it with a shortcut?
1530 [12:44:08] *** Joins: Nahra (~Nahra@replaced-ip )
1531 [12:44:26] *** Joins: zst (~z@replaced-ip )
1532 [12:44:28] <Nahra> Hello. Which bonding mode is the best when bonding ethernet and wifi interfaces?
1533 [12:44:28] <jm_> dka: you don't need to bother with background and disown for shortcuts
1534 [12:44:35] *** Joins: ks1en (~newbie@replaced-ip )
1535 [12:44:43] *** Joins: benj_- (~benj_@replaced-ip )
1536 [12:44:56] <eypo> Nahra: you mean bridging, not bonding.
1537 [12:44:57] *** Joins: ayew1 (~ayew@replaced-ip )
1538 [12:45:00] *** Quits: panga_ (~panga@replaced-ip ) (Client Quit)
1539 [12:45:03] *** Joins: lemsip (~emilsp@replaced-ip )
1540 [12:45:08] <dka> shortcut doesn't load env jm
1541 [12:45:15] *** shingouz_ is now known as shingouz
1542 [12:45:17] <Nahra> eypo: no, bonding
1543 [12:45:20] *** Joins: panga_ (~panga@replaced-ip )
1544 [12:45:26] <ratrace> dka: did you see the link I posted above?
1545 [12:45:35] *** Joins: vdehors_ (~vdehors@replaced-ip )
1546 [12:45:36] *** Quits: vdehors (~vdehors@replaced-ip ) (Disconnected by services)
1547 [12:45:38] *** Joins: roylapra1tep (~roylaprat@replaced-ip )
1548 [12:45:46] *** Joins: trewas667 (~trewas@replaced-ip )
1549 [12:45:47] *** Joins: misterwhatever (~misterwha@replaced-ip )
1550 [12:45:58] *** Quits: we6jbo (~we6jbo@replaced-ip ) (Remote host closed the connection)
1551 [12:46:00] <Nahra> eypo: well, replaced-url
1552 [12:46:02] <dka> that does not help because I want to get them loaded from a file
1553 [12:46:07] *** Joins: d3lphi_ (~d3lphi@replaced-ip )
1554 [12:46:08] *** Joins: KNERD_ (~KNERD@replaced-ip )
1555 [12:46:18] <jm_> dka: yeah, you have two issue, env and the fact terminal had to be running, my advices were for the latter
1556 [12:46:33] <jm_> as for env, which DM do you use?
1557 [12:46:34] *** Joins: mutante_ (foobar@replaced-ip )
1558 [12:46:39] *** Joins: ozzloy_ (~ozzloy@replaced-ip )
1559 [12:46:41] *** Joins: KungFuJe2us (~adamstyli@replaced-ip )
1560 [12:46:42] <dka> cinnamon
1561 [12:46:45] *** Quits: nyov (~nyov@replaced-ip ) (Killed (karatkievich.freenode.net (Nickname regained by services)))
1562 [12:46:52] *** Joins: nyov (~nyov@replaced-ip )
1563 [12:47:28] *** Quits: Guest7666 (~matt@replaced-ip ) (Ping timeout: 268 seconds)
1564 [12:47:33] *** Joins: m1dnight1 (~m1dnight@replaced-ip )
1565 [12:47:46] <Nahra> eypo: ?
1566 [12:47:48] *** Joins: Trieste_ (~T@replaced-ip )
1567 [12:48:32] *** Quits: dselect (~dselect@replaced-ip ) (Ping timeout: 240 seconds)
1568 [12:48:32] *** Quits: areisp (~ars@replaced-ip ) (Ping timeout: 240 seconds)
1569 [12:48:32] *** Quits: bandali (~amin@replaced-ip ) (Ping timeout: 240 seconds)
1570 [12:48:32] *** Quits: Pjusur (~Pjusur@replaced-ip ) (Remote host closed the connection)
1571 [12:48:32] *** Quits: kslen (~newbie@replaced-ip ) (Remote host closed the connection)
1572 [12:48:32] *** Quits: KNERD (~KNERD@replaced-ip##) (Quit: ZNC 1.7.2 - ##replaced-url
1573 [12:48:32] *** Quits: _fade_ (fade@replaced-ip ) (Read error: Connection reset by peer)
1574 [12:48:32] *** Quits: Trieste (~T@replaced-ip ) (Ping timeout: 240 seconds)
1575 [12:48:32] *** Quits: Marbug (~Marbug@replaced-ip ) (Quit: Ping timeout (120 seconds))
1576 [12:48:32] *** Quits: chownsauce (~chown@replaced-ip ) (Ping timeout: 240 seconds)
1577 [12:48:32] *** Quits: BenderRodriguez (~TaxDodger@replaced-ip ) (Remote host closed the connection)
1578 [12:48:32] *** Quits: u21 (~tracking@replaced-ip ) (Remote host closed the connection)
1579 [12:48:32] *** Quits: ayew (~ayew@replaced-ip ) (Ping timeout: 240 seconds)
1580 [12:48:32] *** Quits: emilsp (~emilsp@replaced-ip ) (Quit: bye)
1581 [12:48:32] *** Quits: hk239 (~d@replaced-ip ) (Ping timeout: 240 seconds)
1582 [12:48:32] *** Quits: benj_ (~benj_@replaced-ip ) (Quit: -)
1583 [12:48:32] *** Joins: chownsauce (~chown@replaced-ip )
1584 [12:48:32] *** Quits: frgo_ (~frgo@replaced-ip ) (Ping timeout: 240 seconds)
1585 [12:48:32] *** Quits: maqr (~Maqr@replaced-ip ) (Ping timeout: 240 seconds)
1586 [12:48:32] *** Quits: Saar (~Saar@replaced-ip ) (Ping timeout: 240 seconds)
1587 [12:48:32] *** Quits: Brain (~brain@replaced-ip ) (Ping timeout: 240 seconds)
1588 [12:48:32] *** Quits: zupzupper (~Zup@replaced-ip ) (Ping timeout: 240 seconds)
1589 [12:48:33] *** Quits: roylaprattep (~roylaprat@replaced-ip ) (Ping timeout: 240 seconds)
1590 [12:48:33] *** Quits: lrvick (~weechat_u@replaced-ip ) (Ping timeout: 240 seconds)
1591 [12:48:33] *** Quits: trewas (~trewas@replaced-ip ) (Remote host closed the connection)
1592 [12:48:33] *** Quits: oerheks (~OerHeks@replaced-ip ) (Ping timeout: 240 seconds)
1593 [12:48:33] *** Quits: ectospasm (~ectospasm@replaced-ip ) (Ping timeout: 240 seconds)
1594 [12:48:33] *** Quits: ozzloy (~ozzloy@replaced-ip ) (Ping timeout: 240 seconds)
1595 [12:48:33] *** Quits: mutante (foobar@replaced-ip ) (Ping timeout: 240 seconds)
1596 [12:48:33] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Remote host closed the connection)
1597 [12:48:33] *** Quits: d3lphi (~d3lphi@replaced-ip ) (Remote host closed the connection)
1598 [12:48:33] *** Quits: AimHere (~David@replaced-ip ) (Ping timeout: 240 seconds)
1599 [12:48:33] *** Quits: den_erpel (~den_erpel@replaced-ip ) (Ping timeout: 240 seconds)
1600 [12:48:33] *** Quits: KungFuJesus (~adamstyli@replaced-ip ) (Remote host closed the connection)
1601 [12:48:33] *** Quits: mavhq (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
1602 [12:48:33] *** u21_ is now known as u21
1603 [12:48:35] *** benj_- is now known as benj_
1604 [12:48:43] *** Joins: ecto (~ectospasm@replaced-ip )
1605 [12:49:02] *** debhelper sets mode: +l 1571
1606 [12:49:06] *** Joins: matt_ (~matt@replaced-ip )
1607 [12:49:11] *** Quits: swift110 (~swift110@replaced-ip ) (Ping timeout: 250 seconds)
1608 [12:49:29] *** matt_ is now known as Guest75000
1609 [12:50:40] <jm_> dka: try cat /etc/X11/default-display-manager
1610 [12:50:50] *** Quits: j0hnny (kadnsjkfnw@replaced-ip ) (Ping timeout: 240 seconds)
1611 [12:50:55] *** Joins: den_erpel (~den_erpel@replaced-ip )
1612 [12:51:07] <eypo> Nahra, In your scenario 802.3ad won't work. Active-backup is a safe bet.
1613 [12:51:14] *** Quits: Slashman (~Slash@replaced-ip ) (Ping timeout: 240 seconds)
1614 [12:51:14] *** Quits: roddie_digital (~roddie@replaced-ip ) (Ping timeout: 240 seconds)
1615 [12:51:30] *** Joins: AimHere (~David@replaced-ip )
1616 [12:51:55] *** Joins: zupzupper (~Zup@replaced-ip )
1617 [12:52:19] *** Quits: emOne_ (~emOne@replaced-ip ) (Remote host closed the connection)
1618 [12:52:42] *** Joins: mavhq (~quassel@replaced-ip )
1619 [12:53:08] *** Joins: lrvick (~weechat_u@replaced-ip )
1620 [12:53:10] *** Joins: roddie_digital (~roddie@replaced-ip )
1621 [12:53:15] *** Joins: czesmir (~stefan@replaced-ip )
1622 [12:53:59] <ratrace> dka: cinnamon is not a manger, it's a DE. which login manager you use? GDM?
1623 [12:54:04] <ratrace> lol manger
1624 [12:54:24] <Nahra> eypo: I tried 802.3ad and got some troubles yes (about Wi-Fi NIC unknow speed for example). Let's try active-backup then!
1625 [12:54:59] *** Joins: emOne (~emOne@replaced-ip )
1626 [12:55:40] *** Quits: heidie-fr (~beaver@replaced-ip ) (Quit: leaving)
1627 [12:55:42] <jelly> Nahra: LACP (802.3ad) needs to be supported and configured on both ends, all the ports in the switch(es), and the all the ports on the server side
1628 [12:55:50] <den_erpel> OK, figured it out, the script list_devices list listing usb-partitions in /sys/block/*/*; so it does not catch the device that is in /sys/block/*
1629 [12:55:55] <jelly> (all the relevant ports, that is)
1630 [12:56:00] <den_erpel> testing now
1631 [12:56:39] *** Joins: kzimmermann (~Thunderbi@replaced-ip )
1632 [12:58:16] <Nahra> jelly: my goal is to use bonding on laptop. Is it still possible?
1633 [12:58:17] *** Joins: j0hnny (kadnsjkfnw@replaced-ip )
1634 [12:58:32] <eypo> Nahra, replaced-url
1635 [12:59:11] *** Joins: sinaowolabi (~Sina@replaced-ip )
1636 [12:59:50] <Nahra> eypo: I use systemd...
1637 [12:59:53] *** Quits: misterwhatever (~misterwha@replaced-ip ) (Ping timeout: 245 seconds)
1638 [13:01:00] <Nahra> eypo: And:
1639 [13:01:01] <Nahra> Speed: Unknown
1640 [13:01:07] <Nahra> Duplex: Unknown
1641 [13:01:41] <jelly> Nahra: by systemd, do you mean systemd-networkd?
1642 [13:02:06] <eypo> Nahra, but does it work? can you pull the rj-45 and the bond interface still works?
1643 [13:03:15] *** Joins: crivrc (~crivrc@replaced-ip )
1644 [13:03:51] <nvz> I thought the main points of bonding were redundancy and speed.. I fail to see how there is any point bonding wifi and ethernet on a laptop
1645 [13:04:03] <ratrace> you just said, redundancy
1646 [13:04:04] <nvz> especially if to the same router
1647 [13:04:40] <nvz> its only redundant if you have two totally seperate connectins powered and routed through different means
1648 [13:05:00] *** Quits: timur_davletshin (~timur_dav@replaced-ip ) (Quit: Leaving)
1649 [13:05:02] *** Quits: dpkg (~dpkg@replaced-ip ) (Quit: buh bye!)
1650 [13:05:38] *** Joins: dpkg (~dpkg@replaced-ip )
1651 [13:05:40] <ratrace> that'd be the most used case yes
1652 [13:06:04] *** Joins: Ozzyboshi23 (~Ozzyboshi@replaced-ip )
1653 [13:06:12] <Nahra> jelly: yes
1654 [13:06:40] <nvz> ah, right.. I forget sometimes to think like a jag.. you could also be trying to leech two servings of bandwidth on a network you don't control I suppose :P
1655 [13:06:50] <eypo> I'm not sure if it's worth the hazzle, tough
1656 [13:07:26] <ratrace> nvz: or be able to unplug laptop and walk around the house then come back and plug it back in with no need to fiddle with connections manually
1657 [13:07:41] <Osprey_Jr> In Debian 10 after gnome enables the energy saver for screen, a new login resets the backlight settings. Which system file is appropriate to set an intel_reg write command?
1658 [13:08:26] *** Joins: Zathras (~Zzzth@replaced-ip )
1659 [13:08:30] *** Joins: timur_davletshin (~timur_dav@replaced-ip )
1660 [13:09:01] *** debhelper sets mode: +l 1579
1661 [13:09:17] *** Joins: dacod (~dacod@replaced-ip )
1662 [13:09:25] *** Joins: supercoven (~Supercove@replaced-ip )
1663 [13:10:26] <nvz> Osprey_Jr: what do you mean? is a "intel_reg write command" an actual command? A sys interface? a proc interface?
1664 [13:10:40] <Nahra> jelly: Isn't it possible?
1665 [13:10:51] <nvz> Osprey_Jr: in any case if you want it to happen at login you probabl wanna hook the DM or Session manager
1666 [13:11:08] *** Quits: j7k6 (~j7k6@replaced-ip ) (Quit: Lost terminal)
1667 [13:11:09] <jm_> I was wondering about that too, but then I thought maybe that's something related to wayland or whatever
1668 [13:11:13] <Osprey_Jr> nvz: intel_reg write is a command for the intel tools.
1669 [13:11:38] *** Joins: misterwhatever (~misterwha@replaced-ip )
1670 [13:11:49] <nvz> Osprey_Jr: ok, well you should have some thing in your gnome settings that mentions session or startup where you can add commands to run at login
1671 [13:12:25] <Osprey_Jr> nvz: Okay, but is it a proper loging when the user enters the password in the screen saver?
1672 [13:12:55] *** Joins: supercoven_ (~Supercove@replaced-ip )
1673 [13:12:59] <jelly> Nahra: might be, but I honestly don't know, don't use networkd
1674 [13:13:10] *** Joins: eb0t (~eblip@replaced-ip )
1675 [13:14:23] <Osprey_Jr> nvz: The session is still running, but after entering the ss password the backlight registers get reset.
1676 [13:14:53] <nvz> Osprey_Jr: do you actually want backlight dimming to occur at all?
1677 [13:15:17] *** Quits: supercoven (~Supercove@replaced-ip ) (Ping timeout: 240 seconds)
1678 [13:15:19] <Nahra> jelly: OK. What mode would you suggest according my need?
1679 [13:15:38] *** Quits: def_jam (~eblip@replaced-ip ) (Ping timeout: 252 seconds)
1680 [13:16:30] *** Joins: fflori (~fflori@replaced-ip )
1681 [13:16:36] <Osprey_Jr> nvz: problem is not dimming but bad flickering. ;-)
1682 [13:16:54] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Quit: Leaving)
1683 [13:17:18] <Osprey_Jr> nvz: some older ThinkPads have a PWM backlight with low refresh rates.
1684 [13:17:19] *** Joins: sinaowolabi (~Sina@replaced-ip )
1685 [13:17:27] <nvz> Osprey_Jr: sounds to me like you'd be better off disabling control of the backlight by any power management
1686 [13:17:53] *** Quits: m0u (~m0u@replaced-ip ) (Ping timeout: 246 seconds)
1687 [13:19:08] <Osprey_Jr> nvz: power management works fine. Just setting the proper pwm frequency is required. At system startup used to be fine. But you are right, disabling the pm might help.
1688 [13:19:14] *** Joins: eblip (~eblip@replaced-ip )
1689 [13:20:13] <nvz> you can't so easily force other tools to do things differently but you could disable them and put together your own means of doing things
1690 [13:20:40] <nvz> Osprey_Jr: what model do you have?
1691 [13:20:47] <Osprey_Jr> nvz: yes, true. T520
1692 [13:21:30] *** Quits: eb0t (~eblip@replaced-ip ) (Ping timeout: 252 seconds)
1693 [13:22:59] *** Joins: ffl^ (ffl@replaced-ip )
1694 [13:23:17] *** Quits: c0rnelius (~c0rnelius@replaced-ip ) (Quit: Leaving)
1695 [13:24:11] <jelly> Nahra: active-backup seems reasonable to try, as ey'po and that URL suggested
1696 [13:24:11] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 246 seconds)
1697 [13:24:48] *** Joins: toxync12 (~toxync12@replaced-ip )
1698 [13:24:50] *** Joins: makaveli7 (~makaveli7@replaced-ip )
1699 [13:26:53] *** Joins: CaptainN (~KevinKeen@replaced-ip )
1700 [13:28:52] <nvz> Osprey_Jr: the arch wiki suggests using udev for this
1701 [13:29:13] <nvz> Osprey_Jr: replaced-url
1702 [13:30:13] *** Joins: Christian75_ (~Christian@replaced-ip )
1703 [13:30:23] <nvz> Osprey_Jr: the three files they use are shown under sources in replaced-url
1704 [13:31:09] <nvz> consists of a udev rule, script, and config file
1705 [13:31:52] <Nahra> jelly: OK. Then let's try it!
1706 [13:32:37] <Osprey_Jr> nvz: Thank you! I will read into that udev topic.
1707 [13:32:51] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 252 seconds)
1708 [13:33:11] *** Quits: zamuro_ (~Samantha@replaced-ip ) (Quit: [IRSSI])
1709 [13:33:11] *** Joins: toxync12 (~toxync12@replaced-ip )
1710 [13:33:25] <nvz> Osprey_Jr: if its useful, someone should probably add it to the thinkwiki cause there is no mention of this issue in the T520 page of thinkwiki
1711 [13:33:37] *** Quits: nav2002 (~nav2002@replaced-ip##) (Quit: Going offline, see ya! (##replaced-url
1712 [13:33:38] *** Quits: Christian75 (~Christian@replaced-ip ) (Ping timeout: 246 seconds)
1713 [13:34:13] *** Parts: jelly (jelly@replaced-ip ) ()
1714 [13:34:20] *** Joins: jelly (jelly@replaced-ip )
1715 [13:34:23] <nvz> I have a lenovo t440 and I have not noticed this issue.. but my screen is not stock.. 1080p wasn't an option on this model.. not sure what kinda screen this kid got to put on here
1716 [13:35:10] <Osprey_Jr> nvz: Good hint! It might also depend on the screen type. This here is a high resolution display.
1717 [13:35:21] *** Joins: krabador (~krabador@replaced-ip )
1718 [13:35:30] *** Joins: fedor_rus (~fedor@replaced-ip )
1719 [13:36:00] *** Parts: fedor_rus (~fedor@replaced-ip ) (";)")
1720 [13:36:09] <nvz> Osprey_Jr: well what I read on arch wiki and lenovo forums does suggest the pwm is display specific.. in that its not the laptop telling it to do this.. the laptop is just saying, hey, adjust your brigtness.. and its the electronics on the display chosing how to handle that request
1721 [13:36:27] <nvz> they are suggesting changing the panel could eliminate this issue
1722 [13:37:14] *** Joins: ilikeyou (uid389024@replaced-ip )
1723 [13:38:53] <nvz> udev does seem logical though, it can respond to events more easily.. and this rule they have on arch seems to respond to any change to the backlight
1724 [13:39:04] <nvz> regardless of what does it
1725 [13:39:45] *** Joins: Haudegen (~quassel@replaced-ip )
1726 [13:41:31] <Osprey_Jr> nvz: Yes, it's the backlight kernel module that manages that. Standard is acpi_video0 kernel module, on intel systems it is intel_backlight.
1727 [13:41:50] *** Quits: jm_ (flier@replaced-ip ) (Ping timeout: 276 seconds)
1728 [13:42:11] <nvz> dpkg, intelpwm is <reply>intelpwm is a nifty udev trick in archlinux for fixing a quirky intel pwm backlight using a udev rule, script, and config file, the three files are available under sources at replaced-url
1729 [13:42:12] <dpkg> nvz: okay
1730 [13:43:02] <nvz> someone should perhaps RFP that for debian.. its a simple enough package
1731 [13:43:13] *** Quits: beinbliss4 (~beinbliss@replaced-ip ) (Ping timeout: 245 seconds)
1732 [13:43:23] *** Joins: jm_ (flier@replaced-ip )
1733 [13:44:25] <Osprey_Jr> nvz: At least the necessary intel-gpu-tools are in the standard debian repositories.
1734 [13:44:51] <nvz> the problem with that udev package they have is, it requires some hacking and knowledge to make sure its set right..
1735 [13:45:17] <nvz> its a good template to solve the problem but doesnt seem to have a tool to aid in getting it set right
1736 [13:45:32] <nvz> or documentation
1737 [13:45:34] <Osprey_Jr> nvz: oha! I've never worked with udevs yet.
1738 [13:46:12] <nvz> udev can be incredibly useful for quirky stuff.. I've done it before but I'm not savvy enough to make it one of my go-to solutions
1739 [13:46:40] <nvz> its more a last-resort for me.. where if you master udev I'm sure you could use it for a lot of things
1740 [13:47:15] <Osprey_Jr> That sounds tempting.
1741 [13:47:27] *** Joins: feitnomore (~elusive@replaced-ip )
1742 [13:47:48] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 245 seconds)
1743 [13:47:49] *** Joins: toxync12- (~toxync12@replaced-ip )
1744 [13:48:06] *** Joins: leshniak (~leshniak@replaced-ip )
1745 [13:48:11] *** Quits: emOne (~emOne@replaced-ip ) (Remote host closed the connection)
1746 [13:48:18] *** Quits: stenrose (~martin@replaced-ip ) (Remote host closed the connection)
1747 [13:49:24] *** Joins: OS-63624 (~OS-63624@replaced-ip )
1748 [13:50:18] *** Joins: Giotis (~Giotis@replaced-ip )
1749 [13:51:02] *** Quits: Giotis (~Giotis@replaced-ip ) (Client Quit)
1750 [13:51:16] <nvz> I've had devices for example that had multiple modes normally switched by proprietary software.. where the device could present as and input or storage device or such..
1751 [13:51:36] <nvz> thats one of the kinds of things udev is for.. and its most common use.. but it has lots of other use cases
1752 [13:52:23] <nvz> you can use it to assure a device gets a consistant device node for example.. match your device by any make/mode/serial/driver etc and make sure it always shows up on /dev/mydevice so you can easily script around it
1753 [13:52:54] *** Joins: goody7 (3d7dfd2c@replaced-ip )
1754 [13:52:58] <goody7> hi
1755 [13:53:16] *** Joins: ahi2 (~ahi2@replaced-ip )
1756 [13:53:52] <nvz> goody7: not yet, but I'm working on it..
1757 [13:53:59] *** Quits: jm_ (flier@replaced-ip ) (Quit: Disconnecting)
1758 [13:54:07] *** Quits: zyun (~zyun@replaced-ip ) (Remote host closed the connection)
1759 [13:54:53] *** Joins: zyun (~zyun@replaced-ip )
1760 [13:55:02] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1761 [13:55:09] <Osprey_Jr> nvz: I'll look into it. In the worst case it will just be a simple user loging script.
1762 [13:55:21] *** Joins: beinbliss4 (~beinbliss@replaced-ip )
1763 [13:55:44] *** Joins: section1 (~section1@replaced-ip )
1764 [13:55:51] <nvz> Osprey_Jr: yeah this seems more thorough as it triggers on access to the kernel driver subsystem and hooks a script ad even provides a simple config file used by the script
1765 [13:56:37] *** Quits: fstd (~fstd@replaced-ip ) (Remote host closed the connection)
1766 [13:56:40] <nvz> replaced-url
1767 [13:56:43] *** Quits: NeuterYourPet (~willy@replaced-ip ) (Remote host closed the connection)
1768 [13:56:44] *** Joins: fstd (~fstd@replaced-ip )
1769 [13:56:46] *** Quits: fstd (~fstd@replaced-ip ) (Changing host)
1770 [13:56:46] *** Joins: fstd (~fstd@replaced-ip )
1771 [13:56:47] <nvz> for general info on writing/reloading rules in debian
1772 [13:56:56] *** Joins: NeuterYourPet (~willy@replaced-ip )
1773 [13:57:06] <Osprey_Jr> nvz: Thank you! :-)
1774 [13:57:08] *** goody7 is now known as goody7_
1775 [13:57:47] *** Quits: Nahra (~Nahra@replaced-ip ) (Ping timeout: 246 seconds)
1776 [13:58:00] *** Quits: bersace (~bersace@replaced-ip ) (Quit: Ping timeout (120 seconds))
1777 [13:58:18] *** Parts: goody7_ (3d7dfd2c@replaced-ip ) ()
1778 [13:58:20] *** Joins: bersace (~bersace@replaced-ip )
1779 [13:58:25] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
1780 [13:58:44] *** Quits: him-cesjf (~cesjf@replaced-ip ) (Excess Flood)
1781 [13:59:14] *** Joins: him-cesjf (~cesjf@replaced-ip )
1782 [13:59:49] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
1783 [14:00:33] *** Quits: eypo (~eypo@replaced-ip ) (Quit: Ex-Chat)
1784 [14:01:52] *** Quits: panga_ (~panga@replaced-ip ) (Quit: Leaving)
1785 [14:02:05] *** Joins: _till_ (~till@replaced-ip )
1786 [14:02:05] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
1787 [14:02:05] *** Joins: _till_ (~till@replaced-ip )
1788 [14:02:18] *** Quits: m1dnight1 (~m1dnight@replaced-ip ) (Quit: WeeChat 2.4)
1789 [14:03:05] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
1790 [14:03:17] *** Quits: oiaohm (~oiaohm@replaced-ip ) (Read error: Connection reset by peer)
1791 [14:03:36] *** Joins: zyun (~zyun@replaced-ip )
1792 [14:03:41] *** Joins: oiaohm (~oiaohm@replaced-ip )
1793 [14:03:44] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Client Quit)
1794 [14:04:24] *** Joins: flo2marsnet (~flo2marsn@replaced-ip )
1795 [14:04:41] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
1796 [14:07:11] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 250 seconds)
1797 [14:07:11] *** Quits: Space_Man (~Space_Man@replaced-ip ) (Remote host closed the connection)
1798 [14:07:48] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
1799 [14:07:57] *** Quits: zeden (~user@replaced-ip ) (Ping timeout: 240 seconds)
1800 [14:08:15] *** leden_ is now known as leden
1801 [14:08:37] *** Joins: zeden (~user@replaced-ip )
1802 [14:08:52] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Client Quit)
1803 [14:09:02] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
1804 [14:09:08] *** Quits: magic_ninja_work (~sparkie1@replaced-ip ) (Ping timeout: 276 seconds)
1805 [14:09:28] *** Joins: strongestAvenger (~jeroen@replaced-ip )
1806 [14:09:34] *** Joins: cdown_ (~cdown@replaced-ip )
1807 [14:09:57] *** Joins: knidos (~knidos@replaced-ip )
1808 [14:10:11] *** Joins: uniqdom (~uniqdom@replaced-ip )
1809 [14:10:41] *** Joins: CrystalMath (~coderain@replaced-ip )
1810 [14:10:45] *** Quits: ensamvarg (~ensamvarg@replaced-ip ) (Quit: ensamvarg)
1811 [14:11:52] *** Quits: WoC (~woc@replaced-ip ) (Remote host closed the connection)
1812 [14:11:57] *** Quits: cdown (~cdown@replaced-ip ) (Ping timeout: 240 seconds)
1813 [14:12:04] *** cdown_ is now known as cdown
1814 [14:12:23] *** Quits: austin987 (~null@replaced-ip ) (Ping timeout: 250 seconds)
1815 [14:12:27] *** Quits: relaxed_ (~relaxed@replaced-ip ) (Ping timeout: 252 seconds)
1816 [14:13:21] *** Parts: OS-63624 (~OS-63624@replaced-ip ) ("Leaving")
1817 [14:14:34] *** Joins: _till_ (~till@replaced-ip )
1818 [14:15:04] *** Joins: cryptodan (~cryptodan@replaced-ip )
1819 [14:15:11] *** Joins: debsan (~debsan@replaced-ip )
1820 [14:16:07] *** Joins: rootha``` (~user@replaced-ip )
1821 [14:16:24] *** Quits: monstar (~mitya@replaced-ip ) (Remote host closed the connection)
1822 [14:16:36] *** Joins: monstar (~mitya@replaced-ip )
1823 [14:16:56] *** Quits: oxek (qjvl@replaced-ip ) (Ping timeout: 240 seconds)
1824 [14:16:57] *** Quits: rootha`` (~user@replaced-ip ) (Ping timeout: 265 seconds)
1825 [14:18:02] *** Quits: xormor (~xormor@replaced-ip ) (Quit: Leaving)
1826 [14:18:38] *** Joins: stenrose (~martin@replaced-ip )
1827 [14:18:56] *** Parts: uniqdom (~uniqdom@replaced-ip ) ("Leaving")
1828 [14:19:22] *** Joins: donofrio (~donofrio@replaced-ip )
1829 [14:20:49] *** Quits: Osprey_Jr (~user@replaced-ip ) (Ping timeout: 265 seconds)
1830 [14:21:01] *** Joins: TotallyNotKim (~TotallyNo@replaced-ip )
1831 [14:21:37] *** Joins: emOne (~emOne@replaced-ip )
1832 [14:23:43] *** Quits: toxync12- (~toxync12@replaced-ip ) (Ping timeout: 265 seconds)
1833 [14:25:37] *** Joins: codetronaut (~codetrona@replaced-ip )
1834 [14:26:01] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 252 seconds)
1835 [14:27:38] <Specialist> hi! I am using /etc/network/interfaces to set up eth0 on Debian / Raspbian Buster: replaced-url
1836 [14:27:47] *** Joins: emOne (~emOne@replaced-ip )
1837 [14:28:03] *** mabgnu is now known as bandali
1838 [14:28:38] *** Quits: Emmanuel_Chanel (~Emmanuel_@replaced-ip ) (Ping timeout: 245 seconds)
1839 [14:29:04] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
1840 [14:29:23] *** Quits: misterwhatever (~misterwha@replaced-ip ) (Quit: misterwhatever)
1841 [14:29:35] *** Joins: Emmanuel_Chanel (~Emmanuel_@replaced-ip )
1842 [14:29:38] *** Joins: toxync12 (~toxync12@replaced-ip )
1843 [14:30:30] *** Joins: austin987 (~null@replaced-ip )
1844 [14:30:55] *** Joins: annadane (~annadane@replaced-ip )
1845 [14:32:19] *** Joins: Akuw (~ajsbox@replaced-ip )
1846 [14:37:21] *** Joins: itacos_ (~icosta@replaced-ip )
1847 [14:37:23] *** Quits: m1dnight_ (~m1dnight@replaced-ip ) (Quit: WeeChat 2.4)
1848 [14:37:23] *** Joins: m1dnight1 (~m1dnight@replaced-ip )
1849 [14:37:44] *** Quits: toli (~toli@replaced-ip ) (Ping timeout: 265 seconds)
1850 [14:37:56] *** Quits: m1dnight1 (~m1dnight@replaced-ip ) (Client Quit)
1851 [14:38:17] *** Joins: m1dnight_ (~m1dnight@replaced-ip )
1852 [14:38:20] *** Joins: marsupapu (~marsupapu@replaced-ip )
1853 [14:39:01] *** debhelper sets mode: +l 1588
1854 [14:39:14] *** Quits: itacos (~icosta@replaced-ip ) (Ping timeout: 252 seconds)
1855 [14:40:49] *** Joins: zyun (~zyun@replaced-ip )
1856 [14:40:50] *** Quits: oahong (~samigarus@replaced-ip ) (Ping timeout: 246 seconds)
1857 [14:41:06] *** Joins: toli (~toli@replaced-ip )
1858 [14:44:05] *** Joins: thelastjedi (~quassel@replaced-ip )
1859 [14:44:36] *** Joins: AgTh (~b50c6@replaced-ip )
1860 [14:45:35] *** Joins: Peyam (~maroufi@replaced-ip )
1861 [14:45:37] <Peyam> hi
1862 [14:45:54] <Peyam> I have a dictionary with multiple keys. How do I print the second key (Python)
1863 [14:46:17] <Peyam> _source[(name_app, _rtdbName)] = ["Input"]
1864 [14:46:31] <Peyam> how do I print rtdbName?
1865 [14:46:45] *** Joins: Guest43 (c8090341@replaced-ip )
1866 [14:46:58] <Guest43> hi!
1867 [14:47:06] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
1868 [14:47:24] *** Guest43 is now known as Iarfen
1869 [14:47:45] *** Joins: jak2000 (~jak2000@replaced-ip )
1870 [14:47:54] *** Quits: dafal (~thalo@replaced-ip ) (Quit: Leaving)
1871 [14:48:54] *** Joins: Slashman (~Slash@replaced-ip )
1872 [14:49:00] <ratrace> Peyam: print(_rtdbName) and if you mean something else, you need to give more context. there's also #python
1873 [14:49:29] *** Joins: mmfood (~mmfood@replaced-ip )
1874 [14:50:26] *** Quits: emOne (~emOne@replaced-ip ) (Remote host closed the connection)
1875 [14:51:15] *** Quits: marsupapu (~marsupapu@replaced-ip ) (Remote host closed the connection)
1876 [14:51:30] *** Joins: cryptodan (~cryptodan@replaced-ip )
1877 [14:53:16] *** Joins: abspython (~abspython@replaced-ip )
1878 [14:53:20] *** Quits: monstar (~mitya@replaced-ip ) (Ping timeout: 276 seconds)
1879 [14:53:58] <abspython> Where to get help regarding Debian Packaging?
1880 [14:54:26] *** Joins: greycat (~wooledg@replaced-ip )
1881 [14:54:28] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 245 seconds)
1882 [14:54:59] *** Quits: george959 (~george959@replaced-ip ) (Quit: WeeChat 2.3)
1883 [14:56:39] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
1884 [14:57:07] <annadane> abspython, #debian-mentors on irc.oftc.net for packages to be included in debian, or #packaging (also oftc) for generic questions, though i suppose it may be ok to ask here too?
1885 [14:57:09] *** Quits: abspython (~abspython@replaced-ip ) (Quit: leaving)
1886 [14:57:18] <annadane> :/
1887 [14:58:02] *** Quits: Gaaab (~Gaaab@replaced-ip ) (Ping timeout: 265 seconds)
1888 [14:58:55] <hjarvard> abspython, I'm also trying to get into packaging and this is the most comprehensive guide I came up with replaced-url
1889 [14:59:04] *** Joins: oahong (~samigarus@replaced-ip )
1890 [14:59:22] <annadane> hjarvard, abspython left
1891 [14:59:28] <hjarvard> that didn't go well
1892 [14:59:36] <hjarvard> annadane, yep
1893 [14:59:55] <annadane> and yeah i could've just linked that instead
1894 [15:00:16] <annadane> well, freenode has memoserv, so i'll just message them
1895 [15:00:49] *** Joins: milkt (~debian@replaced-ip )
1896 [15:01:21] *** Joins: cryptodan (~cryptodan@replaced-ip )
1897 [15:01:22] <annadane> OFTC doesn't, which is annoying
1898 [15:02:18] *** Trieste_ is now known as Trieste
1899 [15:02:48] *** Joins: blackes__ (~blackest_@replaced-ip )
1900 [15:03:52] *** Joins: jak2000 (~jak2000@replaced-ip )
1901 [15:04:15] <hjarvard> annadane, that's cool feature, I didn't know irc can do that
1902 [15:05:18] *** Quits: blackest_mamba (~blackest_@replaced-ip ) (Ping timeout: 245 seconds)
1903 [15:06:02] *** Joins: m1sosoup (~m1sosoup@replaced-ip )
1904 [15:06:38] *** Quits: kzimmermann (~Thunderbi@replaced-ip ) (Quit: kzimmermann)
1905 [15:06:42] *** Joins: kzimmermann1 (~Thunderbi@replaced-ip )
1906 [15:09:03] *** kzimmermann1 is now known as kzimmermann
1907 [15:10:15] *** Joins: Gaaab (~Gaaab@replaced-ip )
1908 [15:10:23] *** Quits: jfb4 (~jfb4@replaced-ip ) (Ping timeout: 252 seconds)
1909 [15:10:53] *** Joins: jfb4 (~jfb4@replaced-ip )
1910 [15:11:45] *** Quits: Zongva (~ole@replaced-ip ) (Ping timeout: 250 seconds)
1911 [15:12:46] *** Quits: diogenes_ (~diogenes_@replaced-ip ) (Remote host closed the connection)
1912 [15:13:16] *** Quits: toxync12 (~toxync12@replaced-ip##) (Quit: ZNC 1.7.4 - ##replaced-url
1913 [15:13:57] *** Joins: toxync12 (~toxync12@replaced-ip )
1914 [15:17:05] *** Joins: pjutier (548ede60@replaced-ip )
1915 [15:18:31] *** Joins: dataCobra (~dataCobra@replaced-ip )
1916 [15:19:01] *** debhelper sets mode: +l 1594
1917 [15:21:22] *** Joins: lolpop (~lolpop@replaced-ip )
1918 [15:22:00] *** Quits: KaitoDaumoto (~Frat@replaced-ip ) (Remote host closed the connection)
1919 [15:23:00] *** Quits: BrianG61UK (~BrianG61U@replaced-ip ) (Read error: Connection reset by peer)
1920 [15:25:30] *** Quits: mumixam (james@replaced-ip ) (Quit: mumixam)
1921 [15:25:51] *** Joins: emOne (~emOne@replaced-ip )
1922 [15:25:51] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
1923 [15:25:51] *** Joins: emOne (~emOne@replaced-ip )
1924 [15:26:12] *** Joins: mumixam (james@replaced-ip )
1925 [15:27:42] *** Joins: mtn (~mtn@replaced-ip )
1926 [15:28:52] *** Quits: fflori (~fflori@replaced-ip ) (Remote host closed the connection)
1927 [15:29:40] *** Joins: emOne_ (~emOne@replaced-ip )
1928 [15:29:42] *** Quits: thelastjedi (~quassel@replaced-ip ) (Remote host closed the connection)
1929 [15:29:44] *** Quits: Peyam (~maroufi@replaced-ip ) (Ping timeout: 276 seconds)
1930 [15:29:57] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 250 seconds)
1931 [15:32:25] *** Quits: tyranny12 (~blarg@replaced-ip ) (Read error: Connection reset by peer)
1932 [15:32:47] *** Quits: leshniak (~leshniak@replaced-ip ) (Quit: WeeChat 2.3)
1933 [15:33:14] *** Joins: tyranny12 (~blarg@replaced-ip )
1934 [15:33:25] *** Joins: engine20191 (~engine201@replaced-ip )
1935 [15:34:28] *** Quits: Gaaab (~Gaaab@replaced-ip ) (Ping timeout: 245 seconds)
1936 [15:37:19] *** Quits: codetronaut (~codetrona@replaced-ip ) (Ping timeout: 250 seconds)
1937 [15:37:48] *** Quits: internat (biteme2@replaced-ip ) (Ping timeout: 245 seconds)
1938 [15:38:15] *** Joins: internat (biteme2@replaced-ip )
1939 [15:38:59] *** Joins: eXSiR (~eXSiR@replaced-ip )
1940 [15:39:21] *** Parts: eXSiR (~eXSiR@replaced-ip ) ()
1941 [15:42:07] *** Quits: makaveli7 (~makaveli7@replaced-ip ) (Quit: WeeChat 2.6)
1942 [15:42:44] *** Quits: sasukeskapa (~sasukeska@replaced-ip ) (Ping timeout: 276 seconds)
1943 [15:42:57] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
1944 [15:43:14] *** Quits: ^Obi-Wan^ (~obi-wan@replaced-ip##) (Quit: ZNC by prozac - ##replaced-url
1945 [15:43:14] *** Joins: timahvo1 (~rogue@replaced-ip )
1946 [15:43:15] *** Quits: timahvo1 (~rogue@replaced-ip ) (Read error: Connection reset by peer)
1947 [15:43:17] *** Joins: RebelCoder (~RebelCode@replaced-ip )
1948 [15:43:23] *** Joins: LtL (~ltl@replaced-ip )
1949 [15:43:34] *** Joins: Obi-Wan (~obi-wan@replaced-ip )
1950 [15:43:58] *** Joins: hugh_marera (~hugh@replaced-ip )
1951 [15:44:32] *** Quits: sdns (~swordfish@replaced-ip ) (Quit: Leaving)
1952 [15:46:45] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
1953 [15:47:38] *** Joins: Me3kAndroid (~me3kandro@replaced-ip )
1954 [15:47:56] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 276 seconds)
1955 [15:49:01] *** debhelper sets mode: +l 1588
1956 [15:49:20] *** Quits: dataCobra (~dataCobra@replaced-ip ) (Quit: WeeChat 2.3)
1957 [15:49:26] *** Parts: Me3kAndroid (~me3kandro@replaced-ip ) ()
1958 [15:49:53] *** Quits: kzimmermann (~Thunderbi@replaced-ip ) (Ping timeout: 250 seconds)
1959 [15:50:32] *** Joins: m0u (~m0u@replaced-ip )
1960 [15:51:26] *** Joins: tradar (~tradar@replaced-ip )
1961 [15:53:03] *** Joins: Jerrynicki (~niklas@replaced-ip )
1962 [15:54:24] *** Quits: lolpop (~lolpop@replaced-ip ) (Quit: Leaving)
1963 [15:54:31] *** Joins: sasukeskapa (~sasukeska@replaced-ip )
1964 [15:54:35] *** Quits: m1sosoup (~m1sosoup@replaced-ip ) (Ping timeout: 265 seconds)
1965 [15:54:39] *** Quits: Namarrgon (~glei@replaced-ip ) (Quit: WeeChat 2.6)
1966 [15:54:54] *** Quits: jubo2 (~jubz@replaced-ip ) (Quit: Konversation terminated!)
1967 [15:55:41] *** Joins: m1sosoup (~m1sosoup@replaced-ip )
1968 [15:56:00] *** Joins: tw (~tw@replaced-ip )
1969 [15:56:46] *** Quits: strongestAvenger (~jeroen@replaced-ip ) (Quit: Konversation terminated!)
1970 [15:56:46] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
1971 [15:56:48] *** Quits: melpy (~melpy@replaced-ip ) (Remote host closed the connection)
1972 [15:56:54] *** Joins: mtn (~mtn@replaced-ip )
1973 [15:57:30] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
1974 [15:58:17] *** Joins: HZun (~HZun@replaced-ip )
1975 [15:58:34] *** Joins: Namarrgon (~glei@replaced-ip )
1976 [15:59:35] *** SuperKaramba is now known as BenderRodriguez
1977 [15:59:47] *** Joins: melpy (~melpy@replaced-ip )
1978 [16:00:07] *** Joins: alonkli (~alonkli@replaced-ip )
1979 [16:01:13] *** Joins: alonkli12 (~alonkli@replaced-ip )
1980 [16:01:50] *** Joins: huwjr (~huwjr@replaced-ip )
1981 [16:02:11] *** Quits: hugh_marera (~hugh@replaced-ip ) (Quit: Konversation terminated!)
1982 [16:02:24] *** Guest75000 is now known as matt_
1983 [16:04:07] *** Joins: terminalator (terminalat@replaced-ip )
1984 [16:04:19] <colo-work> what's responsible for setting the content of "/etc/papersize"?
1985 [16:04:33] <petn-randall> colo-work: I'm guessing the admin.
1986 [16:05:13] <greycat> I think the installer used to prompt you for it, once upon a time.
1987 [16:05:17] <colo-work> according to dpkg-query, it doesn't belong to any package. where does it default come from, then?
1988 [16:05:43] <colo-work> (I'm guessing it's locale-dependent, but I'd like to take a look under the hood :))
1989 [16:05:51] <greycat> grep -r papersize /var/lib/dpkg/info/
1990 [16:06:12] <Habbie> that turns up libpaper1 for me
1991 [16:06:15] <greycat> looks like "libpaper1" is the main dude
1992 [16:06:33] *** Quits: m0u (~m0u@replaced-ip ) (Ping timeout: 245 seconds)
1993 [16:06:40] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
1994 [16:08:21] *** Quits: Jerrynicki (~niklas@replaced-ip ) (Remote host closed the connection)
1995 [16:08:24] *** Joins: n4dir (~n4dir@replaced-ip )
1996 [16:09:32] *** Joins: Gaaab (~Gaaab@replaced-ip )
1997 [16:10:20] *** Joins: infrastructule (~tutule@replaced-ip )
1998 [16:10:55] *** Joins: heidie-fr (~beaver@replaced-ip )
1999 [16:11:59] *** Quits: Immanuel (~Manu@replaced-ip ) (Ping timeout: 276 seconds)
2000 [16:12:19] *** Joins: jak2000 (~jak2000@replaced-ip )
2001 [16:14:00] *** Joins: Immanuel (~Manu@replaced-ip )
2002 [16:14:15] *** Joins: Peyam (~maroufi@replaced-ip )
2003 [16:16:36] *** Joins: marsupapu (~marsupapu@replaced-ip )
2004 [16:16:38] *** Quits: tyranny12 (~blarg@replaced-ip ) (Read error: Connection reset by peer)
2005 [16:16:55] *** oerheks1 is now known as oerheks
2006 [16:17:11] *** Quits: ledixus (ledixus@replaced-ip ) (Ping timeout: 276 seconds)
2007 [16:17:55] *** Joins: tyranny12 (~blarg@replaced-ip )
2008 [16:19:01] *** debhelper sets mode: +l 1595
2009 [16:19:50] *** Quits: _aeris_ (~aeris@replaced-ip ) (Remote host closed the connection)
2010 [16:19:53] *** Joins: ledixus (ledixus@replaced-ip )
2011 [16:20:29] *** Joins: _aeris_ (~aeris@replaced-ip )
2012 [16:21:19] *** Quits: Pjusur1 (~Pjusur@replaced-ip ) (Quit: Leaving)
2013 [16:25:08] *** Joins: stephentt (~stephentt@replaced-ip )
2014 [16:25:11] *** Quits: stephentt (~stephentt@replaced-ip ) (Remote host closed the connection)
2015 [16:29:52] *** Quits: thiras (~thiras@replaced-ip ) (Ping timeout: 265 seconds)
2016 [16:30:11] *** Joins: dastier_ (~dastier@replaced-ip )
2017 [16:30:21] *** Quits: dastier_ (~dastier@replaced-ip ) (Remote host closed the connection)
2018 [16:30:46] *** Joins: dastier_ (~dastier@replaced-ip )
2019 [16:33:06] *** Quits: drzacek (~drzacek@replaced-ip ) (Quit: Leaving)
2020 [16:34:01] *** Joins: Ticho_ (~Ticho@replaced-ip )
2021 [16:34:22] *** Joins: orzen (~orz@replaced-ip )
2022 [16:35:18] *** Quits: m1sosoup (~m1sosoup@replaced-ip ) (Remote host closed the connection)
2023 [16:35:43] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 245 seconds)
2024 [16:35:45] *** Joins: m1sosoup (~m1sosoup@replaced-ip )
2025 [16:35:50] *** Joins: Osprey_Jr (~user@replaced-ip )
2026 [16:36:15] *** Quits: mc2 (~mc2@replaced-ip ) (Ping timeout: 250 seconds)
2027 [16:36:41] *** Quits: sputnik (kli0rf@replaced-ip ) (Ping timeout: 250 seconds)
2028 [16:37:04] *** Joins: mc2 (~mc2@replaced-ip )
2029 [16:37:05] <ratrace> Buster now comes with only one IO scheduler? mq-deadline? there's no more (use for) CFQ?
2030 [16:37:45] *** Joins: Ticho (~Ticho@replaced-ip )
2031 [16:37:51] *** Joins: sputnik (~kli0rf@replaced-ip )
2032 [16:37:59] <ksk> mhm, a quick websearch offered: "For Ubuntu 19.10 with Linux 5.3 the deadline, cfq and noop I/O schedulers are deprecated. "
2033 [16:38:01] *** Quits: Peyam (~maroufi@replaced-ip ) (Ping timeout: 252 seconds)
2034 [16:38:06] <ksk> not that buster has kernel 5.X, but..
2035 [16:38:39] <ratrace> Huh, let me rephrase that question. I see CFQ is in the kernel config, and even made default: CONFIG_DEFAULT_IOSCHED="cfq" but, /sys/block/<device>/queue/scheduler shows only mq-deadline and none
2036 [16:39:19] <ratrace> and devices I checked are both spinning rust and ssd, they all show mq-deadline
2037 [16:39:36] <jelly> ratrace: isn't there also "kyber"
2038 [16:39:55] <ratrace> jelly: yes in config: CONFIG_MQ_IOSCHED_KYBER=m not in the /sys output
2039 [16:39:56] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 276 seconds)
2040 [16:40:05] <jelly> modprobe kyber-iosched ?
2041 [16:40:13] <ratrace> I think I read somewhere that with mq-* schedulers, cfq is not considered by the kernel
2042 [16:40:48] <jelly> single queue ioschedulers cant work with multiqueue *something* *mumble*
2043 [16:41:35] <ratrace> yes so I'm guessing that mq-* stuff is recent, and deprecates single queue ones
2044 [16:41:41] *** Joins: pie3 (~pieee@replaced-ip )
2045 [16:41:44] <ratrace> found this that kinda implies it: replaced-url
2046 [16:42:22] <jelly> there's probably a boot time param to go back to single queue *mumble* and then you get back those ioscheds
2047 [16:42:26] *** Joins: ChmEarl (~chmearl@replaced-ip )
2048 [16:42:55] <ratrace> no that I want them specifically, just trying to understand what's going on and what's better -- I'm assuming this mq-deadline default is better because it's default
2049 [16:43:04] <ratrace> not* that
2050 [16:43:23] *** Joins: NecessaryEvil (~Necessary@replaced-ip )
2051 [16:43:27] <jelly> it can hardly be worse than historically buggy cfq
2052 [16:44:02] *** Quits: han-solo (~han-solo@replaced-ip ) (Quit: leaving)
2053 [16:44:03] <ratrace> ah don't jinx it now :)
2054 [16:44:13] <ratrace> it CAN be worse. always :)
2055 [16:44:30] <greycat> yeah, it's not even on fire yet
2056 [16:44:40] <ratrace> don't forget that mq* caused filesystem corruption at the dawn of 4.19 kernel, just before buster became stable
2057 [16:44:43] *** Joins: towo` (~towo@replaced-ip )
2058 [16:44:53] <ratrace> just = few months
2059 [16:45:59] *** Joins: thiras (~thiras@replaced-ip )
2060 [16:46:01] <ratrace> ref: replaced-url
2061 [16:46:18] <jelly> new shit is buggy, that's normal. cfq having never worked well is a thing that spans probably a decade of kernels
2062 [16:46:43] *** Joins: Giotis (~Giotis@replaced-ip )
2063 [16:47:15] *** Quits: NecessaryEvil (~Necessary@replaced-ip ) (Remote host closed the connection)
2064 [16:47:35] *** Quits: e1z0 (~null@replaced-ip ) (Changing host)
2065 [16:47:35] *** Joins: e1z0 (~null@replaced-ip )
2066 [16:49:38] <jelly> I think coworker has found about that before uh, 2008 on some fairly busy apache+caching frontends. We've basically been setting elevator=deadline at work ever since
2067 [16:49:39] <orzen> Hi, just ran into a problem while upgrading. I'm running Sid and the upgrade will bring in kernel 5.3.0 and aufs-dkms can't build since it's dkms.conf is specifying kernel 5.2.*. I think this is causing /etc/kernel/postinst.d/initramfs-tools to stall further in the upgrade process. How should I handle this?
2068 [16:50:03] <jelly> !debian-nexy
2069 [16:50:07] <jelly> !debian-next
2070 [16:50:07] <dpkg> #debian-next is the channel for testing/unstable support on the OFTC network (irc.oftc.net), *not* on freenode. If you get "Cannot join #debian-next (Channel is invite only)." it means you did not read it's on irc.oftc.net.
2071 [16:50:15] <orzen> ty
2072 [16:50:45] <jelly> orzen: ^ ask there. Don't upgrade stuff that is broken or remove broken stuff if you don't need it.
2073 [16:51:16] *** Joins: happycrappy (~mes@replaced-ip )
2074 [16:51:16] *** Joins: gvth (~cell@replaced-ip )
2075 [16:51:20] <orzen> jelly: I relised it was broken during the upgrade
2076 [16:51:23] <annadane> speaking of bugs, sid questions!
2077 [16:51:33] <gvth> Hi; is btrfs stable enough for productive use?
2078 [16:51:38] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 276 seconds)
2079 [16:51:47] <jelly> orzen: thank you for running sid and findig bugs so that us normal users get releases of stable almost every two years on the clock.
2080 [16:51:59] <ratrace> gvth: nope. replaced-url
2081 [16:52:03] *** Joins: makaveli7 (~makaveli7@replaced-ip )
2082 [16:52:10] *** Joins: Ticho (~Ticho@replaced-ip )
2083 [16:52:33] *** Joins: itamarst (uid165457@replaced-ip )
2084 [16:52:38] *** Joins: mtn (~mtn@replaced-ip )
2085 [16:52:48] <orzen> jelly: this is the first time I've had a bug and I've been running sid for 4 years on this machine
2086 [16:53:36] <ratrace> lucky Luke
2087 [16:53:51] <jelly> orzen: so other people are better at finding bugs than you. Get to it!
2088 [16:54:49] *** Joins: Ticho_ (~Ticho@replaced-ip )
2089 [16:56:12] *** Joins: monstar (~mitya@replaced-ip )
2090 [16:56:37] *** Joins: _DeLa_1 (~Thunderbi@replaced-ip )
2091 [16:56:50] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 276 seconds)
2092 [16:57:00] *** Joins: BlueByte (~walther@replaced-ip )
2093 [16:57:29] *** Quits: _DeLa_1 (~Thunderbi@replaced-ip ) (Client Quit)
2094 [16:58:23] *** Quits: vlad-k_ (~Vladislav@replaced-ip ) (Ping timeout: 265 seconds)
2095 [16:59:01] *** debhelper sets mode: +l 1605
2096 [17:00:07] <gvth> ratrace: thanks for the link
2097 [17:00:57] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 240 seconds)
2098 [17:01:17] *** Quits: NetTerminalGene (~NetTermin@replaced-ip ) (Ping timeout: 265 seconds)
2099 [17:01:21] <ratrace> gvth: too many bugs and even more (undocumented) gotchas you have to learn. pass.
2100 [17:01:30] *** Quits: happycrappy (~mes@replaced-ip ) (Read error: Connection reset by peer)
2101 [17:02:25] *** Quits: winy (~vince@replaced-ip ) (Quit: Leaving.)
2102 [17:02:45] *** Joins: OS-55776 (~OS-55776@replaced-ip )
2103 [17:03:05] <gvth> ratrace: I mean... btrfs is being developed upon for years... I am wondering when it will be somewhat stable...
2104 [17:03:12] *** Joins: m0u (~m0u@replaced-ip )
2105 [17:03:15] <greycat> Maybe never.
2106 [17:03:37] <gvth> greycat: so what will be the successor to ext4?
2107 [17:03:38] *** Quits: RebelCoder (~RebelCode@replaced-ip ) (Ping timeout: 246 seconds)
2108 [17:03:40] *** Joins: jak2000 (~jak2000@replaced-ip )
2109 [17:03:53] <ratrace> gvth: xfs probably. since red hat dictates those terms....
2110 [17:04:12] *** Joins: milkt_ (~debian@replaced-ip )
2111 [17:04:30] <gvth> ratrace: why does redhat dictate what Debian uses as standard?
2112 [17:04:54] <jelly> gvth: ext4 is successor to ext4. Upstream has been adding and fixing features for the last 10 years.
2113 [17:05:04] <jelly> same with xfs
2114 [17:05:35] <ratrace> gvth: because debian doesn't want to go against the upstream. besides, btrfs never was supposed to be successor to ext4. their use cases are orhtogonal, one would say
2115 [17:05:52] *** Quits: milkt_ (~debian@replaced-ip ) (Client Quit)
2116 [17:06:12] <jelly> gvth: because RedHat is where (many/most) actual devs doing actual coding for things like filesystems are; also testing on actual hardware.
2117 [17:06:16] *** Joins: milkt_ (~debian@replaced-ip )
2118 [17:06:18] *** Quits: milkt_ (~debian@replaced-ip ) (Client Quit)
2119 [17:07:08] *** Quits: milkt (~debian@replaced-ip ) (Ping timeout: 260 seconds)
2120 [17:07:14] * jelly really likes that one ext4/e2fsprogs exception in Debian
2121 [17:07:18] *** Joins: Ticho (~Ticho@replaced-ip )
2122 [17:08:19] *** baymax- is now known as bay-max
2123 [17:08:19] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 250 seconds)
2124 [17:08:23] *** Quits: s7r (~s7r@replaced-ip ) (Read error: Connection reset by peer)
2125 [17:08:42] *** Joins: f476 (~f476@replaced-ip )
2126 [17:08:50] <ratrace> jelly: exception?
2127 [17:08:52] <annadane> i like how much you can trust debian. every time i feel there might be something better, i end up going back to debian and its defaults
2128 [17:09:17] <annadane> like the choice to use ext4 instead of btrfs or zfs or the newest shiny toy though yeah i understand zfs is more bsd land
2129 [17:09:53] <ratrace> annadane: quite the contrary, zfs on linux has become THE reference openzfs implementation
2130 [17:09:54] *** Quits: f476_ (~f476@replaced-ip ) (Read error: Connection reset by peer)
2131 [17:09:58] *** Quits: wytchmaster (~wytchmast@replaced-ip##) (Quit: ##replaced-url
2132 [17:10:10] *** Joins: Ticho_ (~Ticho@replaced-ip )
2133 [17:10:19] <jelly> ratrace: an upstream dev that is also a DD and doing stuff within Debian
2134 [17:10:29] *** Joins: f476_ (~f476@replaced-ip )
2135 [17:10:32] <ratrace> jelly: ah
2136 [17:11:10] *** Joins: jasonwc (~jasonwc@replaced-ip )
2137 [17:11:24] *** Quits: emOne_ (~emOne@replaced-ip ) (Remote host closed the connection)
2138 [17:11:38] *** Joins: BCMM (~BCMM@replaced-ip )
2139 [17:11:51] <ratrace> So... when is Debian gonna drop i386? *grin* (note the author) replaced-url
2140 [17:12:13] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 250 seconds)
2141 [17:12:50] *** Joins: Ticho (~Ticho@replaced-ip )
2142 [17:13:31] *** Quits: f476 (~f476@replaced-ip ) (Ping timeout: 250 seconds)
2143 [17:13:36] *** Quits: den_erpel (~den_erpel@replaced-ip ) (Ping timeout: 240 seconds)
2144 [17:14:19] *** Quits: chele (~chele@replaced-ip ) (Quit: Leaving)
2145 [17:14:29] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 246 seconds)
2146 [17:14:50] *** Quits: brettgilio (~brettgili@replaced-ip ) (Ping timeout: 246 seconds)
2147 [17:15:09] *** Joins: dvs (~hibbard@replaced-ip )
2148 [17:16:13] <ratrace> annadane: also, surprisingly, other than freebsd where it's not default iirc, no other bsd supports zfs unless they're a fork of freebsd. openbsd doesn't. netbsd doesn't (although it's a WIP). dragonfly has its own hammer.
2149 [17:16:14] *** Joins: nmapper (~nmapper@replaced-ip )
2150 [17:16:20] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 276 seconds)
2151 [17:16:39] *** Joins: Ticho_ (~Ticho@replaced-ip )
2152 [17:16:44] <annadane> ufs is default, yeah
2153 [17:17:02] <jelly> ratrace: I hope never, there's still no decent in-place upgrade path
2154 [17:17:12] <annadane> also the fact zfs *needs* a lot of RAM...
2155 [17:17:33] <ratrace> jelly: "upgrade"? what upgrade? I'm assuming people run i386 because they don't have 64-bit hw
2156 [17:17:54] <ratrace> annadane: no, it needs 64MB at minimum
2157 [17:17:57] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 240 seconds)
2158 [17:18:03] <ratrace> it _thrives_ on more RAM, yes, but doesn't strictly need it
2159 [17:18:31] *** Joins: s7r (~s7r@replaced-ip )
2160 [17:18:46] <ratrace> jelly: of course I don't mean multilib, even though that could be culled to support only major use cases like wine, steam and a few others
2161 [17:19:36] *** Quits: nmapper (~nmapper@replaced-ip ) (Quit: WeeChat 2.6)
2162 [17:19:47] <jelly> ratrace: dpkg --print-architecture = i386 here.
2163 [17:19:56] <tradar> what filesisyem is the 'best' for USB flash pen drives and SSD?
2164 [17:20:00] <hjarvard> I hope bcachefs will get into mainline in the near future
2165 [17:20:14] *** Quits: Trieste (~T@replaced-ip ) (Ping timeout: 276 seconds)
2166 [17:20:15] <tradar> filesystem*
2167 [17:20:21] *** Quits: y0kowka (~y0kowka@replaced-ip ) (Quit: Leaving)
2168 [17:21:11] <jelly> ratrace: had amd64 capable hw since 2006ish
2169 [17:21:42] <ratrace> jelly: then whyyyy
2170 [17:21:52] *** Joins: s7r_ (~s7r@replaced-ip )
2171 [17:21:57] *** Quits: FightingFalcon (~ff@replaced-ip ) (Ping timeout: 240 seconds)
2172 [17:22:02] *** Joins: Trieste (~T@replaced-ip )
2173 [17:22:07] <jelly> ratrace: I don't want to reinstall.
2174 [17:22:18] *** Joins: codetronaut (~codetrona@replaced-ip )
2175 [17:22:24] <ratrace> hjarvard: a fs done by ONE dev trying to be feature-compatible with decade old (paid) team effort that did ZFS or BTRFS? maybe in 20-30 years
2176 [17:22:31] <jelly> I think I should not _have to_ reinstall.
2177 [17:22:46] *** Quits: s7r (~s7r@replaced-ip ) (Read error: Connection reset by peer)
2178 [17:22:46] *** s7r_ is now known as s7r
2179 [17:22:47] *** Quits: monstar (~mitya@replaced-ip ) (Remote host closed the connection)
2180 [17:22:50] *** Quits: l9 (~muad@replaced-ip ) (Ping timeout: 240 seconds)
2181 [17:23:11] <ratrace> jelly: maybe you should and get rid of ze decade(s) old cruft :)
2182 [17:23:12] <jelly> and the half-dozen howtos to do it in-place are hacks really
2183 [17:23:18] *** Joins: monstar (~mitya@replaced-ip )
2184 [17:23:28] <hjarvard> ratrace: oh well :(
2185 [17:23:34] <jelly> ratrace: maybe I shouldn't use Debian then
2186 [17:24:31] *** Joins: Theroxat (~quassel@replaced-ip )
2187 [17:25:11] *** Quits: enko (~enko@replaced-ip ) (Remote host closed the connection)
2188 [17:25:56] *** Quits: gierdo (~Dominik_G@replaced-ip ) (Ping timeout: 265 seconds)
2189 [17:27:12] *** Joins: milkt (~debian@replaced-ip )
2190 [17:27:40] *** Joins: _till_ (~till@replaced-ip )
2191 [17:27:41] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
2192 [17:27:41] *** Joins: _till_ (~till@replaced-ip )
2193 [17:27:53] <gvth> I am also interested in the answer to tradar's question: What filesystem is recommended nowadays for usb flash drives?
2194 [17:28:15] *** Joins: archangel (~archangel@replaced-ip )
2195 [17:28:46] <ratrace> I just use ext4. there's also F2FS that's supposedly designed specifically for flash, but I never used it
2196 [17:29:01] *** debhelper sets mode: +l 1599
2197 [17:29:02] *** Joins: zyley (~zyley@replaced-ip )
2198 [17:29:33] <gvth> ratrace: do you also use ext4 for your main productive desktop/laptop?
2199 [17:29:38] <tradar> maybe ext2 ĸeĸ
2200 [17:29:38] *** Joins: MenschZwoNull__ (~MenschZwo@replaced-ip )
2201 [17:29:45] <ratrace> gvth: no, ZFS
2202 [17:29:48] *** Quits: Theroxat (~quassel@replaced-ip ) (Ping timeout: 265 seconds)
2203 [17:30:03] <tradar> ext4 has the journal and that's bad
2204 [17:30:11] <jelly> gvth: if they're cheap, use whatever fs is present on them by default, vfat or even exfat
2205 [17:30:17] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 265 seconds)
2206 [17:30:23] <ratrace> lolwut
2207 [17:30:38] *** Parts: OS-55776 (~OS-55776@replaced-ip ) ("Leaving")
2208 [17:30:40] *** Joins: wanqcrypt (~adilcan@replaced-ip )
2209 [17:30:43] *** Quits: mirage335 (~mirage335@replaced-ip ) (Ping timeout: 245 seconds)
2210 [17:30:46] *** Joins: Theroxat (~quassel@replaced-ip )
2211 [17:31:01] <jelly> gvth: if you're sure the device is a decent SSD with mere usb connectivity, then it does not matter too much
2212 [17:31:10] *** Quits: encod3 (~encod3@replaced-ip ) (Remote host closed the connection)
2213 [17:31:59] *** Quits: milkt (~debian@replaced-ip ) (Client Quit)
2214 [17:32:18] <tradar> i usually use ext2 (ext4 is a bad idea on USB drivers) but i would like to know if somebody knows more about the other filesystems (such as F2FS and NILFS).
2215 [17:32:21] <ratrace> except for that tiny fact whre you lose all the perms and stuff on fat. and much more
2216 [17:32:32] *** Joins: NetTerminalGene (~NetTermin@replaced-ip )
2217 [17:32:40] *** ChanServ sets mode: +o eir
2218 [17:32:41] *** eir sets mode: -bo *!freq@freeshell.de$##not-a-honeypot eir
2219 [17:32:42] *** Quits: archangel (~archangel@replaced-ip ) (Client Quit)
2220 [17:32:50] *** Joins: jordanm (~jordanm@replaced-ip )
2221 [17:32:58] *** Joins: _DeLa_1 (~Thunderbi@replaced-ip )
2222 [17:33:01] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 250 seconds)
2223 [17:33:25] *** Quits: _DeLa_1 (~Thunderbi@replaced-ip ) (Client Quit)
2224 [17:33:36] <ratrace> tradar: do you actually have any numbers that measure the impact of journaling on USB drives? also did you know you could run ext4 with journaling disabled?
2225 [17:33:37] <gvth> jelly: what? On a decent SSD it doesn't matter what fs is on it?
2226 [17:33:40] *** Joins: d-fence (~quassel@replaced-ip )
2227 [17:33:56] *** Joins: zalt (~lambda443@replaced-ip )
2228 [17:34:15] *** Joins: Dibejzer (~Bas@replaced-ip )
2229 [17:34:17] *** Joins: GWM (~GWM@replaced-ip )
2230 [17:34:21] *** Quits: Dibejzer (~Bas@replaced-ip ) (Remote host closed the connection)
2231 [17:34:29] *** Quits: marsupapu (~marsupapu@replaced-ip ) (Remote host closed the connection)
2232 [17:34:44] *** Joins: wildlander (~wildlande@replaced-ip )
2233 [17:34:58] <gvth> ratrace: What the advantage of ext4 with journalling disabled over ext2?
2234 [17:35:11] <gvth> *What's
2235 [17:35:50] *** Joins: milkt (~debian@replaced-ip )
2236 [17:36:34] <jelly> gvth: pretty much. ext4 seems to work and does not introduce _too much_ write multiplication with default settings.
2237 [17:36:35] <tradar> ratrace: it should have some impacts when it is enabled, don't you think so?
2238 [17:36:50] <gvth> Is it possible to create an ext4 fs with journalling disabledin order to not have to disable journalling every time it is mounted?
2239 [17:36:51] <jelly> gvth: make sure you can read SMART and have backups.
2240 [17:37:02] <ratrace> gvth: various features revolving around performance and reliability
2241 [17:37:26] <tradar> gvth: yes with the -O option switch
2242 [17:37:36] <ratrace> tradar: but how much?
2243 [17:37:39] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
2244 [17:38:35] <tradar> ratrace: i don't know. I ask myself "yes or no?", not "how much?". It's just better not to have it, as far as i know.
2245 [17:39:11] <ratrace> tradar: but how do you measure "better". is the speed improvement over benefits of journaling and other ext4 features, worth using ext2
2246 [17:39:12] *** Joins: mtn (~mtn@replaced-ip )
2247 [17:39:50] *** Joins: emOne (~emOne@replaced-ip )
2248 [17:39:53] <tradar> if the hardware lasts longer, yes it is better to do so.
2249 [17:39:53] *** Quits: Theroxat (~quassel@replaced-ip ) (Remote host closed the connection)
2250 [17:39:59] <ratrace> _especially_ for USB drives where reliability is questionable and having some protection against corruption is always good
2251 [17:40:07] <tradar> i use ext2 because it is easier to type mkfs.ext2 ...
2252 [17:40:18] <tradar> than mkfs.ext4 -O ^has_journal ĸeĸ
2253 [17:40:31] * ratrace shrugs
2254 [17:44:00] *** Joins: marsupapu (~marsupapu@replaced-ip )
2255 [17:44:25] *** Joins: bertbob (~bertbob@replaced-ip )
2256 [17:44:56] *** Quits: hjarvard (~hjarvard@replaced-ip ) (Ping timeout: 276 seconds)
2257 [17:45:03] *** Joins: mirage335 (~mirage335@replaced-ip )
2258 [17:45:34] * gvth tests whether what ratrace did works for me, too
2259 [17:45:41] *** Joins: we6jbo (~we6jbo@replaced-ip )
2260 [17:46:01] <ratrace> gvth: ?
2261 [17:46:06] *** Quits: dastier_ (~dastier@replaced-ip ) (Remote host closed the connection)
2262 [17:46:56] <gvth> ratrace: I was just testing whether I recalled correctly the "/me" feature
2263 [17:47:12] *** Quits: Stoot (5a355fa0@replaced-ip ) (Ping timeout: 265 seconds)
2264 [17:47:26] <jelly> tradar: extents are probably worth having even if you need to type 20 characters more for mkfs
2265 [17:47:50] *** mnemonic is now known as Guest28649
2266 [17:47:58] *** Joins: semeion (~semeion@replaced-ip )
2267 [17:48:38] <ratrace> gvth: oh :)
2268 [17:48:47] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 246 seconds)
2269 [17:48:52] *** Quits: mibo (~mibo@replaced-ip ) (Quit: Leaving.)
2270 [17:49:12] <jelly> gvth: btw. if smartctl can't read SMART from some of your usb devices, you can try using the non-free hdsentinel tool instead
2271 [17:49:22] *** Parts: Ankman (~ankman@replaced-ip ) ()
2272 [17:49:46] <gvth> jelly: isn't SMART for hard disk drives only and not for SSDs?
2273 [17:50:11] <tradar> jelly: yes if you need them. But what do you need xatts for, on an USB pen!?
2274 [17:50:11] *** Quits: s7r (~s7r@replaced-ip ) (Ping timeout: 246 seconds)
2275 [17:50:16] *** Quits: Guest28649 (~semeion@replaced-ip ) (Ping timeout: 252 seconds)
2276 [17:50:43] <zerocool> anyone know of an MUA that allows you to download attachments from multiple emails?
2277 [17:51:12] <Habbie> gvth, smartctl is super useful for my NVME
2278 [17:51:14] <zerocool> kmail use to do this, thunderbird use to do this but then required an addon which no longer works
2279 [17:51:33] *** Quits: crivrc (~crivrc@replaced-ip ) (Ping timeout: 265 seconds)
2280 [17:51:33] *** Joins: elkalamar_ (elkalamar@replaced-ip )
2281 [17:51:36] <Habbie> zerocool, i bet mutt could do it
2282 [17:51:39] <jelly> tradar: extents are large allocation units that may help kernel do larger writes on disk, xattrs, "extended attributes", are something different
2283 [17:51:41] *** Quits: zst (~z@replaced-ip ) (Quit: zst)
2284 [17:52:15] <tradar> ah yeah okay... if fact i was asking myself "don't do they exist also on ext2?" ĸeĸ
2285 [17:52:21] <gvth> Habbie: NVME connoted the interface not the type of the drive
2286 [17:52:26] *** Quits: zeden (~user@replaced-ip ) (Quit: WeeChat 2.6)
2287 [17:52:35] *** Joins: Ticho (~Ticho@replaced-ip )
2288 [17:52:51] *** Joins: crivrc (~crivrc@replaced-ip )
2289 [17:52:53] *** Joins: dastier_ (~dastier@replaced-ip )
2290 [17:52:57] <jelly> zerocool: selecting some messages and telling it to "get any/all attachments from all of these and save them" ?
2291 [17:53:02] <Habbie> gvth, fair - but it's not a spinning disk :)
2292 [17:53:17] *** Quits: dastier_ (~dastier@replaced-ip ) (Remote host closed the connection)
2293 [17:53:29] <gvth> Habbie: and you can usr smart on it?
2294 [17:53:32] <gvth> *use
2295 [17:53:34] *** Joins: Jerrynicki (~niklas@replaced-ip )
2296 [17:53:38] <Habbie> gvth, yes
2297 [17:53:40] *** Joins: dastier_ (~dastier@replaced-ip )
2298 [17:53:41] *** Joins: zeden (~user@replaced-ip )
2299 [17:53:47] <Habbie> SMART/Health Information (NVMe Log 0x02, NSID 0xffffffff)
2300 [17:53:49] <Habbie> Critical Warning: 0x00
2301 [17:53:51] <Habbie> Temperature: 44 Celsius
2302 [17:53:53] <Habbie> etc.
2303 [17:53:55] <Habbie> something like 20 params
2304 [17:53:57] *** Quits: elkalamar (elkalamar@replaced-ip ) (Ping timeout: 240 seconds)
2305 [17:54:15] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 250 seconds)
2306 [17:54:16] <ratrace> SMART is not exclusive to spinning rust, why would it be...
2307 [17:54:28] *** Joins: chele (~chele@replaced-ip )
2308 [17:54:36] *** Joins: dtcrshr (~dtcrshr@replaced-ip )
2309 [17:54:47] <ratrace> it literally means "Self-Monitoring, Analysis and Reporting Technology"
2310 [17:54:49] *** Quits: pjutier (548ede60@replaced-ip ) (Remote host closed the connection)
2311 [17:55:34] <gvth> I thought smart was only for spinning pieces of metal
2312 [17:56:14] <ratrace> no
2313 [17:56:15] *** Joins: Degausser (~Degausser@replaced-ip )
2314 [17:56:19] <Habbie> gvth, today you learned!
2315 [17:56:40] <gvth> yes, alot
2316 [17:57:11] *** Joins: zyun (~zyun@replaced-ip )
2317 [17:57:13] *** Parts: orzen (~orz@replaced-ip ) ()
2318 [17:57:16] <ratrace> no, you've learned a lot. NOW you've learned about Alot: replaced-url
2319 [17:57:43] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 250 seconds)
2320 [17:57:48] <greycat> an alot of learning is probably made out of mortarboards
2321 [17:57:57] *** Joins: s7r (~s7r@replaced-ip )
2322 [17:58:04] <ratrace> ditto.
2323 [17:58:14] *** Quits: Funkin-Stoopid (~xavier@replaced-ip ) (Quit: Konversation terminated!)
2324 [17:58:41] <annadane> my day is ruined, thanks ratrace
2325 [17:58:44] <gvth> ratrace: lol
2326 [17:58:55] *** Quits: knidos (~knidos@replaced-ip ) (Remote host closed the connection)
2327 [17:58:58] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: Bin weg.)
2328 [17:59:17] *** Quits: lankanmon (~LKNnet@replaced-ip ) (Ping timeout: 246 seconds)
2329 [17:59:22] *** Joins: knidos (~knidos@replaced-ip )
2330 [17:59:26] *** Quits: pookiethebear (~pookie666@replaced-ip ) (Quit: WeeChat 2.3)
2331 [17:59:53] *** Quits: platvoeten (~platvoete@replaced-ip ) (Ping timeout: 250 seconds)
2332 [18:00:13] <tradar> replaced-url
2333 [18:00:27] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
2334 [18:00:50] *** Quits: s7r (~s7r@replaced-ip ) (Excess Flood)
2335 [18:01:10] *** Joins: lankanmon (~LKNnet@replaced-ip )
2336 [18:01:11] *** Joins: nucleargnat (~nucleargn@replaced-ip )
2337 [18:01:14] *** Joins: aliasnumber10 (~crix@replaced-ip )
2338 [18:01:25] *** Joins: Lord_of_Life_ (~Lord@replaced-ip )
2339 [18:01:26] *** Joins: njka- (~njka-@replaced-ip )
2340 [18:01:37] *** Quits: mmfood (~mmfood@replaced-ip ) (Ping timeout: 240 seconds)
2341 [18:02:03] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2342 [18:02:07] <gvth> just for your information, I wrote alot by mistake. I always try to be as correct as possible when writing as far as my English skills as a native German allow
2343 [18:02:29] *** Quits: Lord_of_Life (~Lord@replaced-ip ) (Ping timeout: 276 seconds)
2344 [18:02:41] <gvth> ^^ excuse if that's not 100% correct English :)
2345 [18:02:43] *** Joins: r01_mage (~Thunderbi@replaced-ip )
2346 [18:02:44] <ratrace> but now you learned a lot about the alot. don't you love #debian? :)
2347 [18:02:47] *** Lord_of_Life_ is now known as Lord_of_Life
2348 [18:04:05] <ratrace> tradar: some benchmarks phoronix ran shows F2FS fail miserably against ext4, being that it's supposed to be designed FOR flash devices... for example replaced-url
2349 [18:04:09] <gvth> I love Debian and #debian alot. That's why I changed to it from windows almost 10 years ago (with about two months of ubuntu in between).
2350 [18:04:15] *** Quits: verm1n (~verm1n@replaced-ip ) (Read error: Connection reset by peer)
2351 [18:04:16] <zerocool> Habbie: i think it will, yeah.
2352 [18:04:43] <gvth> *switched to it
2353 [18:04:59] <zerocool> jelly: 1 attachment from multiple emails, not multiple attachments from one email.
2354 [18:05:00] <ratrace> tradar: also NILFS but it's an older test replaced-url
2355 [18:05:19] <zerocool> DMARC reports, so hundreds of emails
2356 [18:05:27] <zerocool> per any given day
2357 [18:05:39] *** Joins: bertbob (~bertbob@replaced-ip )
2358 [18:05:49] *** Joins: Ericounet (~Eric@replaced-ip )
2359 [18:06:13] *** lemsip is now known as emilsp
2360 [18:06:16] <ratrace> zerocool: for that case you can whip up a parser that extracts mime attachments from the maildirs.
2361 [18:06:24] *** Quits: AquaL1te (~AquaL1te@replaced-ip ) (Quit: leaving)
2362 [18:06:33] <tradar> gvth: replaced-url
2363 [18:06:35] <ratrace> btw, are those spoof attempts reported, or?
2364 [18:06:54] <gvth> tradar: what's the link for?
2365 [18:07:15] <jelly> zerocool: if mime structure is always exactly the same, you can probably whip it up in mutt with macros yeah
2366 [18:07:36] <gvth> tradar: I got a CLI dictionary application
2367 [18:08:04] <gvth> ... on my laptop
2368 [18:08:17] <jelly> zerocool: better thing to do is pipe each mail to a cli MIME tool.
2369 [18:08:31] <jelly> apt-cache search mime attachment ...
2370 [18:08:36] <jelly> ,i ripmime
2371 [18:08:37] <judd> Package ripmime (mail, optional) in buster/amd64: Extract attachments out of MIME encoded emails. Version: 1.4.0.10.debian.1-2; Size: 81.7k; Installed: 191k; Homepage: replaced-url
2372 [18:08:37] *** Joins: mmfood (~mmfood@replaced-ip )
2373 [18:08:50] <jelly> untested.
2374 [18:09:05] *** Quits: beinbliss4 (~beinbliss@replaced-ip ) (Ping timeout: 246 seconds)
2375 [18:09:41] *** Joins: zyun (~zyun@replaced-ip )
2376 [18:10:21] *** Joins: nuclearjam (~nucleargn@replaced-ip )
2377 [18:10:24] *** Quits: nucleargnat (~nucleargn@replaced-ip ) (Read error: Connection reset by peer)
2378 [18:11:08] <tradar> ratrace: i don't understand why it performs so slowly yet it was years ago.
2379 [18:11:56] *** Quits: Osprey_Jr (~user@replaced-ip ) (Quit: leaving)
2380 [18:12:34] <tradar> on the other hand i expect copy-on-write filesystems to perform badly in in-place file modification (which i do not do on USB)
2381 [18:12:51] <tradar> (for large files)
2382 [18:13:20] *** Joins: jhutchins_wk (~jonathan@replaced-ip )
2383 [18:14:04] *** Joins: happycrappy (~mes@replaced-ip )
2384 [18:14:17] <ratrace> tradar: that was my whole point .. are you sure the theoretical benefits actually exist, and outweight other benefits of running a journaled ext4
2385 [18:14:36] <ratrace> tradar: same goes for CoW filesystems. _some_ use cases benefit from it, _some_ don't, regardless of underlying media
2386 [18:14:39] *** Joins: shibboleth (~shibbolet@replaced-ip )
2387 [18:17:33] <tradar> little writings to USB are cached and written on sync/umount so the journal isn't much of help, and when the journal gets written it doesn't look useful to me other than for wearing the memory. I mean, it isn't only me who advocates not to use a journal on USB flash drives :P
2388 [18:17:52] *** Joins: lastrodamo (~lastrodam@replaced-ip )
2389 [18:18:01] *** Joins: s7r (~s7r@replaced-ip )
2390 [18:18:03] <_DeLa_> On my Debian 10 system, there is a "/home/user/" part before opening URLs / external links – which of course results in the links not being opened. This is not the case on my Lubuntu system so I assume it is not application-specific but OS-related. Any advice on how to fix this?
2391 [18:18:05] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2392 [18:18:14] *** Quits: knidos (~knidos@replaced-ip ) (Remote host closed the connection)
2393 [18:18:34] *** Joins: _till_ (~till@replaced-ip )
2394 [18:18:34] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
2395 [18:18:34] *** Joins: _till_ (~till@replaced-ip )
2396 [18:18:44] *** Joins: diniwed (~gavron@replaced-ip )
2397 [18:18:44] *** Joins: knidos (~knidos@replaced-ip )
2398 [18:19:09] *** Joins: FightingFalcon (~ff@replaced-ip )
2399 [18:19:32] <ratrace> _DeLa_: ENOCONTEXT
2400 [18:19:43] <jhutchins_wk> _DeLa_: No, it's not a general systemic problem. Most browsers work as expected. Which browser?
2401 [18:20:01] *** Quits: mortderire (mortderire@replaced-ip ) (Remote host closed the connection)
2402 [18:20:22] *** Joins: verm1n (~verm1n@replaced-ip )
2403 [18:20:31] <zerocool> i remember why i didn't want to use mutt for this
2404 [18:20:43] *** Joins: jubo2 (~jubz@replaced-ip )
2405 [18:20:52] *** Quits: milkt (~debian@replaced-ip ) (Remote host closed the connection)
2406 [18:21:17] *** Quits: zalt (~lambda443@replaced-ip ) (Ping timeout: 240 seconds)
2407 [18:21:24] *** Joins: milkt (~debian@replaced-ip )
2408 [18:21:29] *** Quits: verm1n (~verm1n@replaced-ip ) (Remote host closed the connection)
2409 [18:21:45] <_DeLa_> ratrace: For example: replaced-url
2410 [18:22:12] <ratrace> _DeLa_: what browser? any extensions that might mangle/mess with URLs?
2411 [18:22:46] <_DeLa_> ratrace: Firefox, but add-ons should be the same on both systems
2412 [18:23:37] <_DeLa_> ratrace: Mentioned rambox is an electronjs app btw
2413 [18:23:54] *** Joins: mtn (~mtn@replaced-ip )
2414 [18:23:56] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 276 seconds)
2415 [18:23:58] <ratrace> _DeLa_: wait, it happens both in firefox and in this rambox thing?
2416 [18:24:27] <_DeLa_> ratrace: the link is in rambox, which then tries to open it in firefox
2417 [18:24:31] *** Quits: lastrodamo (~lastrodam@replaced-ip ) (Quit: Quitte)
2418 [18:24:50] *** Joins: zalt (~lambda443@replaced-ip )
2419 [18:25:09] <ratrace> _DeLa_: and how does the actual URL end up in FF? prefixed with file:// ? can you post an example?
2420 [18:25:11] *** Joins: mibo (~mibo@replaced-ip )
2421 [18:26:47] <_DeLa_> ratrace: erm...sorry, my bad: IIRC, no "file://" just a popup- but still in rambox – although it should try to open it in FF as my default browser... will reconstruct the exact situation again tomorrow I hope
2422 [18:27:21] *** Quits: Degausser (~Degausser@replaced-ip ) (Remote host closed the connection)
2423 [18:27:24] <ratrace> _DeLa_: sounds like totally an issue with that rambox app
2424 [18:27:50] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 276 seconds)
2425 [18:29:07] <_DeLa_> ratrace: thanks for your feedback! I will keep an eye on that issue as I "feel" like this has happened before in another context as well... can't remember exactly.... but is on my radar from now on!
2426 [18:30:21] *** Joins: fflori (~fflori@replaced-ip )
2427 [18:30:22] *** Joins: verm1n (~verm1n@replaced-ip )
2428 [18:30:27] <ratrace> _DeLa_: what confuses me is that you said the issue was in Firefox but now you're saying it's not even opening Firefox, but "it should"? anyway, I was aiming at seeing what URL is given to FF, if it starts with file:// then that explains why local fs is tried, and that means whatever invoked FF, mangled th eURL
2429 [18:31:32] *** Joins: Osprey_Jr (~user@replaced-ip )
2430 [18:31:55] *** Joins: Stoot (6dd47876@replaced-ip )
2431 [18:32:02] *** Quits: timur_davletshin (~timur_dav@replaced-ip ) (Remote host closed the connection)
2432 [18:32:18] *** Joins: happycrappy (~mes@replaced-ip )
2433 [18:32:18] <_DeLa_> ratrace: "it should" as it's my default browser ...IIRC, then it's just "/home/user/" and then the correct URL
2434 [18:33:04] <gvth> does anyone know a link to a website listing all the Debian releases with release dates?
2435 [18:33:17] <greycat> !release history
2436 [18:33:17] <dpkg> Named after "Toy Story" characters. Buzz(1.1; 1996-03-14), Rex(1.2; 1996-10-28), Bo(1.3; 1997-05-01), Hamm(2.0; 1998-07-24), Slink(2.1; 1999-03-09), Potato(2.2; 2000-08-15), Woody(3.0; 2002-07-19), Sarge(3.1; 2005-06-06), Etch(4.0; 2007-04-08), Lenny(5.0; 2009-02-14), Squeeze(6.0; 2011-02-06), Wheezy(7; 2013-05-04), Jessie(8; 2015-04-25), Stretch (9; 2017-06-17), Buster (10; 2019-07-06). Next: Bullseye. replaced-url
2437 [18:33:33] <greycat> which leads to replaced-url
2438 [18:33:35] <gvth> greycat: thanks
2439 [18:33:58] <ratrace> _DeLa_: but it's not even opening FF? whatever happens, happens inside this rambox app?
2440 [18:35:00] *** Joins: Tsukimaru (~Tsukimaru@replaced-ip )
2441 [18:35:00] <_DeLa_> ratrace: will reconstruct it ASAP (tomorrow, that might be)
2442 [18:35:21] <annadane> that factoid is going to reach its character limit soon
2443 [18:36:16] <dvs> then stop doing releases
2444 [18:36:20] <gvth> ratrace: oh, as I see, unlike what dpkg posted, the link your provided is out-of-date since the release date for buster is missing
2445 [18:36:29] <annadane> genius. dvs for DPL
2446 [18:36:36] <dvs> heh
2447 [18:37:06] *** Quits: Haohmaru (~Haohmaru@replaced-ip ) ()
2448 [18:37:21] <greycat> "2.22 (last revised 17th June 2017)"
2449 [18:38:35] <gvth> ups, with my last post I wanted to address greycat and not ratrace... sorry...
2450 [18:38:37] *** Quits: Thedarkb-X40 (~beno@replaced-ip ) (Ping timeout: 240 seconds)
2451 [18:39:01] *** debhelper sets mode: +l 1605
2452 [18:39:45] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 250 seconds)
2453 [18:40:57] *** Joins: Ticho (~Ticho@replaced-ip )
2454 [18:41:20] *** Quits: AJ_Z0 (~AJ_Z0@replaced-ip ) (Ping timeout: 265 seconds)
2455 [18:42:06] *** Joins: zamuro (~Samantha@replaced-ip )
2456 [18:42:07] *** Quits: zamuro (~Samantha@replaced-ip ) (Changing host)
2457 [18:42:07] *** Joins: zamuro (~Samantha@replaced-ip )
2458 [18:42:56] *** Quits: flo2marsnet (~flo2marsn@replaced-ip ) (Ping timeout: 240 seconds)
2459 [18:43:35] *** Joins: lilabsence (~RizzoTheR@replaced-ip )
2460 [18:43:37] *** Quits: gordonfish (~gordonfis@replaced-ip ) (Ping timeout: 240 seconds)
2461 [18:43:45] *** Joins: Theroxat (~quassel@replaced-ip )
2462 [18:43:57] *** Joins: AJ_Z0 (~AJ_Z0@replaced-ip )
2463 [18:44:07] *** Quits: huwjr (~huwjr@replaced-ip ) (Quit: huwjr)
2464 [18:44:08] *** Joins: Ticho_ (~Ticho@replaced-ip )
2465 [18:44:32] *** Joins: thePiGrepper (~nagato@replaced-ip )
2466 [18:44:51] *** Quits: wildlander (~wildlande@replaced-ip ) (Quit: Konversation terminated!)
2467 [18:45:08] *** Quits: BCMM (~BCMM@replaced-ip ) (Ping timeout: 246 seconds)
2468 [18:45:28] *** Joins: chimp (~chimp@replaced-ip )
2469 [18:45:37] *** Quits: Specialist (~tg@replaced-ip ) (Ping timeout: 252 seconds)
2470 [18:46:21] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 252 seconds)
2471 [18:47:06] *** Joins: Ticho (~Ticho@replaced-ip )
2472 [18:47:14] *** Quits: holmgren (~magnus@replaced-ip ) (Ping timeout: 246 seconds)
2473 [18:49:03] *** Joins: estrom (estrom@replaced-ip )
2474 [18:49:17] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 276 seconds)
2475 [18:49:51] *** Joins: _till_ (~till@replaced-ip )
2476 [18:49:51] *** Quits: _till_ (~till@replaced-ip ) (Changing host)
2477 [18:49:51] *** Joins: _till_ (~till@replaced-ip )
2478 [18:50:35] *** Quits: terminalator (terminalat@replaced-ip ) (Ping timeout: 250 seconds)
2479 [18:50:43] *** Joins: zyun (~zyun@replaced-ip )
2480 [18:51:41] *** Quits: tekmans13 (~tekmans@replaced-ip ) (Remote host closed the connection)
2481 [18:51:57] *** Quits: spacemanspam (~weechat@replaced-ip ) (Quit: WeeChat 2.6)
2482 [18:52:09] *** Quits: whislock (~whislock@replaced-ip ) (Quit: WeeChat 2.6)
2483 [18:52:15] *** Quits: tradar (~tradar@replaced-ip ) (Quit: tradar)
2484 [18:54:08] *** Joins: whislock (~whislock@replaced-ip )
2485 [18:54:31] *** Joins: Ignacy (~Ignacy@replaced-ip )
2486 [18:54:44] *** Quits: marsupapu (~marsupapu@replaced-ip ) (Remote host closed the connection)
2487 [18:54:44] *** Quits: AJ_Z0 (~AJ_Z0@replaced-ip ) (Read error: Connection reset by peer)
2488 [18:54:55] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 250 seconds)
2489 [18:55:21] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2490 [18:57:37] *** Joins: tekmans13 (~tekmans@replaced-ip )
2491 [18:58:07] *** Quits: emOne (~emOne@replaced-ip ) (Read error: Connection reset by peer)
2492 [18:59:02] *** debhelper sets mode: +l 1599
2493 [18:59:26] *** Joins: AJ_Z0 (~AJ_Z0@replaced-ip )
2494 [18:59:53] <dob1> refering to a question asked time ago I found this replaced-url
2495 [19:00:00] <dob1> (nobody will remember my question)
2496 [19:00:53] *** Joins: Ticho_ (~Ticho@replaced-ip )
2497 [19:01:36] *** Joins: Haudegen (~quassel@replaced-ip )
2498 [19:01:53] *** Joins: turi (~turi@replaced-ip )
2499 [19:02:30] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 252 seconds)
2500 [19:02:35] *** Quits: uNmowed (~Kaede@replaced-ip ) (Read error: Connection reset by peer)
2501 [19:03:05] *** Quits: turi (~turi@replaced-ip ) (Client Quit)
2502 [19:03:24] <chimp> ask it
2503 [19:03:38] *** Joins: zerotech2 (~zerotech@replaced-ip )
2504 [19:03:41] <ratrace> dob1: put echo instead of the last cp
2505 [19:03:57] *** Joins: emOne (~emOne@replaced-ip )
2506 [19:03:57] *** Quits: emOne (~emOne@replaced-ip ) (Changing host)
2507 [19:03:57] *** Joins: emOne (~emOne@replaced-ip )
2508 [19:04:10] *** Joins: zyun (~zyun@replaced-ip )
2509 [19:04:15] *** Quits: emOne (~emOne@replaced-ip ) (Read error: Connection reset by peer)
2510 [19:04:19] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 252 seconds)
2511 [19:04:31] *** Joins: Ticho (~Ticho@replaced-ip )
2512 [19:04:32] *** Joins: emOne (~emOne@replaced-ip )
2513 [19:04:35] *** Quits: ahi2 (~ahi2@replaced-ip ) (Quit: Leaving)
2514 [19:04:48] <dob1> ratrace, I don't like the output, all the filename is split in multiple lines
2515 [19:05:33] *** Quits: makaveli7 (~makaveli7@replaced-ip ) (Quit: WeeChat 2.6)
2516 [19:05:47] *** Joins: l9 (~muad@replaced-ip )
2517 [19:06:26] <ratrace> dob1: so what's the actual problem you wanna solve?
2518 [19:06:27] <dob1> the question was, find dir -type f -name somename and then copy them in a dir, but they have the same name so I like the approach to convert the path in a filename
2519 [19:06:46] <ratrace> convert how?
2520 [19:06:50] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 276 seconds)
2521 [19:06:55] <greycat> We asked this last week...
2522 [19:07:17] <ratrace> maybe I'll have more luck :)
2523 [19:07:22] <dob1> I like the approach on the question on stackoverflow, / -> _
2524 [19:07:48] <greycat> To the best of my knowledge, we've never received an answer as to WHY they want to copy "index.html" or "cover.jpg" or whatever it is, from umpteen different places, all into one place.
2525 [19:07:50] <dob1> so I can keep the information to where the file was
2526 [19:07:51] <ratrace> dob1: so you literally want to achieve what's asked in that SO question?
2527 [19:07:55] *** Quits: r01_mage (~Thunderbi@replaced-ip ) (Ping timeout: 265 seconds)
2528 [19:08:06] <dob1> ratrace, yes
2529 [19:08:46] <dob1> greycat, I told you, it's like a backup
2530 [19:08:57] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 240 seconds)
2531 [19:09:01] *** Joins: rmerpes (~rmerpes@replaced-ip )
2532 [19:09:13] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 250 seconds)
2533 [19:09:22] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 265 seconds)
2534 [19:09:27] *** Joins: Ticho_ (~Ticho@replaced-ip )
2535 [19:09:50] <greycat> Prior discussion at replaced-url
2536 [19:10:28] *** Quits: rmerpes (~rmerpes@replaced-ip ) (Client Quit)
2537 [19:10:28] *** Joins: Jade_NL (~JadeNL@replaced-ip )
2538 [19:10:33] <dob1> ok but the echo command I am using for test is splitting the filepath (the real path), maybe because there are spaces ?
2539 [19:11:02] <greycat> twobitsprite gave you a literal, spoon-fed answer at 20:32.57 (it should have an IFS= in it, though)
2540 [19:11:13] *** Quits: HZun (~HZun@replaced-ip ) (Quit: Leaving)
2541 [19:11:16] *** Quits: Theroxat (~quassel@replaced-ip ) (Remote host closed the connection)
2542 [19:11:41] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Client Quit)
2543 [19:12:04] *** Quits: Osprey_Jr (~user@replaced-ip ) (Quit: leaving)
2544 [19:12:14] *** Quits: JustASlacker (~JustASlac@replaced-ip ) (Quit: Leaving)
2545 [19:12:16] *** Joins: Theroxat (~quassel@replaced-ip )
2546 [19:13:11] *** camel_ is now known as _fade_
2547 [19:14:18] <dob1> if I have a command that can convert a path to a filename, I could simply do, find dir -type f -name something -exec cp {} convert_name {} \;
2548 [19:14:36] <dob1> 'conver_name {}'
2549 [19:14:42] <greycat> Why can't you use the answer that twobitsprite gave you?
2550 [19:14:48] <ratrace> dob1: did you try what greycat pointed at in the link above?
2551 [19:14:49] <dob1> I don't understand it
2552 [19:14:56] *** Joins: rmerpes (~rmerpes@replaced-ip )
2553 [19:15:06] <greycat> It converts all of the / chars to - chars.
2554 [19:15:10] *** Joins: zyun (~zyun@replaced-ip )
2555 [19:15:25] <ratrace> dob1: replaced-url
2556 [19:15:41] <greycat> I'm not necessarily saying it's *perfect*, especially because I have/had that person on /ignore and didn't see it originally. But it's a START.
2557 [19:15:41] *** Quits: dka (~code-is-a@replaced-ip ) (Quit: My Ex-Girlfriend once told me: I'm not a slut, I'm just popular)
2558 [19:15:51] <greycat> oh god, abs
2559 [19:16:20] <ratrace> does it no explain that substution though? :)
2560 [19:16:23] <ratrace> does it not*
2561 [19:16:26] *** Quits: _jakob (~jakob@replaced-ip ) (Ping timeout: 240 seconds)
2562 [19:16:33] * rmerpes co
2563 [19:16:37] *** Quits: Trieste (~T@replaced-ip ) (Ping timeout: 240 seconds)
2564 [19:17:43] <greycat> ratrace: along with quoting failures *everywhere*, and a nice code injection exploit in awk...
2565 [19:17:47] <dob1> I want to try my approach, I will create the script to convert the path to a filename, the idea is / -> __ and spaces to -, it's not difficult, but to invoke it on find I have to use `script {}` ?
2566 [19:17:59] *** Joins: dka (~code-is-a@replaced-ip )
2567 [19:18:14] <greycat> And no, abs author, putting ${curly_braces} around your variable name does not make it safer.
2568 [19:18:37] *** Quits: Theroxat (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
2569 [19:18:45] <greycat> And what's up with the expr fetish.
2570 [19:18:55] *** Joins: soee (~soee@replaced-ip )
2571 [19:19:02] *** Quits: rmerpes (~rmerpes@replaced-ip ) (Client Quit)
2572 [19:19:02] <ratrace> hrm
2573 [19:19:24] <greycat> dob1: replaced-url
2574 [19:19:25] *** Joins: _jakob (~jakob@replaced-ip )
2575 [19:19:40] <ratrace> I keep that bookmarked because it seems I can never remember proper substitution syntax...
2576 [19:19:48] *** Joins: Trieste (~T@replaced-ip )
2577 [19:20:23] *** Quits: n4dir (~n4dir@replaced-ip ) (Remote host closed the connection)
2578 [19:20:40] <ratrace> greycat: k, bookmark replaced :)
2579 [19:21:20] *** Joins: BCMM (~BCMM@replaced-ip )
2580 [19:22:06] <dob1> greycat, but considering that I will be able to create a script convert a path to filename, call it script.sh, my doubt is on find find dir -type f -name something -exec cp {} ...... I am lost here,
2581 [19:22:32] <greycat> You do not want to write a whole separate script to convert one filename to another filename. Just use a sequence of inline operations.
2582 [19:22:45] *** Quits: lucad111 (~lucad111@replaced-ip ) (Quit: Leaving)
2583 [19:22:46] *** Joins: soee_ (~soee@replaced-ip )
2584 [19:23:13] *** Quits: soee (~soee@replaced-ip ) (Ping timeout: 245 seconds)
2585 [19:23:18] <greycat> In any event, you cannot do it with -exec cp. You will need -exec bash, or -print0 | while IFS= read -r -d '' f; do ...
2586 [19:23:19] <dob1> greycat, I prefer to divide the work
2587 [19:23:22] <ratrace> dob1: does this rather verbose approach make the process understandable? find /src/dir/ -type f | while read S ; do D=$(echo "$S" | sed 's/\//__/g' | sed 's/ /-/g') ; echo "$S -> $D" ; done
2588 [19:23:33] <ratrace> you can then shorten those seds with bash string subst
2589 [19:23:52] <greycat> ratrace: "read S" strips leading and trailing whitespace, and mangles backslashes.
2590 [19:24:05] <ratrace> oh, TIL
2591 [19:24:38] *** Quits: slon (~slon@replaced-ip ) (Read error: Connection reset by peer)
2592 [19:24:39] *** Quits: oish (~charlie@replaced-ip ) (Remote host closed the connection)
2593 [19:25:22] <dob1> greycat, why I can't use -exec cp ?
2594 [19:26:09] <greycat> because cp cannot perform the string manipulations you want
2595 [19:26:14] <greycat> you need a shell for that
2596 [19:26:17] *** Quits: brokencycle (~brokencyc@replaced-ip ) (Ping timeout: 240 seconds)
2597 [19:26:23] <chimp> am trying to use this package update indicator to actually update packages, do anyone do that in xfce?
2598 [19:26:26] <jelly> something something prename?
2599 [19:26:33] * jelly has not read any context
2600 [19:26:45] <greycat> prename was mentioned on Friday, but it only renames (moves); it has no "just copy" option
2601 [19:27:20] <greycat> you could -exec perl instead of -exec bash and do the manips in perl if you like
2602 [19:27:26] *** Quits: scde (~scde@replaced-ip ) (Ping timeout: 252 seconds)
2603 [19:27:37] <jelly> ah. Clearly pcp needs to be invented
2604 [19:27:54] <dka> Hi, I have a 4G modem with a Sim card, I have modem-manager-gui and I can send SMS, is it possible to do the same from the Command line ?
2605 [19:27:56] <greycat> the best package name since weboob
2606 [19:28:34] <ratrace> am I the only one who read that as WEB OOB, not we boob?
2607 [19:28:36] *** Joins: well_laid_lawn (~Jean-luc@replaced-ip )
2608 [19:28:37] <jelly> no
2609 [19:28:38] *** Joins: FnorZ (~FnorZ@replaced-ip )
2610 [19:28:54] *** Quits: gvth (~cell@replaced-ip ) (Quit: leaving)
2611 [19:28:58] *** Joins: _till_ (~till@replaced-ip )
2612 [19:29:01] *** debhelper sets mode: +l 1593
2613 [19:30:45] <jelly> dka: maybe nmcli has something?
2614 [19:31:02] *** mutante_ is now known as mutante
2615 [19:31:14] *** Quits: mutante (foobar@replaced-ip ) (Changing host)
2616 [19:31:14] *** Joins: mutante (foobar@replaced-ip )
2617 [19:31:29] <jelly> dka: er, mmcli
2618 [19:32:17] *** Joins: platvoeten (~platvoete@replaced-ip )
2619 [19:32:34] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 252 seconds)
2620 [19:34:47] *** Quits: _till_ (~till@replaced-ip ) (Ping timeout: 276 seconds)
2621 [19:35:08] <dob1> greycat, so I can do for example find ./ type f -name somename -exec python script.py {} \; and script.py can execute the copy and the file rename, this will work ?
2622 [19:35:26] *** Joins: scde (~scde@replaced-ip )
2623 [19:35:42] <greycat> Christ on a stick. Are you THIS DEAD SET on writing a python script to accept one filename as an argument and output one filename on stdout? FIne.
2624 [19:36:00] <dob1> greycat, why not ? :)
2625 [19:36:21] <greycat> find . -type f -name 'whatever' -exec sh -c 'for f; do newname=$(python3 myscript.py "$f"); echo cp "$f" "$newname"; done' x {} +
2626 [19:36:55] <greycat> There you go. A wrapper for a python script that does 60% of the work.
2627 [19:37:11] <greycat> Because invoking a whole python process once per file can't possibly be too slow.
2628 [19:37:48] <rkeene> Fast enough for government work
2629 [19:37:50] <dob1> but anwyay in my idea the python script was used for the file copy too, other than the renaming
2630 [19:38:27] <greycat> then do the whole thing in python. don't use the shell at all.
2631 [19:38:52] *** Joins: kobain (~kobain@replaced-ip )
2632 [19:39:28] <jhutchins_wk> dka: replaced-url
2633 [19:39:48] <jhutchins_wk> dka: Lots of options listed, but examples toward the end.
2634 [19:40:07] *** Joins: holmgren (~magnus@replaced-ip )
2635 [19:40:14] <zerocool> anyone know how i can install the newest version of kmail while using debian stable repo
2636 [19:40:21] <zerocool> for kde
2637 [19:40:25] *** Joins: _0bitcount (~Big_Byte@replaced-ip )
2638 [19:40:59] *** Quits: tyranny12 (~blarg@replaced-ip ) (Ping timeout: 252 seconds)
2639 [19:41:28] *** Joins: Specialist (~tg@replaced-ip )
2640 [19:41:40] <jhutchins_wk> ,v kmail
2641 [19:41:41] <judd> Package: kmail on amd64 -- jessie: 4:4.14.1-1+deb8u1; jessie-security: 4:4.14.1-1+deb8u2; stretch: 4:16.04.3-4~deb9u1; buster: 4:18.08.3-1; bullseye: 4:18.08.3-4; sid: 4:18.08.3-4; experimental: 4:19.08.2-1
2642 [19:42:14] *** Joins: phebus (~phebus@replaced-ip )
2643 [19:42:15] *** Joins: tyranny12 (~blarg@replaced-ip )
2644 [19:42:15] *** Quits: tyranny12 (~blarg@replaced-ip ) (Changing host)
2645 [19:42:15] *** Joins: tyranny12 (~blarg@replaced-ip )
2646 [19:43:39] <zerocool> looking for version 5.12
2647 [19:43:40] *** Joins: cliluw (~cliluw@replaced-ip )
2648 [19:43:43] <jhutchins_wk> ,v calibre
2649 [19:43:44] <judd> Package: calibre on amd64 -- jessie: 2.5.0+dfsg-1; stretch: 2.75.1+dfsg-1; stretch-backports: 3.39.1+dfsg-3~bpo9+1; buster: 3.39.1+dfsg-3; buster-backports: 3.48.0+dfsg-1~bpo10+1; bullseye: 4.3.0+dfsg-2; sid: 4.4.0+dfsg-1; experimental: 4.4.0+dfsg-1+exp1
2650 [19:45:55] <dob1> about the rename "strategy", converting / -> __ and " " to - it's enough ? or am I missing something ?
2651 [19:46:11] <greycat> They're YOUR files. You decide.
2652 [19:46:12] *** Quits: tyranny12 (~blarg@replaced-ip ) (Remote host closed the connection)
2653 [19:46:22] <dob1> I mean something that can create invalid filenames
2654 [19:46:24] *** Joins: preview (~quassel@replaced-ip )
2655 [19:46:28] *** Joins: Kevlar_Noir (~manjaro-u@replaced-ip )
2656 [19:46:34] <greycat> Unix filenames can contain ANY character except / and NUL.
2657 [19:46:44] <dob1> ok then!
2658 [19:47:25] *** Joins: tyranny12 (~blarg@replaced-ip )
2659 [19:47:25] *** Quits: tyranny12 (~blarg@replaced-ip ) (Changing host)
2660 [19:47:25] *** Joins: tyranny12 (~blarg@replaced-ip )
2661 [19:48:00] *** Joins: timur_davletshin (~timur_dav@replaced-ip )
2662 [19:48:27] *** Joins: RebelCoder (~RebelCode@replaced-ip )
2663 [19:49:01] *** debhelper sets mode: +l 1603
2664 [19:50:17] *** Quits: wanqcrypt (~adilcan@replaced-ip ) (Ping timeout: 240 seconds)
2665 [19:52:28] *** Quits: thePiGrepper (~nagato@replaced-ip ) (Quit: leaving)
2666 [19:54:00] *** Quits: NetTerminalGene (~NetTermin@replaced-ip ) (Quit: Leaving)
2667 [19:54:16] *** Joins: vlad-k_ (~Vladislav@replaced-ip )
2668 [19:55:04] *** Joins: thePiGrepper (~nagato@replaced-ip )
2669 [19:57:55] *** Quits: chimp (~chimp@replaced-ip ) (Remote host closed the connection)
2670 [20:00:33] *** Quits: gnupi (~gnupi@replaced-ip ) (Read error: Connection reset by peer)
2671 [20:01:17] *** Quits: RebelCoder (~RebelCode@replaced-ip ) (Remote host closed the connection)
2672 [20:02:45] *** Joins: RebelCoder (~RebelCode@replaced-ip )
2673 [20:03:15] *** Quits: longbow (~chskab@replaced-ip ) (Quit: Lost terminal)
2674 [20:03:40] *** Quits: engine20191 (~engine201@replaced-ip ) (Quit: Leaving)
2675 [20:05:19] *** Joins: jak2000 (~jak2000@replaced-ip )
2676 [20:08:02] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
2677 [20:08:13] *** Quits: MenschZwoNull__ (~MenschZwo@replaced-ip ) (Ping timeout: 245 seconds)
2678 [20:09:01] *** debhelper sets mode: +l 1597
2679 [20:09:19] *** Quits: shibboleth (~shibbolet@replaced-ip ) (Quit: shibboleth)
2680 [20:10:07] *** Joins: Clarth (~Clarth@replaced-ip )
2681 [20:12:06] *** Joins: zyun (~zyun@replaced-ip )
2682 [20:12:17] *** Quits: RebelCoder (~RebelCode@replaced-ip ) (Ping timeout: 240 seconds)
2683 [20:12:27] *** Joins: oxek (qjvl@replaced-ip )
2684 [20:13:55] <oxek> I am struggling with setting up umasks for users
2685 [20:14:11] <greycat> How does the target user login? Do they run GNOME?
2686 [20:14:18] <oxek> I used the debian documentation, and in the file /etc/login.defs I put "UMASK 027"
2687 [20:14:42] <oxek> however when I create a new user using `adduser`, their umask is still 022
2688 [20:14:48] <oxek> what is going wrong?
2689 [20:14:49] <greycat> How does the target user login? Do they run GNOME?
2690 [20:14:59] <greycat> How did you check the umask?
2691 [20:15:07] <oxek> xfce, they login manually, and over ssh
2692 [20:15:17] <oxek> I checked it by logging in locally as that target user
2693 [20:15:18] *** Joins: beinbliss4 (~beinbliss@replaced-ip )
2694 [20:15:29] <oxek> and put `umask` command in terminal
2695 [20:15:35] <greycat> So I'm getting three contradictory answers.
2696 [20:15:42] <oxek> and also created a few files in the home directory and checked their permissions
2697 [20:15:54] *** Joins: Texou (~Texou@replaced-ip )
2698 [20:16:04] *** Quits: AimHere (~David@replaced-ip ) (Ping timeout: 265 seconds)
2699 [20:16:08] <oxek> what do you mean greycat?
2700 [20:16:11] *** Quits: Night-Shade (~TimF@replaced-ip ) (Ping timeout: 252 seconds)
2701 [20:17:14] <greycat> They login somehow (unspecified) and use xfce. But they also login by ssh. And to test them, you "logged in locally", still unspecified, but I assumed tty. Maybe that was a bogus assumption.
2702 [20:17:38] <greycat> So maybe it's only two contradictory answers, "local unspecified leading to xfce" and "ssh".
2703 [20:17:50] <oxek> they login by switching on the computer, and putting their username+password on a keyboard while sitting in front of the computer
2704 [20:18:08] <oxek> the login screen is lightdm
2705 [20:18:08] *** Joins: AimHere (~David@replaced-ip )
2706 [20:18:15] <greycat> Lightdm. OK, finally an answer.
2707 [20:18:15] <oxek> and it puts them into xfce desktop environment
2708 [20:18:30] <greycat> Whatever you configure for lightdm will NOT work for ssh, most likely.
2709 [20:18:43] <oxek> why does lightdm matter?
2710 [20:19:17] <oxek> should it not be the same as logging into the virtual console on Ctrl Alt F1?
2711 [20:19:30] <greycat> Readingt login.defs(5), it says UMASK is used by pam_umask. So, in order for that file to do anything at all, the PAM config file in question would have to include pam_umask.
2712 [20:19:39] <greycat> Does the lightdm PAM config file contain that? I know the ssh one does not.
2713 [20:19:47] <greycat> No, it is absolutely not the same.
2714 [20:19:51] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2715 [20:20:09] <greycat> Each of these login methods has a different PAM configuration, and runs a different program, and those programs read different config files.
2716 [20:20:15] <oxek> well that makes it a lot mroe complicated :(
2717 [20:20:46] <greycat> The word umask does not appear in ANY of my PAM config files at all (grep -ri umask /etc/pam.d gives no output).
2718 [20:20:53] <greycat> So I don't think this login.defs file is actually useful here.
2719 [20:21:09] *** Joins: brondif (~brondif@replaced-ip )
2720 [20:22:47] <greycat> pam_umask(8) has instructions for how to add it to a PAM config, if you really want to try going that route. But if the program launched by login sets its own umask later, that will override whatever PAM does.
2721 [20:22:54] *** Quits: TheWizard (~thewizard@replaced-ip##) (Quit: KVIrc 5.0.0 Aria ##replaced-url
2722 [20:23:11] *** Joins: TheWizard (~thewizard@replaced-ip )
2723 [20:23:21] <oxek> thanks, I'll read some more
2724 [20:23:29] <oxek> but it looks like it cannot be made bullet-proof
2725 [20:23:46] <oxek> so I think I'll just tell them to buy their own computer
2726 [20:24:21] *** Joins: gierdo (~Dominik_G@replaced-ip )
2727 [20:24:34] *** Joins: chimp (~chimp@replaced-ip )
2728 [20:24:59] *** Quits: Immanuel (~Manu@replaced-ip ) (Ping timeout: 252 seconds)
2729 [20:25:00] <chimp> is sasl not required if one is actually on debian for this #channel? :)
2730 [20:25:32] *** Quits: zamuro (~Samantha@replaced-ip ) (Quit: [IRSSI])
2731 [20:25:36] *** Joins: LvmhmGVJox (~Urangst@replaced-ip )
2732 [20:26:32] *** Joins: Night-Shade (~TimF@replaced-ip )
2733 [20:26:37] <greycat> An ssh login runs a shell, so you can configure things like umask in /etc/profile (or the *csh equivalent if they use csh/tcsh), or in the user's dot files.
2734 [20:26:55] *** Joins: Immanuel (~Manu@replaced-ip )
2735 [20:27:02] <greycat> A lightdm login doesn't run a shell. I'm not sure if putting umask in the user's ~/.xsessionrc would work or not.
2736 [20:27:21] *** Joins: Nokaji (~Nokaji@replaced-ip )
2737 [20:27:44] <oxek> so many places where umask can be configured...
2738 [20:27:51] <oxek> I would have thought this would be a solved problem
2739 [20:28:01] <oxek> isn't there a systemd setting for this?
2740 [20:28:05] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 276 seconds)
2741 [20:28:05] *** Quits: Ceber (~cerberus@replaced-ip ) (Ping timeout: 250 seconds)
2742 [20:28:16] <greycat> With GNOME, it's even worse, because even if you do manage to set umask for the user's outer GNOME session layers, the user's *gnome-terminals* are launched by a dbus daemon that's outside of the GNOME session, and they do not inherit anything from the session.
2743 [20:28:52] <oxek> greycat: ok, you convinced me, I am not gonna mess with this because I do not have the required depth of knowledge.
2744 [20:28:58] <oxek> the other person is screwed
2745 [20:29:20] <oxek> they will just have to buy a pc
2746 [20:30:24] <oxek> it's funny that windows has solved this problem 20 years ago, where every user can only access their own home directory and nobody elses home directory
2747 [20:30:33] <oxek> and that is the default config...
2748 [20:30:51] <oxek> and there is only 1 place to configure it
2749 [20:31:19] <greycat> if *that's* all you want, just change the permissions on the user's home directory
2750 [20:32:04] <greycat> you only need to mess with umask when you want users to collaborate on a project in a public directory where things are group-writable, and you want any new files they make to be group-writable as well
2751 [20:32:18] <oxek> I tried that but it doesn't seem to work - if the other user knows the exact location of the file in the home directory, they can still read it even with restrictive permissions on the home directory
2752 [20:32:36] *** Quits: m1sosoup (~m1sosoup@replaced-ip ) (Quit: Leaving)
2753 [20:32:46] <greycat> You left "1" as the last octal digit. Try "0". chmod 750 /home/paranoid
2754 [20:33:40] <oxek> I did `chmod o-rwx /home/paranoid` but the directories within the home folder do not inherit this and are still listable for some reason
2755 [20:33:57] *** Quits: platvoeten (~platvoete@replaced-ip ) (Ping timeout: 240 seconds)
2756 [20:34:00] <oxek> and I am afaraid of doing chmod recursively because it can break things
2757 [20:34:03] <greycat> That's not correct, and would be a serious bug if true.
2758 [20:34:09] *** Quits: gierdo (~Dominik_G@replaced-ip ) (Quit: WeeChat 2.6)
2759 [20:34:23] *** Quits: we6jbo (~we6jbo@replaced-ip ) (Remote host closed the connection)
2760 [20:34:36] <oxek> it is possible I have seriously messed up this system
2761 [20:34:39] *** Joins: Justme (~Justme@replaced-ip )
2762 [20:34:43] <oxek> let me check
2763 [20:35:26] *** Joins: Ceber (~cerberus@replaced-ip )
2764 [20:35:30] <greycat> replaced-url
2765 [20:35:55] *** Joins: obs2 (5b9e44f0@replaced-ip )
2766 [20:36:14] *** Quits: pie3 (~pieee@replaced-ip ) (Read error: Connection reset by peer)
2767 [20:36:38] <oxek> I do `stat /home/fred` and get "Access: (0750/drwxr-x---) Uid: ( 1000/ fred) Gid: ( 1000/ fred)"
2768 [20:36:44] *** Quits: knidos (~knidos@replaced-ip ) (Quit: WeeChat 1.9.1)
2769 [20:36:47] *** Quits: Slashman (~Slash@replaced-ip ) (Quit: Leaving)
2770 [20:37:09] *** Joins: longbow (~longbow@replaced-ip )
2771 [20:37:19] <wasamasa> why don't you try to reproduce the above paste?
2772 [20:37:20] <oxek> but when the other user logs in, they can do `cat /home/fred/backup/list.txt` and get output of that file
2773 [20:37:31] <greycat> is the "other user" fred?
2774 [20:37:56] <greycat> Or are they in group fred?
2775 [20:37:58] <oxek> the other user is "tempguest"
2776 [20:38:07] <oxek> in group "tempguest"
2777 [20:38:28] <oxek> I have probably messed something horribly up
2778 [20:40:17] <oxek> I'll try to reproduce your paste
2779 [20:40:20] <mutante> "all my stuff in my home directory is private and not readable to anyone else" is not the default
2780 [20:40:30] *** Quits: timur_davletshin (~timur_dav@replaced-ip ) (Quit: Leaving)
2781 [20:40:35] <greycat> but chmod 750 on the home dir *should* work to achieve that state
2782 [20:40:59] <greycat> unless there's an ACL overriding it, etc.
2783 [20:41:04] <mutante> yea, but it was not used recursively so that subdirs are not affected is not a big surprise ?
2784 [20:41:13] <greycat> that shouldn't matter
2785 [20:41:24] <mutante> true
2786 [20:42:01] *** Joins: timahvo1 (~rogue@replaced-ip )
2787 [20:42:47] *** Quits: Reptili4n (~chatzilla@replaced-ip ) (Quit: ChatZilla 0.9.94 [SeaMonkey 2.49.5/20190805002510])
2788 [20:43:20] *** Quits: m0u (~m0u@replaced-ip ) (Ping timeout: 252 seconds)
2789 [20:43:50] <oxek> greycat: in your paste, I do the exact same thing, but I do not get permission denied, I can view the directory
2790 [20:44:14] <greycat> That is not normal.
2791 [20:44:14] <oxek> and I am not logged in as root
2792 [20:44:22] *** Joins: eremos (~eremos@replaced-ip )
2793 [20:44:30] <wasamasa> I demand to see a screenshot of that
2794 [20:44:38] <dvs> O_O
2795 [20:44:52] *** Quits: eremos (~eremos@replaced-ip ) (Client Quit)
2796 [20:45:07] <wasamasa> including the output of `id`
2797 [20:45:11] <oxek> ok, one moment
2798 [20:45:39] <greycat> Hopefully it'll just turn out to be "I made tempguest uid 1000 same as fred" and we can all breathe a sigh of relief.
2799 [20:45:41] <mutante> my guess is the users do share a group and the group has read access
2800 [20:45:55] *** Joins: eremos (~eremos@replaced-ip )
2801 [20:45:59] <greycat> yeah, that's a good guess too
2802 [20:46:03] <oxek> tempguest is 1001
2803 [20:46:07] *** Joins: casserole_ (~nologin@replaced-ip )
2804 [20:46:34] <mutante> oxek: can you run "id" as both users and pastebin the output
2805 [20:48:08] *** Quits: obs2 (5b9e44f0@replaced-ip##) (Quit: The Lounge - ##replaced-url
2806 [20:48:11] *** Joins: JustASlacker (~JustASlac@replaced-ip )
2807 [20:48:28] <eremos> need some help please, I've put 'options dummy numdummies=1' in /etc/modprobe.d/dummy.conf but when it loads I get no dummy interfaces. Debian 10.2 (4.19.0-6-amd64)
2808 [20:48:59] *** Quits: casserole_ (~nologin@replaced-ip ) (Remote host closed the connection)
2809 [20:49:16] <oxek> mutante: replaced-url
2810 [20:49:21] *** Joins: RebelCoder (~RebelCode@replaced-ip )
2811 [20:49:31] *** Joins: makaveli7 (~makaveli7@replaced-ip )
2812 [20:49:47] *** Quits: milkt (~debian@replaced-ip ) (Quit: leaving)
2813 [20:50:15] <wasamasa> namei should help figuring this out
2814 [20:50:22] <dvs> oxek, homepc is a member of the tempguest group
2815 [20:50:53] <oxek> dvs: I don't know what that means. homepc is the hostname of the pc
2816 [20:51:01] *** Quits: towo` (~towo@replaced-ip ) (Ping timeout: 252 seconds)
2817 [20:51:16] <dvs> oxek, oh, I missread. nvm
2818 [20:52:04] <wasamasa> like, namei -m /tmp/home/joe/secret
2819 [20:52:07] <mutante> oxek: hmm. ok. nothing obvious yet. now how about the output of "ls -l" inside /home/
2820 [20:52:24] *** Joins: towo` (~towo@replaced-ip )
2821 [20:54:41] *** Quits: Justme (~Justme@replaced-ip##) (Quit: The Lounge - ##replaced-url
2822 [20:54:44] *** Quits: sputnik (~kli0rf@replaced-ip ) (Quit: Reconnecting)
2823 [20:54:49] *** Joins: zyun (~zyun@replaced-ip )
2824 [20:54:59] *** Joins: sputnik (kli0rf@replaced-ip )
2825 [20:55:16] *** Joins: The_Loko (~The_Loko@replaced-ip )
2826 [20:55:24] *** Quits: Jerrynicki (~niklas@replaced-ip ) (Remote host closed the connection)
2827 [20:55:39] *** Joins: led_belly (led_belly@replaced-ip )
2828 [20:56:31] <oxek> mutante: when logged in as which user?
2829 [20:56:52] <mutante> oxek: doesn't really matter for this
2830 [20:56:55] <greycat> If you get different results from different accounts, that would be noteworthy.
2831 [20:57:46] *** Joins: NessMom24 (~ircwebcha@replaced-ip )
2832 [20:59:03] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
2833 [21:00:41] *** Joins: Ticho (~Ticho@replaced-ip )
2834 [21:01:14] *** Quits: section1 (~section1@replaced-ip ) (Quit: Leaving)
2835 [21:01:18] *** Quits: kobain (~kobain@replaced-ip##) (Quit: KVIrc 4.2.0 Equilibrium ##replaced-url
2836 [21:01:32] <oxek> mutante: replaced-url
2837 [21:02:32] <greycat> tempguest *shouldn't* be able to read any files in /home/fred given all the info supplied so far
2838 [21:02:38] <oxek> I'll just reinstall and try again. I probably messed something up.
2839 [21:03:40] *** Quits: dethos (~dethos@replaced-ip ) (Quit: Time to Go!)
2840 [21:03:47] <seere> oxek: what filesystem type is /home/fred on?
2841 [21:04:03] <oxek> tempguest cannot read /home/fred/.bash_history but can read /home/fred/.bashrc
2842 [21:04:14] <oxek> ext4
2843 [21:04:21] *** Joins: flo2marsnet (~flo2marsn@replaced-ip )
2844 [21:04:36] *** Joins: zyun (~zyun@replaced-ip )
2845 [21:04:58] *** Quits: timahvo1 (~rogue@replaced-ip ) (Ping timeout: 252 seconds)
2846 [21:05:20] <oxek> however, tempguest cannot do `ls /home/fred/` and get output
2847 [21:06:07] <mutante> oxek: is there a LDAP backend or something by any chance?
2848 [21:06:18] *** Joins: sfvm (~sfvm@replaced-ip )
2849 [21:06:43] <oxek> I don't think so. This is a fresh debian installation, with nothing special done to it yet.
2850 [21:06:49] * dvs bets that there are world read permissions on .bashrc
2851 [21:06:51] <oxek> unless LDAP is something default
2852 [21:07:07] <mutante> oxek: no, it's not
2853 [21:07:10] *** Quits: towo` (~towo@replaced-ip ) (Quit: Leaving)
2854 [21:07:13] *** Joins: srgg (~srgg@replaced-ip )
2855 [21:07:20] *** Joins: towo` (~towo@replaced-ip )
2856 [21:07:34] *** Joins: nav2002 (~nav2002@replaced-ip )
2857 [21:07:45] <mutante> dvs: even then it would still be weird how that is possible with the parent dir not allowing access?
2858 [21:07:46] *** Quits: Jade_NL (~JadeNL@replaced-ip ) (Quit: leaving)
2859 [21:07:51] <oxek> dvs: yes, .bashrc is -rw-r--r--
2860 [21:08:10] <oxek> but I am told that if the directory is not world readable, then nothing in it will be either
2861 [21:08:28] *** Joins: timahvo1 (~rogue@replaced-ip )
2862 [21:08:37] *** Quits: finalbeta (~finalbeta@replaced-ip ) (Ping timeout: 252 seconds)
2863 [21:08:38] *** Joins: misterwhatever (~misterwha@replaced-ip )
2864 [21:08:43] *** Joins: finalbeta (~finalbeta@replaced-ip )
2865 [21:08:54] *** Quits: timahvo1 (~rogue@replaced-ip ) (Remote host closed the connection)
2866 [21:09:01] <seere> oxek: readable dir is only for listing it, but missing the x part should prevent entering it at all.
2867 [21:09:15] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2868 [21:09:31] <mutante> oxek: i agree it's weird. but before you reinstall the entire system.. just use recursive chmod. your reason was "it could break stuff" but it can't break more if it's already broken
2869 [21:09:31] <dvs> mutante, I think that read permissions on a directory means that a user cannot list the entries to that directory.
2870 [21:10:12] <mutante> dvs: i think listing contents on a dir is "x" not "r"
2871 [21:10:29] <greycat> mutante: no, dvs was correct
2872 [21:10:35] *** Quits: chele (~chele@replaced-ip ) (Quit: Leaving)
2873 [21:10:55] <seere> mutante: no. The other way round.
2874 [21:10:56] <greycat> you need "r" to see the filenames, and "x" to open the files
2875 [21:11:04] <Habbie> you'll also need x to stat the files
2876 [21:11:09] <oxek> ok, I made another user, testuser, and testuser cannot read anything in /home/tempguest, and tempguest cannot read anything in /home/testuser, and both /home/testuser and /home/tempguest are 0750
2877 [21:11:10] <Habbie> which may explain any confusion you had around using 'ls'
2878 [21:11:14] *** Quits: NessMom24 (~ircwebcha@replaced-ip ) (Remote host closed the connection)
2879 [21:11:18] <oxek> so there is something special about /home/fred
2880 [21:11:37] *** Quits: scde (~scde@replaced-ip ) (Ping timeout: 240 seconds)
2881 [21:11:38] *** Joins: oo_miguel (~miguel@replaced-ip )
2882 [21:11:47] <greycat> oxek: that's... conceivable, but it's weird that ls -l didn't show anything special
2883 [21:11:51] *** Quits: preview (~quassel@replaced-ip ) (Ping timeout: 250 seconds)
2884 [21:12:03] *** Joins: spacemanspam (~weechat@replaced-ip )
2885 [21:12:35] <seere> oxek: how do you switch users?
2886 [21:13:03] <oxek> seere: logout from xfce, log back in on the lightdm screen
2887 [21:13:38] *** Joins: zyun (~zyun@replaced-ip )
2888 [21:14:00] *** Joins: jnavila (~jnavila@replaced-ip )
2889 [21:14:04] *** Quits: frikinz (~me@replaced-ip ) (Remote host closed the connection)
2890 [21:15:21] <seere> oxek: by any chance - /home/fred is a plain directory, nothing special mounted there?
2891 [21:16:00] <oxek> /home/fred is a normal directory as far as I can tell, however /home is its own partition
2892 [21:16:12] *** Joins: kohmaru (~kohmaru@replaced-ip )
2893 [21:17:21] *** Quits: genright (~glenn@replaced-ip ) (Quit: Konversation terminated!)
2894 [21:17:30] <seere> oxek: can your "testuser" access /home/fred as well?
2895 [21:18:52] <oxek> I've now done `sudo chmod -R o-rwx /home/fred` and nobody can read its contents now except for fred
2896 [21:19:15] <oxek> but I think this system is messed up
2897 [21:19:23] <oxek> I played with things I did not fully understand
2898 [21:19:30] <oxek> so I'll just start anew
2899 [21:19:48] *** Joins: genright (~glenn@replaced-ip )
2900 [21:20:02] <oxek> thank you all for trying to solve this mystery
2901 [21:20:14] *** Quits: Ericounet (~Eric@replaced-ip ) (Quit: Je m'en vais ...)
2902 [21:20:29] <oxek> but it's likely I messed up some config file somewhere that did this
2903 [21:21:03] *** Quits: XORed (xored@replaced-ip ) (Ping timeout: 264 seconds)
2904 [21:21:12] *** Parts: brondif (~brondif@replaced-ip ) ("Leaving")
2905 [21:21:18] *** Quits: zalt (~lambda443@replaced-ip ) (Read error: Connection reset by peer)
2906 [21:21:19] *** Joins: ahi2 (~ahi2@replaced-ip )
2907 [21:21:20] *** Joins: panda_friend (~user@replaced-ip )
2908 [21:21:53] *** Joins: tme520 (~tme520@replaced-ip )
2909 [21:22:11] *** Joins: XORed (xored@replaced-ip )
2910 [21:22:20] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
2911 [21:22:35] *** Quits: _DeLa_ (~Thunderbi@replaced-ip ) (Quit: _DeLa_)
2912 [21:22:49] *** Joins: DammitJim (~DammitJim@replaced-ip )
2913 [21:23:29] <oxek> so when I do the new install, it should be sufficient to just do `sudo chmod o-rwx /home/fred` to make it unreadable by other users?
2914 [21:23:52] <greycat> should be
2915 [21:24:15] <dvs> oxek, it will make the directory entries for /home/fred unreadable.
2916 [21:24:17] <oxek> also, is there a difference between `chmod o-rwx /home/fred` and `chmod o-rwx /home/fred/` (notice the trailing slash)?
2917 [21:24:31] <DammitJim> I'm trying to understand how my machine works with DNS
2918 [21:24:37] <dvs> oxek, they won't be able to go into the directory either.
2919 [21:24:38] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 276 seconds)
2920 [21:24:44] <DammitJim> if I do an nslookup, I can see that 127.0.0.1 is responding for my dns requests
2921 [21:24:53] *** Joins: zalt (~lambda443@replaced-ip )
2922 [21:24:55] <oxek> dvs: and they won't be able to read any files in that directory, even if they know the filename?
2923 [21:25:01] <greycat> DammitJim: ls -l /etc/resolv.conf; cat /etc/resolv.conf
2924 [21:25:11] <greycat> oxek: shouldn't.
2925 [21:25:23] <DammitJim> greycat, yes, nameserver 127.0.0.1
2926 [21:25:28] <dvs> oxek, It will depend on what permissions are on the actual file itself.
2927 [21:25:32] <greycat> dvs: no.
2928 [21:25:35] <DammitJim> so, what is the application that takes care of DNS on my debian machine?
2929 [21:25:39] <oxek> dvs: wait what?
2930 [21:26:09] <DammitJim> the FQDN I can see has a CNAME to another domain
2931 [21:26:11] <greycat> DammitJim: lsof -i :53
2932 [21:26:12] <dvs> greycat, then home come his other user could read .bashrc when it has world readable permissions?
2933 [21:26:24] <greycat> dvs: nobody knows
2934 [21:26:47] <DammitJim> connmand
2935 [21:26:48] <DammitJim> got it!
2936 [21:27:15] <jelly> ,file bin/connmand
2937 [21:27:20] <judd> Search for bin/connmand in buster/amd64: connman: usr/sbin/connmand
2938 [21:27:20] *** Joins: zyun (~zyun@replaced-ip )
2939 [21:27:29] <panda_friend> How do I stop my stereo balance from auto-rebalancing? (I keep it unbalanced to compensate for a hardware issue) It seems to periodically rebalance at perfect center.
2940 [21:27:36] <dvs> greycat, so if you put a world readable file into your /tmp/joe/public sample that you had before, can another user read it?
2941 [21:28:00] <DammitJim> jelly, what is that supposed to do?
2942 [21:28:20] <jelly> DammitJim: I just wanted to know which package it belonged to.
2943 [21:28:41] <DammitJim> it's long, can I paste it?
2944 [21:28:52] <Iarfen> which is a good program to make ER diagrams?
2945 [21:28:52] <jelly> paste what?
2946 [21:29:04] <greycat> replaced-url
2947 [21:29:07] <DammitJim> the output
2948 [21:29:15] <jelly> the output of what, sorry?
2949 [21:29:24] <DammitJim> ,file bin/connman
2950 [21:29:24] *** Quits: kapil_ (uid36151@replaced-ip ) (Quit: Connection closed for inactivity)
2951 [21:29:28] <judd> No packages in buster/amd64 were found with that file.
2952 [21:29:56] *** Joins: gordonfish (~gordonfis@replaced-ip )
2953 [21:30:21] <dvs> greycat, what permissions are on /tmp/home/joe/secret/foo
2954 [21:30:35] <greycat> Run your own experiments.
2955 [21:30:42] <dvs> ok
2956 [21:30:59] *** Quits: jak2000 (~jak2000@replaced-ip ) (Ping timeout: 252 seconds)
2957 [21:31:42] *** Joins: a0z (~a0z@replaced-ip )
2958 [21:31:47] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
2959 [21:32:25] *** Joins: patterson (~patterson@replaced-ip )
2960 [21:33:01] *** Quits: Giotis (~Giotis@replaced-ip ) (Quit: Cheers)
2961 [21:33:06] *** Quits: kohmaru (~kohmaru@replaced-ip ) (Read error: Connection reset by peer)
2962 [21:34:28] *** Joins: smyds (~smyds@replaced-ip )
2963 [21:35:03] *** Quits: rypervenche (~rypervenc@replaced-ip ) (Quit: brb)
2964 [21:35:36] *** Quits: led_belly (led_belly@replaced-ip ) (Quit: zen)
2965 [21:35:41] *** Quits: Specialist (~tg@replaced-ip ) (Ping timeout: 276 seconds)
2966 [21:36:08] *** Joins: IstriMaenCS (~IstriMaen@replaced-ip )
2967 [21:36:08] *** Quits: tme520 (~tme520@replaced-ip ) (Ping timeout: 268 seconds)
2968 [21:36:09] *** Joins: zyun (~zyun@replaced-ip )
2969 [21:36:50] *** Joins: madrid (~dm@replaced-ip )
2970 [21:37:04] *** Quits: frgo (~frgo@replaced-ip ) ()
2971 [21:37:20] *** Quits: soee_ (~soee@replaced-ip ) (Quit: Konversation terminated!)
2972 [21:38:13] *** Joins: ceska (~Cieska@replaced-ip )
2973 [21:40:19] *** Joins: led_belly (~led_belly@replaced-ip )
2974 [21:40:20] *** Joins: frgo (~frgo@replaced-ip )
2975 [21:40:31] *** Quits: sinaowolabi (~Sina@replaced-ip ) (Ping timeout: 252 seconds)
2976 [21:41:29] *** Joins: rypervenche (~rypervenc@replaced-ip )
2977 [21:42:32] *** Joins: Specialist (~tg@replaced-ip )
2978 [21:43:18] *** Parts: smyds (~smyds@replaced-ip ) ()
2979 [21:43:24] *** Joins: Waxhead (~waxhead@replaced-ip )
2980 [21:44:56] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 240 seconds)
2981 [21:44:57] *** Quits: Iarfen (c8090341@replaced-ip ) (Remote host closed the connection)
2982 [21:45:18] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
2983 [21:45:38] *** Quits: clarity (uid350237@replaced-ip ) (Quit: Connection closed for inactivity)
2984 [21:46:03] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
2985 [21:46:20] *** Quits: thehottestpotato (~thehottes@replaced-ip##) (Quit: The Lounge - ##replaced-url
2986 [21:46:37] *** Joins: Space_Man (~Space_Man@replaced-ip )
2987 [21:46:43] *** Joins: led_belly (~led_belly@replaced-ip )
2988 [21:46:45] *** Quits: dionysus69 (~Thunderbi@replaced-ip ) (Remote host closed the connection)
2989 [21:47:02] *** Joins: dionysus69 (~Thunderbi@replaced-ip )
2990 [21:47:54] *** Joins: thehottestpotato (~thehottes@replaced-ip )
2991 [21:48:56] *** Quits: BlueByte (~walther@replaced-ip ) (Quit: This computer has gone to sleep)
2992 [21:48:56] *** Quits: semeion (~semeion@replaced-ip ) (Read error: Connection reset by peer)
2993 [21:49:23] *** Joins: semeion (~semeion@replaced-ip )
2994 [21:49:50] *** Quits: thehottestpotato (~thehottes@replaced-ip ) (Client Quit)
2995 [21:50:04] *** Joins: shibboleth (~shibbolet@replaced-ip )
2996 [21:50:21] *** Joins: thehottestpotato (~thehottes@replaced-ip )
2997 [21:50:50] *** Joins: pringau (~pringau@replaced-ip )
2998 [21:51:07] *** Joins: zyun (~zyun@replaced-ip )
2999 [21:51:57] *** Quits: panda_friend (~user@replaced-ip ) (Ping timeout: 240 seconds)
3000 [21:52:57] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 240 seconds)
3001 [21:54:01] *** Joins: MikeDebian (~Mike@replaced-ip )
3002 [21:54:19] *** Quits: codetronaut (~codetrona@replaced-ip ) (Ping timeout: 250 seconds)
3003 [21:54:31] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
3004 [21:55:05] *** Quits: sfvm (~sfvm@replaced-ip ) (Quit: Lost terminal)
3005 [21:55:39] *** Joins: happycrappy (~mes@replaced-ip )
3006 [21:56:12] *** Joins: led_belly (~led_belly@replaced-ip )
3007 [21:57:08] *** Quits: Akuw (~ajsbox@replaced-ip ) (Ping timeout: 276 seconds)
3008 [21:59:05] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 276 seconds)
3009 [21:59:23] *** Joins: dxdz (~dizzdexx@replaced-ip )
3010 [22:00:00] *** Joins: krabador (~krabador@replaced-ip )
3011 [22:00:18] *** Quits: supercoven_ (~Supercove@replaced-ip ) (Read error: Connection reset by peer)
3012 [22:00:57] *** Quits: estrom (estrom@replaced-ip ) (Ping timeout: 265 seconds)
3013 [22:01:25] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 268 seconds)
3014 [22:02:33] *** Joins: zyun (~zyun@replaced-ip )
3015 [22:03:47] *** Joins: led_belly (~led_belly@replaced-ip )
3016 [22:03:56] *** Quits: madrid (~dm@replaced-ip ) (Quit: Leaving)
3017 [22:04:49] *** Quits: louisg (~louis@replaced-ip ) (Ping timeout: 246 seconds)
3018 [22:05:29] *** Joins: b (~Tsukimaru@replaced-ip )
3019 [22:05:47] *** Quits: yonder (~yonder@replaced-ip ) (Ping timeout: 265 seconds)
3020 [22:05:48] *** Quits: Tsukimaru (~Tsukimaru@replaced-ip ) (Ping timeout: 260 seconds)
3021 [22:05:49] *** Joins: uxfi (~uxfi@replaced-ip )
3022 [22:05:53] *** b is now known as Guest33935
3023 [22:06:28] *** Joins: mtn (~mtn@replaced-ip )
3024 [22:06:53] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 250 seconds)
3025 [22:07:23] *** Joins: platvoeten (~platvoete@replaced-ip )
3026 [22:08:01] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 252 seconds)
3027 [22:09:03] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 250 seconds)
3028 [22:09:26] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 268 seconds)
3029 [22:10:31] *** Joins: zyun (~zyun@replaced-ip )
3030 [22:10:37] *** Quits: beinbliss4 (~beinbliss@replaced-ip ) (Ping timeout: 265 seconds)
3031 [22:11:14] *** Joins: led_belly (~led_belly@replaced-ip )
3032 [22:14:56] *** Joins: CuteAlien (~micha@replaced-ip )
3033 [22:15:08] *** Quits: platvoeten (~platvoete@replaced-ip ) (Remote host closed the connection)
3034 [22:15:32] *** Joins: Latr_work (uid4039@replaced-ip )
3035 [22:15:46] *** Quits: null1337 (~WhoAmI@replaced-ip ) (Quit: Pull the pin and count to what?)
3036 [22:16:00] *** Joins: rainfyre (~rainfyre@replaced-ip )
3037 [22:16:08] <Waxhead> Hi, I am looking at the tracker or replaced-url
3038 [22:16:24] <rainfyre> wat?
3039 [22:16:26] *** Joins: happycrappy (~mes@replaced-ip )
3040 [22:16:27] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 252 seconds)
3041 [22:16:31] <greycat> !debian-next
3042 [22:16:31] <dpkg> #debian-next is the channel for testing/unstable support on the OFTC network (irc.oftc.net), *not* on freenode. If you get "Cannot join #debian-next (Channel is invite only)." it means you did not read it's on irc.oftc.net.
3043 [22:16:48] <greycat> !why isn't linux-signed-amd64 in testing
3044 [22:16:48] <dpkg> linux-signed-amd64 is not in testing for the reasons listed in replaced-url
3045 [22:16:55] <greycat> well, you already knew that :(
3046 [22:17:08] <Waxhead> meh...
3047 [22:17:23] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 245 seconds)
3048 [22:18:11] *** Joins: openface (~openface@replaced-ip )
3049 [22:18:24] <CuteAlien> Hi! Anyone know why I suddenly can no longer have mypaint and gimp both installed? After some upgrade (or dist-upgrade) I noticed next day gimp was gone, so I re-installed it. Was fine. Noticed now mypaint is also gone, want to install I get: Depends: mypaint-data (>= 1.2.0-4.1). I try install mypaint-data I get: will be REMOVED: gimp libmypaint-1.3-0 libmypaint-common.
3050 [22:18:41] *** Joins: led_belly (~led_belly@replaced-ip )
3051 [22:18:42] *** Quits: openface (~openface@replaced-ip ) (Remote host closed the connection)
3052 [22:19:04] *** Joins: Peyam (~maroufi@replaced-ip )
3053 [22:19:18] *** Quits: Peyam (~maroufi@replaced-ip ) (Remote host closed the connection)
3054 [22:19:34] <CuteAlien> This is on debian 10 stable.
3055 [22:19:37] *** Quits: Stoot (6dd47876@replaced-ip ) (Remote host closed the connection)
3056 [22:19:37] *** Quits: ihristov (55c48532@replaced-ip ) (Remote host closed the connection)
3057 [22:19:57] *** Quits: fflori (~fflori@replaced-ip ) (Remote host closed the connection)
3058 [22:20:50] *** Joins: Nahra (~Nahra@replaced-ip )
3059 [22:21:19] *** Quits: Haudegen (~quassel@replaced-ip ) (Quit: Bin weg.)
3060 [22:22:20] *** Joins: ob-sed (~obesd@replaced-ip )
3061 [22:22:38] <mutante> CuteAlien: seems to be a bug with dependencies in one of the packags. the difference is that gimp now actually uses mypaint library to be able to use brushes from it. replaced-url
3062 [22:23:12] <CuteAlien> So nothing I can fix? :-(
3063 [22:23:16] <mutante> CuteAlien: replaced-url
3064 [22:23:17] <judd> Bug replaced-url
3065 [22:23:35] <mutante> replaced-url
3066 [22:23:36] <judd> Bug replaced-url
3067 [22:23:50] *** Joins: hilt (~hilt@replaced-ip )
3068 [22:23:59] <mutante> CuteAlien: at least there are recent updates on the bug(s)
3069 [22:23:59] <greycat> good old debian, bugs like that staying open for years
3070 [22:24:11] <mutante> 2019-10-29 not that bad
3071 [22:24:12] *** Joins: openface (~of@replaced-ip )
3072 [22:24:31] <CuteAlien> Yeah, I hope not. I use both very much
3073 [22:24:37] *** Joins: rustbuckett (~downtime@replaced-ip )
3074 [22:24:50] <mutante> "I don't think this can be fixed for buster, so I'm tagging this -ignore." :/
3075 [22:24:56] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 246 seconds)
3076 [22:25:06] <mutante> There's a patch (to mypaint rather than libmypaint) to resolve the
3077 [22:25:06] <mutante> conflict without a new version of mypaint, by renaming mypaint's locale
3078 [22:25:06] <mutante> to 'mypaint12', in the upstream tracker at
3079 [22:25:10] <mutante> <replaced-url
3080 [22:25:49] *** Quits: openface (~of@replaced-ip ) (Client Quit)
3081 [22:25:58] <mutante> CuteAlien: using that patch is the best you have for now. but people say the patch works on buster
3082 [22:26:06] <CuteAlien> huh - so old? But it worked until recently.
3083 [22:26:23] *** Joins: openface (~of@replaced-ip )
3084 [22:26:24] *** Quits: openface (~of@replaced-ip ) (Read error: Connection reset by peer)
3085 [22:26:33] <dob1> there is an utility that can help to convert datetime strings to various timezones ?
3086 [22:26:37] <mutante> recently = whenever you installed upgrades
3087 [22:27:10] <CuteAlien> mutante, yeah, but I do that every few weeks. So bug has to be recent. It still worked with new Debian 10.
3088 [22:27:16] *** Joins: openface (~openface@replaced-ip )
3089 [22:27:39] <CuteAlien> And that report is from 2018
3090 [22:27:52] *** Joins: null1337 (~WhoAmI@replaced-ip )
3091 [22:27:59] *** Quits: _0bitcount (~Big_Byte@replaced-ip ) (Quit: Leaving)
3092 [22:28:31] *** Joins: led_belly (~led_belly@replaced-ip )
3093 [22:29:20] *** Quits: DammitJim (~DammitJim@replaced-ip ) (Quit: Leaving)
3094 [22:29:23] <mutante> CuteAlien: if that is the case maybe you can find the versions you had installed before.. get the .deb files from /var/cache/apt or so and then dpkg -i them "manually" to downgrade to what you had before
3095 [22:29:51] <mutante> that would be first apt-get remove --purge and then dpkg -i older versions
3096 [22:30:17] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 276 seconds)
3097 [22:30:28] <CuteAlien> phew, then I'll end up having to lock versions. I think I'll check if I can install from source instead.
3098 [22:31:53] *** Joins: toshkeen (~toshkeen@replaced-ip )
3099 [22:32:10] <mutante> CuteAlien: you can possibly use APT pinning config file to pin them to old versions
3100 [22:32:33] *** Quits: Ycarus (~Ycarus@replaced-ip ) (Quit: Ycarus)
3101 [22:32:38] <CuteAlien> yeah, that's what I meant with lock version. But don't like that too much - that's the stuff always causing troubles in the long run
3102 [22:32:51] *** Quits: nerdboy (~sarnold@replaced-ip ) (Ping timeout: 265 seconds)
3103 [22:33:01] <CuteAlien> If I can install from source instead I get around conflicts with the package-manager.
3104 [22:33:20] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 246 seconds)
3105 [22:33:30] *** Joins: dvs (~hibbard@replaced-ip )
3106 [22:33:42] <mutante> well.. packages installed from source cause the same trouble
3107 [22:33:56] *** Joins: m0u (~m0u@replaced-ip )
3108 [22:33:57] <mutante> eh..not packages
3109 [22:34:10] *** Joins: brokencycle (~brokencyc@replaced-ip )
3110 [22:34:15] <CuteAlien> No, the package managers won't know about it. Just installing it some folder and done ;-)
3111 [22:34:33] <CuteAlien> Will only have troubles maybe if I can't build it due to lib-conflicts.
3112 [22:34:40] *** Parts: toshkeen (~toshkeen@replaced-ip ) ()
3113 [22:35:18] *** Joins: led_belly (~led_belly@replaced-ip )
3114 [22:35:19] <CuteAlien> I just notice - mypaint also has flatpak... never used that on Debian.
3115 [22:36:46] *** Quits: openface (~openface@replaced-ip ) (Quit: closed)
3116 [22:38:52] <mutante> CuteAlien: until you need to install the same library to make it compile from source
3117 [22:39:25] *** Quits: Guest33935 (~Tsukimaru@replaced-ip ) (Quit: Leaving)
3118 [22:39:26] *** Joins: happycrappy (~mes@replaced-ip )
3119 [22:39:45] *** Joins: nerdboy (~sarnold@replaced-ip )
3120 [22:40:14] *** Joins: zst (~z@replaced-ip )
3121 [22:40:43] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 245 seconds)
3122 [22:41:35] *** Quits: elkalamar_ (elkalamar@replaced-ip ) (Quit: Leaving)
3123 [22:43:34] *** Quits: czesmir (~stefan@replaced-ip ) (Quit: Lost terminal)
3124 [22:43:35] *** Joins: led_belly (~led_belly@replaced-ip )
3125 [22:44:40] *** Quits: nerdboy (~sarnold@replaced-ip ) (Changing host)
3126 [22:44:40] *** Joins: nerdboy (~sarnold@replaced-ip )
3127 [22:45:40] *** Quits: pacbard (~pacbard@replaced-ip ) (Read error: Connection reset by peer)
3128 [22:45:45] *** Joins: zyun (~zyun@replaced-ip )
3129 [22:46:21] *** Quits: oo_miguel (~miguel@replaced-ip ) (Quit: WeeChat 2.3)
3130 [22:46:32] *** Joins: eraser_ (~user@replaced-ip )
3131 [22:47:11] *** Quits: tekmans13 (~tekmans@replaced-ip ) (Ping timeout: 276 seconds)
3132 [22:47:32] *** Joins: pacbard (~pacbard@replaced-ip )
3133 [22:47:36] *** Joins: tommyfun (~Tom@replaced-ip )
3134 [22:48:54] *** Quits: dxdz (~dizzdexx@replaced-ip ) (Ping timeout: 268 seconds)
3135 [22:49:33] *** Quits: dacod (~dacod@replaced-ip ) (Read error: Connection reset by peer)
3136 [22:49:46] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 265 seconds)
3137 [22:50:43] *** Quits: eraser_ (~user@replaced-ip ) (Quit: Leaving)
3138 [22:50:53] *** Joins: sinaowolabi (~Sina@replaced-ip )
3139 [22:51:55] *** Joins: kzimmermann (~Thunderbi@replaced-ip )
3140 [22:52:24] *** Joins: Haudegen (~quassel@replaced-ip )
3141 [22:52:35] *** Quits: BCMM (~BCMM@replaced-ip ) (Ping timeout: 246 seconds)
3142 [22:52:54] *** Joins: led_belly (~led_belly@replaced-ip )
3143 [22:53:02] *** Quits: happycrappy (~mes@replaced-ip ) (Ping timeout: 276 seconds)
3144 [22:53:13] *** Quits: rda-mac (~rda-mac@replaced-ip ) (Remote host closed the connection)
3145 [22:55:22] *** Joins: rda-mac (~rda-mac@replaced-ip )
3146 [22:55:26] *** Quits: mmfood (~mmfood@replaced-ip ) (Read error: Connection reset by peer)
3147 [22:56:18] *** Quits: m0u (~m0u@replaced-ip ) (Ping timeout: 268 seconds)
3148 [22:57:30] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 265 seconds)
3149 [22:57:46] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
3150 [22:58:24] *** Joins: krabador (~krabador@replaced-ip )
3151 [22:58:29] *** Joins: led_belly (~led_belly@replaced-ip )
3152 [22:58:42] *** Quits: towo` (~towo@replaced-ip ) (Quit: Leaving)
3153 [22:58:57] *** Joins: saptech (~saptech@replaced-ip )
3154 [22:58:59] *** Joins: Ticho_ (~Ticho@replaced-ip )
3155 [22:59:03] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
3156 [22:59:27] *** Joins: digilink (~digilink@replaced-ip )
3157 [22:59:56] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 246 seconds)
3158 [23:00:27] <CuteAlien> OK, flatpak worked out. Need new settings, but I can live with that. Phew.
3159 [23:01:05] *** Quits: Kevlar_Noir (~manjaro-u@replaced-ip ) (Quit: Konversation terminated!)
3160 [23:01:32] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
3161 [23:01:45] *** Joins: Ticho (~Ticho@replaced-ip )
3162 [23:02:00] *** Quits: jhutchins_wk (~jonathan@replaced-ip ) (Remote host closed the connection)
3163 [23:02:38] *** Joins: Kevlar_Noir (~lexou@replaced-ip )
3164 [23:03:04] *** Quits: CuteAlien (~micha@replaced-ip ) (Quit: CuteAlien)
3165 [23:03:11] *** Joins: tekmans13 (~tekmans@replaced-ip )
3166 [23:03:13] *** Quits: jfb4 (~jfb4@replaced-ip ) (Ping timeout: 245 seconds)
3167 [23:03:29] *** Joins: jfb4 (~jfb4@replaced-ip )
3168 [23:03:57] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 240 seconds)
3169 [23:04:13] *** Quits: dastier (~dastier@replaced-ip ) (Read error: Connection reset by peer)
3170 [23:04:18] *** Joins: lastrodamo (~lastrodam@replaced-ip )
3171 [23:04:19] *** Quits: Ticho_ (~Ticho@replaced-ip ) (Ping timeout: 268 seconds)
3172 [23:04:26] *** Joins: Ticho__ (~Ticho@replaced-ip )
3173 [23:04:41] *** Joins: dastier (~dastier@replaced-ip )
3174 [23:04:45] *** Quits: zerotech2 (~zerotech@replaced-ip ) (Ping timeout: 265 seconds)
3175 [23:05:56] *** Quits: Ticho (~Ticho@replaced-ip ) (Ping timeout: 240 seconds)
3176 [23:06:04] *** Joins: mindpixel (~pxl@replaced-ip )
3177 [23:06:27] *** Joins: led_belly (~led_belly@replaced-ip )
3178 [23:08:37] *** Quits: dastier_ (~dastier@replaced-ip ) (Remote host closed the connection)
3179 [23:08:49] *** Joins: scde (~scde@replaced-ip )
3180 [23:08:50] *** Joins: winy (~vince@replaced-ip )
3181 [23:10:10] *** Joins: waterfilter (~waterfilt@replaced-ip )
3182 [23:10:12] *** Joins: macamic (~macamic@replaced-ip )
3183 [23:10:12] *** Joins: yonder (~yonder@replaced-ip )
3184 [23:10:29] <dob1> well at the end I did it BUT I have this strange behaviour. cat my_copied_files |sort |uniq |wc -l let's say 1000, find dir -type f -name filename -exec cat {} \; |sort |uniq |wc -l 1001, they differ and the one with one line more has a duplicated line.... why....
3185 [23:10:34] *** Joins: openface (~openface@replaced-ip )
3186 [23:10:45] *** Joins: tme520 (~tme520@replaced-ip )
3187 [23:11:14] <greycat> what in the hell is "cat my_copied_files" supposed to be, and why are you lying about the numbers?
3188 [23:11:39] <EmleyMoor> Your cat has been trying to copy your files?
3189 [23:12:29] <dob1> I finally copied all the files with the same name in one dir, using the rename "strategy" that I said before. now I was doing this test, concatenating them and counting unique lines
3190 [23:12:57] *** Quits: led_belly (~led_belly@replaced-ip ) (Ping timeout: 268 seconds)
3191 [23:12:59] <dob1> and I have a number, but with the find command that I wrote before I don't have the same result....
3192 [23:13:11] <greycat> but instead of pasting the ACTUAL command you ran and the ACTUAL resulting number, you decided you would write a DIFFERENT command here, and make up a DIFFERENT number
3193 [23:13:29] <greycat> This is pathological. *plonk*
3194 [23:13:41] <dob1> it is the actual command
3195 [23:14:52] *** Joins: led_belly (~led_belly@replaced-ip )
3196 [23:14:54] <mutante> i tried your command but it fails. find: ‘dir’: No such file or directory
3197 [23:15:07] *** Quits: jnavila (~jnavila@replaced-ip ) (Remote host closed the connection)
3198 [23:15:32] <dob1> I understand, it's my fault. I am not explaing it in the right way and it's difficult without the real data...
3199 [23:15:45] <dvs> mutante, dir is the name of the directory
3200 [23:15:47] *** Quits: tekmans13 (~tekmans@replaced-ip ) (Ping timeout: 276 seconds)
3201 [23:16:11] <greycat> Yes, I have many directories named 'dir'. It is such a great name.
3202 [23:16:19] <dvs> heh
3203 [23:16:20] *** Quits: asymptotically (~asymptoti@replaced-ip ) (Quit: Leaving)
3204 [23:16:20] *** Quits: macamic (~macamic@replaced-ip ) (Quit: Leaving)
3205 [23:16:46] <slimefoot> ~/dir.d
3206 [23:16:56] *** Joins: greatgatsby (~greatgats@replaced-ip )
3207 [23:16:57] <greycat> Heretic!
3208 [23:16:59] <mutante> dvs: "cat my_copied_files" != "cat the contents of all the files"
3209 [23:17:28] <dob1> don't waste your time, nevermind
3210 [23:17:43] <mutante> dob1: what is inside "my_copied_files" to begin with?
3211 [23:17:46] *** Quits: srgg (~srgg@replaced-ip ) (Quit: srgg)
3212 [23:18:01] <mutante> really the content of all the files?
3213 [23:18:11] *** Joins: BCMM (~BCMM@replaced-ip )
3214 [23:18:15] *** Joins: MenschZwoNull (~MenschZwo@replaced-ip )
3215 [23:18:45] <dob1> mutante, it's related to the question I asked before, they are the copy of the files that I found with find
3216 [23:18:46] *** Quits: chimp (~chimp@replaced-ip ) (Ping timeout: 265 seconds)
3217 [23:19:10] <dob1> but concatenating them and passing them to sort, uniq they differ...
3218 [23:19:38] <greycat> If I were copying files around, and wanted to ensure that I had copied all of them, I would start by counting the *number of files*.
3219 [23:19:48] <dob1> I did it
3220 [23:20:05] <greycat> Not the number of unique lines in the concatenation of all their contents. I mean, come on.
3221 [23:20:05] <dob1> and I put the output in two different files and I tested them with kdiff3
3222 [23:20:09] <slimefoot> dob1: so `my_copied_files` is actually a file that is the concatenation of all the files you traverse with `find` there?
3223 [23:20:22] *** Joins: macamic (macamic@replaced-ip )
3224 [23:20:23] <dob1> and they differ for one line that is duplicated and for sure this is related to the line separator, but I don't understand why
3225 [23:20:39] *** Joins: rander2 (~rander@replaced-ip )
3226 [23:20:43] <slimefoot> dob1: diff the two outputs, and see where/how (and why) they differ
3227 [23:20:44] <rander2> hello all
3228 [23:20:44] <dob1> slimefoot, yes but after I copied them in another directory
3229 [23:21:10] <mutante> If i wanted to ensure i had copied all files i would rsync and then repeat the command.
3230 [23:21:12] <dob1> slimefoot, as I said the file with +1 line has a duplicated line... (for sure is the line separator)
3231 [23:21:31] <rander2> anyone know how install falkon browser on deb 9.11 ? I don't found it on repository
3232 [23:21:39] <mutante> dob1: and what is the duplicated line?
3233 [23:21:43] <metbsd> so clonezilla can clone entire linux drive to another
3234 [23:21:59] <slimefoot> dob1: in unix, there are no "line separators", but just "end of lines" - that might sound pedantic, but in this case, very relevant
3235 [23:22:05] <nvz> ,v falkon
3236 [23:22:06] <judd> Package: falkon on amd64 -- buster: 3.0.0-3; bullseye: 3.1.0+dfsg1-6; sid: 3.1.0+dfsg1-6
3237 [23:22:09] *** Quits: tvm (~tvm@replaced-ip ) (Ping timeout: 265 seconds)
3238 [23:22:17] <dvs> metbsd, yes
3239 [23:22:37] *** Quits: dionysus69 (~Thunderbi@replaced-ip ) (Ping timeout: 240 seconds)
3240 [23:22:40] <nvz> ,depends falkon
3241 [23:22:41] <judd> Package falkon in buster/amd64 -- depends: libqt5sql5-sqlite, libc6 (>= 2.14), libgcc1 (>= 1:3.0), libkf5wallet-bin, libkf5wallet5 (>= 4.96.0), libqt5core5a (>= 5.9.0~beta), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.7.0), libqt5network5 (>= 5.0.2), libqt5positioning5 (>= 5.6.0), libqt5printsupport5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2), libqt5quickwidgets5 (>= 5.4.0), libqt5sql5 (>=
3242 [23:22:42] <judd> 5.0.2), libqt5webchannel5 (>= 5.6.1), libqt5webenginecore5 (>= 5.9.0), libqt5webenginewidgets5 (>= 5.9.0), libqt5widgets5 (>= 5.7.0), libqt5x11extras5 (>= 5.6.0), libssl1.1 (>= 1.1.0), libstdc++6 (>= 5), libxcb1.
3243 [23:22:47] *** Quits: SiAnDoG (~514nDoG@replaced-ip ) (Remote host closed the connection)
3244 [23:22:49] <metbsd> dvs, will it clone boot loader too?
3245 [23:22:53] <dvs> yes
3246 [23:23:03] <rander2> I have deb 9.11 not 10
3247 [23:23:13] *** Joins: SiAnDoG (~514nDoG@replaced-ip )
3248 [23:23:14] <nvz> rander2: yes well perhaps you should upgrade
3249 [23:23:26] <nvz> that package requires qt5 for one thing
3250 [23:23:36] *** Joins: lpopov (~lpopov@replaced-ip )
3251 [23:23:40] <mutante> dob1: as others said. write the output of both commands to a file and then use diff to see the line that is different
3252 [23:23:41] *** Joins: tvm (~tvm@replaced-ip )
3253 [23:23:58] *** Quits: lpopov (~lpopov@replaced-ip ) (Client Quit)
3254 [23:23:59] *** Joins: fstd_ (~fstd@replaced-ip )
3255 [23:24:04] *** Quits: greycat (~wooledg@replaced-ip ) (Quit: They see me clawin' the love seat / They won't do nothin' 'cause I'm cute and furry)
3256 [23:24:19] <mutante> dob1: but also i would recommend rsync to copy stuff
3257 [23:24:21] <rander2> nvz, so falkon there is in deb. 10 repository and not in deb.9.11 ?
3258 [23:24:43] <dob1> mutante, I was not able to use rsync in this case
3259 [23:25:06] <dvs> ,v rander2
3260 [23:25:07] <judd> No package named 'rander2' was found in amd64.
3261 [23:25:13] <nvz> rander2: thats correct
3262 [23:25:15] <dvs> ,v falkon
3263 [23:25:16] <judd> Package: falkon on amd64 -- buster: 3.0.0-3; bullseye: 3.1.0+dfsg1-6; sid: 3.1.0+dfsg1-6
3264 [23:25:22] <mutante> dob1: exfiltrating data from hacked machine ?:o :)
3265 [23:25:27] <nvz> ,checkbackport
3266 [23:25:28] <judd> (checkbackport <packagename> [--fromrelease <sid>] [--torelease <stable>] [--arch <amd64>] [--verbose]) -- Check that the build-dependencies listed by a package in the release specified as "fromrelease" are satisfiable for in "torelease" for the given host architecture. By default, a backport from unstable to the current stable release and amd64 are used.
3267 [23:25:57] <nvz> ,checkbackport falkon -fromrelease buster --torelease stretch
3268 [23:25:58] <judd> (checkbackport <packagename> [--fromrelease <sid>] [--torelease <stable>] [--arch <amd64>] [--verbose]) -- Check that the build-dependencies listed by a package in the release specified as "fromrelease" are satisfiable for in "torelease" for the given host architecture. By default, a backport from unstable to the current stable release and amd64 are used.
3269 [23:26:01] <rander2> ok, I have a 32bit deb9.11, so it isn't
3270 [23:26:08] <nvz> ,checkbackport falkon --fromrelease buster --torelease stretch
3271 [23:26:09] <judd> Backporting package falkon in buster→stretch/amd64: all build-dependencies satisfied using stretch.
3272 [23:26:10] <dob1> mutante, no, nothing like this
3273 [23:26:30] *** Quits: The_Loko (~The_Loko@replaced-ip ) (Quit: Leaving)
3274 [23:26:40] <nvz> rander2: you could attempt to backport it.. i thought stretch only had qt4 but seems it does have qt5
3275 [23:26:55] <mutante> dob1: ok. well you already got the full commands. all you need to do is add "> file1" and "> file2" to them and then "diff file1 file2"
3276 [23:27:07] <nvz> rander2: /msg dpkg ssb
3277 [23:27:36] <rander2> what is ssb ?
3278 [23:27:48] <mutante> dpkg: tell rander2 about ssb
3279 [23:27:48] <nvz> rander2: a proceedure for a simple sid backport
3280 [23:27:57] *** Quits: fstd (~fstd@replaced-ip ) (Ping timeout: 240 seconds)
3281 [23:27:57] *** fstd_ is now known as fstd
3282 [23:28:34] <nvz> rander2: apt will fetch the SOURCE from a newer branch and attempt to build the package against the current version of libraries and dependencies in your branch
3283 [23:28:44] <openface> how can i remove debian keyring that asks me for some apps sometimes?
3284 [23:28:48] <openface> to disable it
3285 [23:29:38] <rander2> replaced-url
3286 [23:30:00] *** Joins: donofrio_ (~donofrio@replaced-ip )
3287 [23:30:41] <nvz> rander2: change the deb-src line on line 10 to read "sid" instead of "stretch"
3288 [23:31:06] <dob1> mutante, I isolated the 2 lines that are "different" why they are different ? replaced-url
3289 [23:31:12] <nvz> rander2: apt update && apt build-dep falkon && apt -b source falkon
3290 [23:31:16] *** Joins: kupi (uid212005@replaced-ip )
3291 [23:31:52] <dob1> mutante, this is diff -u with the 2 files, one with each line that I find duplicate in the main file. I don't know if I am clear
3292 [23:32:32] <rander2> ok, but buster is deb10, I have 9.11 32bit here, sorry
3293 [23:32:41] *** Quits: LorD_n1c0w (~igora@replaced-ip ) (Ping timeout: 276 seconds)
3294 [23:32:58] *** Quits: patterson (~patterson@replaced-ip ) ()
3295 [23:33:29] <dob1> kdiff3 says that they are equal as text but not binary equals....
3296 [23:33:33] *** Joins: xet7 (~xet7@replaced-ip )
3297 [23:33:57] <rander2> nvz, this command compile falkon from source
3298 [23:34:20] <slimefoot> dob1: what's the "duplicate" line, though? if they were really duplicate, `uniq` would've dropped one of them
3299 [23:34:41] <slimefoot> so I'm assuming they only *look* duplicate, but are really different
3300 [23:34:47] *** Joins: wanqcrypt (~adilcan@replaced-ip )
3301 [23:35:00] <slimefoot> (e.g. non-printable character, or carriage return, or...)
3302 [23:35:38] *** Quits: macamic (macamic@replaced-ip ) (Quit: Leaving)
3303 [23:35:54] *** Quits: openface (~openface@replaced-ip ) (Remote host closed the connection)
3304 [23:36:41] <dob1> slimefoot, I am thinking the same, but then when I do the same with the copied files it behaves in different way, maybe because the files are read in different order ? ok nevermind I don't want to waste your time
3305 [23:37:36] <rander2> E: Unable to find a source package for falkon
3306 [23:37:37] *** Quits: oxek (qjvl@replaced-ip ) (Ping timeout: 265 seconds)
3307 [23:37:56] *** Quits: xet7 (~xet7@replaced-ip ) (Remote host closed the connection)
3308 [23:37:56] <mutante> dob1: let's try "-b" and "-w" with the diff command and see if that makes it go away. those are options to ignore
3309 [23:38:00] <mutante> whitespace and stuff
3310 [23:38:43] <mutante> rander2: your OS is outdated
3311 [23:39:01] *** debhelper sets mode: +l 1591
3312 [23:39:05] *** Joins: xet7 (~xet7@replaced-ip )
3313 [23:39:08] <rander2> mutante, no, debian 9.11 is not outdated, sorry
3314 [23:39:14] <dob1> mutante, they are the same using -b and -w
3315 [23:39:15] <slimefoot> dob1: concatenation in a different order might indeed be a plausible explanation, yeah
3316 [23:39:33] <slimefoot> (mostly if you've got any files where the last line does not end with an EOL)
3317 [23:39:46] *** Quits: TheWizard (~thewizard@replaced-ip##) (Quit: KVIrc 5.0.0 Aria ##replaced-url
3318 [23:40:39] <slimefoot> ... although, then you'd get otherwise differing lines as well
3319 [23:40:43] *** Joins: mnemonic (~semeion@replaced-ip )
3320 [23:40:44] *** Joins: obengdako (~obengdako@replaced-ip )
3321 [23:41:35] *** Quits: scde (~scde@replaced-ip ) (Ping timeout: 246 seconds)
3322 [23:42:10] <mutante> dob1: it must be what slimefoot said.. file where the last line does not end with EOL
3323 [23:42:50] *** Joins: OS-54258 (~OS-54258@replaced-ip )
3324 [23:42:56] <slimefoot> that would explain differing line count after a `uniq` - but if the diff is only a single empty line, as they say,... I'm not so sure anymore
3325 [23:42:57] *** Quits: sedrosken (~sedrosken@replaced-ip ) (Ping timeout: 240 seconds)
3326 [23:43:10] *** Quits: rainfyre (~rainfyre@replaced-ip ) (Ping timeout: 268 seconds)
3327 [23:43:17] <OS-54258> /msg NickServ Identify OS-54258_freeman Fakeaccount
3328 [23:43:20] *** Quits: semeion (~semeion@replaced-ip ) (Ping timeout: 246 seconds)
3329 [23:43:33] *** Quits: tommyfun (~Tom@replaced-ip ) (Quit: Leaving)
3330 [23:43:57] *** Joins: macamic (macamic@replaced-ip )
3331 [23:44:11] * slimefoot coughs
3332 [23:44:15] *** Joins: rainfyre (~rainfyre@replaced-ip )
3333 [23:44:50] <dob1> slimefoot, mutante I used: | sed 's/\r//g' |sort |uniq and now the number of lines is the same
3334 [23:45:29] <nvz> sort -u fwiw
3335 [23:45:41] <nvz> and awk could replace all three commands
3336 [23:46:05] <nvz> or even find uniq/dup lines without sorting them
3337 [23:46:56] *** Quits: macamic (macamic@replaced-ip ) (Client Quit)
3338 [23:47:00] <dob1> strict ordering; what does it mean with this?
3339 [23:47:16] <dob1> (-u of sort)
3340 [23:47:48] <slimefoot> it's just weird that that \r would somehow be missing (or transformed to a regular \n) in the file
3341 [23:47:59] <nvz> echo -e "foo\nfoo\nbar\nbar"|sort -u
3342 [23:48:03] <nvz> echo -e "foo\nfoo\nbar\nbar"|sort|uniq
3343 [23:48:13] <slimefoot> printf
3344 [23:48:56] *** Quits: obengdako (~obengdako@replaced-ip ) (Ping timeout: 240 seconds)
3345 [23:49:35] *** Quits: zyun (~zyun@replaced-ip ) (Ping timeout: 276 seconds)
3346 [23:49:42] *** Joins: gouhoband (~gouhoband@replaced-ip )
3347 [23:49:44] <warsoul> hi guys
3348 [23:49:50] <gouhoband> hi guys
3349 [23:49:54] <gouhoband> haha jinx
3350 [23:49:56] <annadane> hi guys
3351 [23:49:59] <warsoul> when i turn on my pc sometimes has no wifi connection
3352 [23:50:03] <slimefoot> hy guis
3353 [23:50:06] <warsoul> then i restart it and is working
3354 [23:50:16] *** Quits: ecto (~ectospasm@replaced-ip ) (Quit: WeeChat 2.3)
3355 [23:50:20] <dob1> anyway it was the \r and the different concat order the problem. I am sure now
3356 [23:50:37] <dob1> thanks for the help
3357 [23:50:56] <nvz> its also more economical to do the uniq/sort first :P
3358 [23:51:17] <slimefoot> warsoul: how do you manage your network?
3359 [23:51:20] <nvz> well I guess thats not necessarily true
3360 [23:51:42] *** Joins: LorD_n1c0w (~igora@replaced-ip )
3361 [23:51:48] * nvz wanders off
3362 [23:52:11] *** Quits: Specialist (~tg@replaced-ip ) (Ping timeout: 276 seconds)
3363 [23:52:24] *** Joins: ectospasm (~ectospasm@replaced-ip )
3364 [23:52:29] <warsoul> slimefoot what you mean with manage?
3365 [23:52:50] *** Quits: rainfyre (~rainfyre@replaced-ip ) (Ping timeout: 276 seconds)
3366 [23:53:14] *** Quits: winy (~vince@replaced-ip ) (Quit: Leaving.)
3367 [23:53:29] *** Quits: emOne (~emOne@replaced-ip ) (Ping timeout: 276 seconds)
3368 [23:54:58] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
3369 [23:55:51] <slimefoot> warsoul: I'm trying to find out whether I shall tell you to observe what wpa_supplicant is doing, or whether to somehow look up something with network manager (in which case I cannot really help)
3370 [23:56:40] *** Quits: eremos (~eremos@replaced-ip ) ()
3371 [23:57:24] *** Joins: brettgilio (~brettgili@replaced-ip )
3372 [23:58:07] <warsoul> slimefoot this problem started happening couple of days ago
3373 [23:58:09] <warsoul> was working fine
3374 [23:58:25] *** Joins: aloa (330fce43@replaced-ip )
3375 [23:58:35] <slimefoot> it was working fine, until it wasn't
3376 [23:58:50] *** Quits: hilt (~hilt@replaced-ip ) (Remote host closed the connection)
3377 [23:59:01] *** debhelper sets mode: +l 1585
3378 [23:59:18] *** Joins: hilt (~hilt@replaced-ip )
3379 [23:59:26] *** Parts: aloa (330fce43@replaced-ip ) ()
3380 [23:59:27] <slimefoot> warsoul: so how do you manage your network? are you using NetworkManager? ifupdown? something else?
3381 [23:59:32] *** Quits: mibo (~mibo@replaced-ip ) (Remote host closed the connection)
3382 [23:59:57] *** Joins: obengdako (~obengdako@replaced-ip )
↑ top
context: nick names on moving displays as market values
#debian Freenode IRC channel closed on 2021-06-01
contact: a @ her0. be