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:04] <mawk> I don't know what a port bond is, with my VMs and containers I never needed it
1 [00:00:19] <mawk> I use various bridges and either veth for containers or macvtap for VMs
2 [00:00:48] *** Joins: Nefertiti (~Nefertiti@replaced-ip )
3 [00:00:56] <somiaj> mikeliss: that's fine, scripts to recover will work to. I was just giving an alternative.
4 [00:00:58] *** Joins: AlbinoStoic (47c9e13f@replaced-ip )
5 [00:01:06] <mikeliss> I'm probably using the wrong terminology. The idea is to have two physical ports work together as one.
6 [00:01:18] <mikeliss> I appreciate it, somiaj.
7 [00:01:20] *** Quits: thatpythonguy (~john@replaced-ip ) (Quit: WeeChat 2.3)
8 [00:01:24] <mawk> what for ? to turn your computer into a switch ?
9 [00:01:24] *** Quits: omonk (~omonk@replaced-ip ) (Quit: omonk)
10 [00:01:26] <mawk> that's a bridge then yes
11 [00:01:55] *** Joins: omonk (~omonk@replaced-ip )
12 [00:01:57] <mikeliss> mawk: Better performance (mostly) and reliability if one ethernet port goes down.
13 [00:02:09] <mawk> that's bonding then, I guess
14 [00:02:09] *** Quits: verm1n (~verm1n@replaced-ip ) (Read error: Connection reset by peer)
15 [00:02:17] <mikeliss> Yeah? That's what I was saying?
16 [00:02:20] <AlbinoStoic> That's bonding
17 [00:02:21] <mawk> I guess
18 [00:02:27] <mikeliss> Or intending to?
19 [00:02:28] <AlbinoStoic> and you have various bond modes to pick whether it is reliable or performant
20 [00:02:43] <AlbinoStoic> It generally doesn't do both at the same time (just due to MACs and such)
21 [00:02:55] <mikeliss> Yeah, so I want that + a bridge for KVM.
22 [00:03:09] *** Joins: verm1n (~verm1n@replaced-ip )
23 [00:03:13] <mawk> bridging is like a switch or a hub
24 [00:03:21] <AlbinoStoic> e.g: either you have a policy that handles one connection per port, iterating per connection to balance; and others that try to send packets in the same connection across multiple ports, but this can confuse switches and other machines.
25 [00:04:07] <AlbinoStoic> KVM Bridging especially, just exposes your virtual machines directly to your host network, as unique devices (they don't look like you.) Your host machine becomes a dumbswitch for the VM traffic.
26 [00:04:23] <mawk> yeah, security wise it's not very good mikeliss
27 [00:04:32] <mawk> but I'm sure he meant bridging all the VMs together AlbinoStoic
28 [00:04:35] <mawk> that's what people usually do
29 [00:04:43] <mawk> then use routing and NAT
30 [00:05:17] <mikeliss> I'm new to setting this up, but I think my goal is to have an IP address for the host and an IP address for the guest.
31 [00:05:18] <AlbinoStoic> and/or you just enable "promiscuous bridging" in virtualbox, virt-manager, etc
32 [00:05:22] <AlbinoStoic> or brctl promiscuous on
33 [00:05:23] <mikeliss> And I think a bridge accomplishes that?
34 [00:05:24] <mawk> but on the same network mikeliss ?
35 [00:05:29] <mikeliss> Yeah
36 [00:05:33] <AlbinoStoic> no requirement for NAT, etc. (unless internet incoming)
37 [00:05:36] <mawk> ah, yeah so you want the dumb bridging
38 [00:05:45] <AlbinoStoic> dumb bridging is the easiest
39 [00:05:48] <mawk> so you need to be aware that your VM can talk to anyone on your other network
40 [00:05:49] <mikeliss> I like easy.
41 [00:05:55] <mawk> NAT isn't especially hard either
42 [00:05:58] <mawk> it's like 2 commands
43 [00:06:01] <AlbinoStoic> make a br0 , but eth0 (or enp0s1f6) under it, put VMs under it too, done
44 [00:06:19] <mawk> sysctl -w net.ipv4.conf.all.forwarding=1; iptables -t nat -A POSTROUTING -s $VM_RANGE ! -d $VM_RANGE -j MASQUERADE
45 [00:06:20] <AlbinoStoic> brctl set promiscuous or w/e to enable inter-VM chatter
46 [00:06:22] <mawk> for the dumbest rule you can do
47 [00:06:29] <mikeliss> We have a private network for the servers. Guests chatting with each other is by design.
48 [00:06:30] <mawk> bridges are always promiscuous AlbinoStoic no ?
49 [00:06:40] <mikeliss> It's only three physical machines.
50 [00:06:45] <mawk> even when it doesn't has the IFF_PROMISC flag
51 [00:06:45] <AlbinoStoic> mawk: You can turn it off in virtualbox, virt-manager or I think in brctl as well
52 [00:06:50] *** Quits: jmarsac (~jmarsac@replaced-ip##) (Quit: Nettalk6 - ##replaced-url
53 [00:06:55] <mawk> yeah but I think it doesn't matter to linux
54 [00:06:57] <AlbinoStoic> then each virtual adapter only gets connected to the host adapter, not to eachother too
55 [00:07:10] <AlbinoStoic> so packets must then go to the host , switch , host , VM -- as opposed to VM <--> VM
56 [00:07:31] <mawk> ah, that's not the same promiscuous as usual then; promiscuous is getting frames for MACs other than you
57 [00:07:41] <mawk> I mixed the two
58 [00:08:08] <AlbinoStoic> If you have VLAN tagging, port trunking, a real switch, literally anything special; promiscuous off can make VMs look like uniquely isolated devices.
59 [00:08:16] <mawk> if it's by design you can go on mikeliss
60 [00:08:26] <mawk> even though even in that case with a few tweaks here and there you can firewall that with iptables
61 [00:08:31] <mawk> so you keep a little security
62 [00:08:38] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
63 [00:09:00] <mikeliss> I'd be happy to have more security, but I'm really focused on getting functionality first.
64 [00:09:00] <mawk> you enable net.bridge.bridge-nf-call-iptables
65 [00:09:13] <mawk> then using a special match rule in iptables you can filter the traffic going through the bridge
66 [00:09:20] <mawk> instead of using the very lame ebtables command
67 [00:09:53] <mikeliss> Kinda lost me here, but the final result is what? Specific ports to specific guests?
68 [00:10:02] <mawk> no, just generic firewall
69 [00:10:08] <AlbinoStoic> Security at all, vs ... all packets "just work"
70 [00:10:08] <mawk> you will be able to filter what passes through the bridge
71 [00:10:10] *** Joins: violentE (violentE@replaced-ip )
72 [00:10:18] <mikeliss> Filter by what?
73 [00:10:19] <AlbinoStoic> by default, a bridge, or dumb switch, passes all packets in all directions
74 [00:10:20] <mikeliss> Port?
75 [00:10:23] <AlbinoStoic> anything
76 [00:10:24] *** Quits: BrianG61UK_ (~BrianG61U@replaced-ip ) (Ping timeout: 258 seconds)
77 [00:10:30] <mikeliss> What's typical?
78 [00:10:32] <mawk> you can filter by bridge port, and by anything you want
79 [00:10:39] <AlbinoStoic> iptables lets you filter by proto, port, dst, src, ... content... etc
80 [00:10:41] <mawk> yeah you can say this vm can only talk to this host on this port
81 [00:10:55] *** Quits: pringau (~pringau@replaced-ip ) (Remote host closed the connection)
82 [00:11:01] <mawk> if you don't enable this sysctl switch you can only filter by ip, and vm can spoof their IPs
83 [00:11:07] <mawk> since they're right on the bridge they can do anything
84 [00:11:12] <AlbinoStoic> ^^^^^
85 [00:11:12] <mawk> they can even impersonate the host
86 [00:11:19] <AlbinoStoic> Which gets real fun....
87 [00:11:24] <AlbinoStoic> ebtables prevents that by default, which is nice
88 [00:11:29] <mikeliss> That seem useful.
89 [00:11:30] <mawk> yeah
90 [00:11:39] <AlbinoStoic> vs iptables w/o configuring the nf-bridge feature
91 [00:11:40] <mikeliss> Is there a larger howto on this either of you'd recommend?
92 [00:11:40] <mawk> my sysctl command allows you to use iptables instead of ebtables for all IP traffic
93 [00:11:52] <mawk> you have the same for ip6tables and arptables
94 [00:12:02] <AlbinoStoic> xtables-legacy and friends
95 [00:12:07] *** Quits: tagomago (~tagomago@replaced-ip ) (Quit: Konversation terminated!)
96 [00:12:11] <AlbinoStoic> Erm... as per a guide...
97 [00:12:20] *** Joins: frankb (~frankb@replaced-ip )
98 [00:12:20] <AlbinoStoic> Cisco bridging documentation was a great read for the theory
99 [00:12:22] *** Quits: dethos (~dethos@replaced-ip ) (Quit: Time to Go!)
100 [00:12:23] <mikeliss> I'm also sort of....um...baffled by all these crazy sysctl commands. Like, wtf is that thing and where did it come from? It seems a new system has passed me by.
101 [00:12:24] <mawk> I don't like ebtables since it has a horrible interface, but iptables is pretty nice
102 [00:12:33] <mawk> it's config options for the kernel
103 [00:12:34] <AlbinoStoic> lots of diagrams and explanation as to what it does on a spec level.
104 [00:12:35] <mawk> very simple interface
105 [00:12:42] <mawk> it's a bunch of files in the /proc/sys directory
106 [00:12:49] <mawk> you write to them like they were real files
107 [00:12:49] <AlbinoStoic> mawk: One of the reasons I am building my own distro: no user-space firewall
108 [00:12:54] <mawk> nice
109 [00:13:14] <mawk> well netfilter is in the kernel
110 [00:13:18] <AlbinoStoic> ksyscall('bpf', rules_ptr);
111 [00:13:18] <mawk> but I get what you mean
112 [00:13:20] <AlbinoStoic> :D
113 [00:13:25] <AlbinoStoic> bpf > netfilter
114 [00:13:27] <mikeliss> Wait, so where do I start my googling on this for a simple but effective way of doing this?
115 [00:13:40] <mikeliss> I can't quite keep up with the convo/jargon.
116 [00:13:41] *** Quits: frankb (~frankb@replaced-ip ) (Client Quit)
117 [00:13:42] <AlbinoStoic> mikeliss: Break it down, it's a lot.
118 [00:13:46] <AlbinoStoic> What do you want to learn first?
119 [00:13:50] <mawk> of doing what mikeliss ? you can do the firewall later
120 [00:13:50] <phogg> and soon bpf will be part of netfilter, hopefully
121 [00:14:03] <mawk> firewall isn't required for normal operations in most cases
122 [00:14:04] *** Joins: farkbarn (~frankb@replaced-ip )
123 [00:14:11] <mikeliss> firewall later is my plan, was hoping for something to bookmark now so I can review later.
124 [00:14:16] <mawk> then you have some convoluted network setups where firewall rules are needed, but you're not there yet
125 [00:14:30] <mikeliss> For now I just want to get the danged static bridge/bond connection up.
126 [00:14:35] <mawk> well I just read man iptables and saw a few diagrams, that's how I learnt networking
127 [00:14:45] *** Quits: naicen (~naicenlee@replaced-ip ) (Remote host closed the connection)
128 [00:14:55] <mawk> also I had one week-end to move my entire company offices and setup the switches and routers, while knowing nothing to network
129 [00:14:57] <AlbinoStoic> So, to set up bridging for the first time-- consult a hypervisor documentation.
130 [00:14:58] <mawk> that helped me get going
131 [00:15:07] <AlbinoStoic> For example, SolusVM Node Installation -- KVM Bridging tutorial
132 [00:15:09] *** Quits: Thedarkb-T60 (~Thedarkb-@replaced-ip ) (Ping timeout: 250 seconds)
133 [00:15:13] <mawk> if you want to get your hands dirty you can try making a bridge by hand mikeliss
134 [00:15:27] <AlbinoStoic> That should guide you through exactly that process ^
135 [00:15:32] <mikeliss> I absolutely do not want my hands any dirtier than needed. :)
136 [00:15:34] <phogg> definitely a good idea to do it by hand at least once
137 [00:15:38] <AlbinoStoic> buuuut, what's your distro again?
138 [00:15:44] <mawk> brctl is outdated, now you can use ip
139 [00:15:46] *** Quits: tekmans (~tekmans@replaced-ip ) (Ping timeout: 258 seconds)
140 [00:15:49] <AlbinoStoic> rh/fedora/centos or debian/ubuntu/whatever based?
141 [00:15:54] <mikeliss> My distro? Debian.
142 [00:16:00] <AlbinoStoic> take a backup of your network config before you start, as you will take yourself offline repeatedly
143 [00:16:01] *** Quits: hphhphhphhphhphh (hphhphhphh@replaced-ip ) ()
144 [00:16:06] <AlbinoStoic> Yeah, so backup /etc/network/interfaces
145 [00:16:10] <mikeliss> Yeah, I did that.
146 [00:16:27] <AlbinoStoic> then make sure you have .. .what? inetutils , iproute2 and bridge-utils ?
147 [00:16:35] <AlbinoStoic> or were those replaced too after brctl went?
148 [00:16:46] *** Quits: gusnan (~gusnan@replaced-ip ) (Ping timeout: 246 seconds)
149 [00:17:06] <mawk> once you know the trick it's very simple, it takes like 3 steps for a container for instance (a VM a similar): you create a bridge with « ip link add br0 type bridge », you set this bridge as the master of your interface with « ip link set eth0 master br0 », you create a veth pair for use with your container « ip link add veth0 type veth peer name veth1 » and then you setup your container to use veth1 as its interface
150 [00:17:21] <mawk> then you up all the interfaces, add the addresses on br0 as usual
151 [00:17:25] <mawk> and you've got connectivity on the container
152 [00:17:33] <mawk> for a VM it's very similar, it's just macvtap instead of veth
153 [00:17:46] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
154 [00:17:53] <AlbinoStoic> The thing to remember: Your bridge takes your IP now, not your trunk port (eth0/emp0s1f6)
155 [00:18:00] <AlbinoStoic> that's what screwed me up for a while
156 [00:19:22] <mikeliss> mawk: The amount of magic in that "very simple" trick is boggling.
157 [00:19:22] *** Quits: aloo_shu (~atomic@replaced-ip ) (Read error: Connection reset by peer)
158 [00:19:24] <mawk> the equivalent in terms of /etc/network/interfaces is specifying bridge_ports eth0 in the iface block for the br0 bridge
159 [00:19:27] <mawk> lol mikeliss
160 [00:19:35] <mawk> ip is the swiss army knife for networking
161 [00:19:35] *** Quits: psilonux (~psilonux@replaced-ip ) (Ping timeout: 256 seconds)
162 [00:19:43] <AlbinoStoic> oh lawdy
163 [00:19:46] <mikeliss> There are a few of those.
164 [00:19:46] <mawk> more than the swiss army knife, it's the primary gateway to networking
165 [00:19:51] <AlbinoStoic> I just learned hand-routing the other day
166 [00:19:52] <mawk> no, it's the primary tool
167 [00:19:59] *** Joins: aloo_shu (~atomic@replaced-ip )
168 [00:20:01] *** Quits: patterson (~patterson@replaced-ip ) ()
169 [00:20:06] <AlbinoStoic> a newly learned respect for the `ip` tool vs previous tools
170 [00:20:06] <mawk> it's not just another tool, it's the primary command for setting up network
171 [00:20:17] *** Joins: mitrokov_ (~mitrokov@replaced-ip )
172 [00:20:21] <AlbinoStoic> `ip route` being so integral to getting anything working in a no-service network :X
173 [00:20:22] <mawk> if you want to get lower level than it you open a terrible netlink socket to the kernel and talk with binary commands
174 [00:20:24] <mikeliss> Good to know. I've seen a lot of sysctl being thrown around too, and ifconfig, and brctl, and whatever else.
175 [00:20:29] <mawk> from a script ip is the lower level you can get
176 [00:20:40] <AlbinoStoic> sysctl <-- changing system configuration in a reliable way
177 [00:20:41] <mawk> ifconfig is the predecessor of ip, it's deprecated now
178 [00:20:50] <mawk> ip replaces brctl, ifconfig, route, arp
179 [00:20:59] <mawk> it replaces all these; it also replaces tunctl, and some others
180 [00:21:13] <AlbinoStoic> the /etc/sysctl.(conf?cfg) file being where those changes can be persisted
181 [00:21:13] *** Quits: Spr1ng (~Spr1ng@replaced-ip ) (Quit: WeeChat 2.4)
182 [00:21:22] <mawk> .conf yes
183 [00:21:29] <mawk> .cfg is uncommon
184 [00:21:32] <AlbinoStoic> mawk: Why is `iproute` still a different subsys/binaries ?
185 [00:21:42] <mawk> what do you mean ?
186 [00:21:46] <mawk> ip is iproute
187 [00:21:48] <mawk> iproute is the name of the package
188 [00:21:49] <AlbinoStoic> e.g: `ip route` ([ip, route]) != `iproute`
189 [00:21:50] <phogg> but it does not replace tc, more's the pity
190 [00:21:51] <mawk> iproute2 rather
191 [00:21:59] <AlbinoStoic> iproute = a different binary , in busybox and GNU systems
192 [00:22:00] <mawk> ah, well it's a single binary AlbinoStoic
193 [00:22:01] *** Quits: towo` (~towo@replaced-ip ) (Remote host closed the connection)
194 [00:22:02] <mawk> with a lot of subcommands
195 [00:22:02] <AlbinoStoic> that has a different use, etc
196 [00:22:07] <mawk> ah I don't know about iproute
197 [00:22:14] <mawk> I guess it's the prevous version, now it's iproute2
198 [00:22:19] <mawk> it's the package name for ip
199 [00:22:22] <AlbinoStoic> It's more, I've never used it- I wonder if I can strip it from my distro
200 [00:22:28] <mawk> I guess you can yes
201 [00:22:30] <AlbinoStoic> `iproute` binary that is, since it doesn't come from the `iproute2` package
202 [00:22:41] <AlbinoStoic> Sweet, thanks.
203 [00:22:59] <mikeliss> Well, this has been edifying. I appreciate all the input.
204 [00:23:28] <mawk> so now you know the lowlevel command for setting up the network, it's ip
205 [00:23:30] *** Joins: kreyren (~kreyren@replaced-ip )
206 [00:23:37] <mawk> your /etc/network/interfaces config file uses ip
207 [00:23:42] <tobiasBora> Are we still supposed to edit files in /etc/X11/xorg? I though is was out of date, but I see quite a lot of ressource (not that old) refering to xorg.conf: replaced-url
208 [00:23:42] <mawk> you can do ifup -v to see that
209 [00:23:54] <mikeliss> I don't want to sound ungrateful, but I think that's one of the few things I definitively learned.
210 [00:23:59] <AlbinoStoic> tobiasBora: Not directly, unless you need a system-wide change.
211 [00:24:01] *** debhelper sets mode: +l 1533
212 [00:24:07] <AlbinoStoic> You normally want to use .Xconfig if it's available instead.
213 [00:24:16] *** Quits: Gaaab (~Gaaab@replaced-ip ) (Remote host closed the connection)
214 [00:24:19] <AlbinoStoic> (located in your home directory)
215 [00:24:25] *** Joins: runlevel7 (~runlevel7@replaced-ip )
216 [00:24:45] <mikeliss> If I make changes using ip, do those get persisted somewhere?
217 [00:24:47] <AlbinoStoic> ** ifup isn't guaranteed to be on modern systems anymore, package: ifupdown is depr in favor of raw `ip` usage
218 [00:24:51] <tobiasBora> AlbinoStoic: and I can use the same syntax as in Section "Pointer"...?
219 [00:24:51] <mawk> so yeah if you want to learn ip at your own rythm you can just use ifup -v to see which ip commands correspond to your /etc/network/interfaces file
220 [00:25:01] <AlbinoStoic> mikeliss: No, you have to write them in /etc/network/interfaces to persist
221 [00:25:04] <tobiasBora> AlbinoStoic: and also, how can I take the changes into account?
222 [00:25:05] <mawk> really AlbinoStoic ?
223 [00:25:11] <mawk> what is processing /etc/network/interfaces then ?
224 [00:25:30] <AlbinoStoic> Depends on the system. /etc/init.d/network on mine ,a shell script that calls `ip` various ways :/
225 [00:25:35] <mawk> ifconfig is deprecated, but ifup is just the thing that processes /etc/network/interfaces, it's higher level
226 [00:25:41] *** Joins: psilonux (~psilonux@replaced-ip )
227 [00:25:42] <mawk> I see
228 [00:25:53] <AlbinoStoic> Ubuntu 18.04 uses netplan now (eugh)
229 [00:25:59] <AlbinoStoic> so no network/interfaces file anymore
230 [00:26:05] <mikeliss> This is nuts.
231 [00:26:14] <mawk> good thing I use debian
232 [00:26:29] <AlbinoStoic> mikeliss: Yeah... don't worry about it too much. Everything changes, a lot
233 [00:26:51] *** Quits: CarlFK (~carl@replaced-ip ) (Quit: Leaving.)
234 [00:26:59] <mikeliss> So, I have to learn ip in order to make changes that I can also make by persisting the interfaces file, which I have to figure out how to do anyway because if I don't none of my changes with ip will do anything after a reboot.
235 [00:27:26] <mikeliss> AlbinoStoic: I guess so.
236 [00:27:34] *** Quits: madspn|afk (~madspn@replaced-ip ) (Remote host closed the connection)
237 [00:27:54] <mawk> you don't have to learn ip but it's sure useful
238 [00:28:02] *** Quits: melissa666 (~jess@replaced-ip ) (Ping timeout: 250 seconds)
239 [00:28:03] <mikeliss> kinda how I'm feeling atm.
240 [00:28:04] <mawk> also to make temporary changes to try out things before writing a config file
241 [00:28:18] <AlbinoStoic> Doing things with `ip` are safer at least in your case, where you can reboot to get your internet back. You could just as well be making changes one-by-one in the file, and asking the networking service to re-apply said file; HOWEVER;
242 [00:28:44] <AlbinoStoic> there are times when re-applying said file can simply "not work", due to the order of operations (e.g: you delete lines describing a bridge interface, then it doesn't know what to do with it)
243 [00:28:55] <mawk> yeah, this is a problem with ifupdown
244 [00:28:58] <AlbinoStoic> and then a reboot is necessary anyways , or manual fixing with `ip` command
245 [00:29:22] <mawk> usually you can down the interface, flush everything, do ifdown --force to force the internal ifupdown state to be down, then ifup it like normal
246 [00:29:22] <mikeliss> That sounds reasonable.
247 [00:29:46] <mikeliss> I suppose `ifdown --force -a` should provide a relatively clean slate.
248 [00:30:12] <mawk> for the internal ifupdown state yes
249 [00:30:18] <mawk> but for the real state I don't know
250 [00:30:25] <mawk> that's why I suggered all the ip command to flush state
251 [00:30:32] <mawk> but it's maybe not necessary, you'll se
252 [00:30:35] <mawk> see
253 [00:30:49] <mawk> you do « ip -c addr » to see the addresses, « ip -c route » to see the routes
254 [00:31:13] *** Joins: X-plor-R (X-plor-R@replaced-ip )
255 [00:32:14] *** Joins: Gragh65535 (~bemin@replaced-ip )
256 [00:32:18] *** Joins: yokisuci (~yokisuci@replaced-ip )
257 [00:33:15] *** Quits: AlbinoStoic (47c9e13f@replaced-ip ) (Ping timeout: 256 seconds)
258 [00:33:36] *** Joins: Henry151_ (bishop@replaced-ip )
259 [00:33:40] *** Quits: Henry151_ (bishop@replaced-ip ) (Client Quit)
260 [00:34:40] *** Quits: Tempesta (~Tempesta@replaced-ip ) (Read error: Connection reset by peer)
261 [00:38:21] *** Quits: Haudegen (~quassel@replaced-ip ) (Remote host closed the connection)
262 [00:38:23] <mikeliss> mawk, AlbinoStoic, does this look reasonable as a simple bridge connection: replaced-url
263 [00:38:38] *** Quits: retpoline (~retpoline@replaced-ip ) (Quit: quitting)
264 [00:38:38] <mikeliss> (I think I'm going to leave bonding as a second exercise and keep things simple at first.)
265 [00:39:05] <mawk> that's reasonable
266 [00:39:28] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
267 [00:39:36] <mawk> yeah but it's eno1 not eth1 mikeliss
268 [00:39:41] <mawk> not eth0 *
269 [00:39:43] <mawk> in the bridge_ports
270 [00:39:46] *** Joins: slv (~slv@replaced-ip )
271 [00:39:59] <mikeliss> Good catch. Thank you!
272 [00:40:02] <mawk> also the other bridge_* commands are superfluous I think, it's just grandma's recipe you find online
273 [00:40:10] <mawk> some people needed them for performance or something and it stuck
274 [00:40:23] <mikeliss> All I can find online are old recipes.
275 [00:40:37] <mikeliss> I mean, that's from the Debian wiki. :)
276 [00:40:44] *** Quits: SmearedBeard (~SmearedBe@replaced-ip ) (Ping timeout: 250 seconds)
277 [00:42:12] *** Joins: BeerHall (~Thunderbi@replaced-ip )
278 [00:42:13] <mikeliss> Alright, well, here goes nothing (using the command you offered earlier to revert if needed)
279 [00:42:16] *** Joins: Clarth (~clay@replaced-ip )
280 [00:42:53] *** Quits: f4cl3y (~f4cl3y@replaced-ip ) (Ping timeout: 246 seconds)
281 [00:43:37] *** Joins: dvs (~hibbard@replaced-ip )
282 [00:43:59] *** Quits: Clarth (~clay@replaced-ip ) (Remote host closed the connection)
283 [00:44:46] <mawk> good
284 [00:45:08] *** Quits: Sokol (~Sokol@replaced-ip ) ()
285 [00:46:47] <tobiasBora> Any idea why when I run "dev.enable(libevdev.EV_KEY.BTN_TOOL_PEN)" it stops being detected by xinput???
286 [00:46:47] *** Joins: d3xt35 (~d3xt35@replaced-ip )
287 [00:51:25] *** Quits: Brigo (~Brigo@replaced-ip ) (Ping timeout: 246 seconds)
288 [00:53:22] *** Quits: hypn0 (~h@replaced-ip ) (Ping timeout: 245 seconds)
289 [00:54:16] *** Joins: brokencycle (~brokencyc@replaced-ip )
290 [00:58:09] *** Quits: farkbarn (~frankb@replaced-ip ) (Remote host closed the connection)
291 [00:58:44] *** Joins: Guest3712 (~banana@replaced-ip )
292 [01:01:35] <mikeliss> mawk: I ended up doing a crobtab instead. Seemed safer to just replace the new interfaces file with a working one and reboot. Anyway, wasn't needed! I think the bridge connection is up, so that's 2/3 of my networking needs met. Last need is the bonded connection.
293 [01:02:01] <mawk> well you have to trust my blind bash skills but it's equivalent I think
294 [01:02:02] *** Quits: Guest86592 (~themsay@replaced-ip ) (Remote host closed the connection)
295 [01:02:04] *** Joins: dropkick500 (~dropkick5@replaced-ip )
296 [01:02:06] *** Quits: aloo_shu (~atomic@replaced-ip ) (Ping timeout: 272 seconds)
297 [01:02:10] <mawk> good
298 [01:02:14] *** Joins: sinner (~themsay@replaced-ip )
299 [01:02:16] <mikeliss> I'm sorry I didn't trust you. :)
300 [01:02:18] <mawk> well played
301 [01:02:20] <mawk> lol it's fine
302 [01:02:21] *** Quits: Gragh65535 (~bemin@replaced-ip ) (Quit: Gragh65535)
303 [01:02:28] <mawk> I wouldn't trust myself either for something like this
304 [01:02:31] <mawk> not without a few tests before
305 [01:02:38] *** sinner is now known as Guest9121
306 [01:02:49] <mikeliss> exactly. Cron I trust. Person from the internet...kinda.
307 [01:03:02] <mawk> echo 'setting'; sleep 5 && { echo 'unsetting'; } || { echo 'interrupted !'; }
308 [01:03:05] <mawk> my trick was this
309 [01:03:06] <mikeliss> Though with the amount of weirdness in the networking stack, I don't know why I trust cron anymore.
310 [01:03:16] *** Quits: Guest3712 (~banana@replaced-ip ) (Ping timeout: 250 seconds)
311 [01:03:18] <mawk> if you run this and ^C in the first 5 seconds it says interrupted, otherwise it says unsetting
312 [01:03:32] *** Quits: tonka123 (4b9436f5@replaced-ip ) (Quit: Page closed)
313 [01:03:34] <mikeliss> Yeah. I get that. I just don't trust all the setting and unsetting bits.
314 [01:03:35] <mawk> doesn't even echo interrupted actually, but the meaning is here
315 [01:03:48] *** Quits: cnrhkiyf (~cnrhkiyf@replaced-ip ) (Ping timeout: 245 seconds)
316 [01:04:01] *** debhelper sets mode: +l 1525
317 [01:04:08] <mawk> they were ip commands you can break down, if I remember I down addr flush, route flush, link set nomaster
318 [01:04:16] <mawk> respectively to flush addresses, route, bridge settings
319 [01:04:17] *** Joins: auk (~auk@replaced-ip )
320 [01:04:29] *** Quits: McLive (~McLive@replaced-ip ) (Ping timeout: 252 seconds)
321 [01:04:30] <mawk> I did*
322 [01:04:43] <mikeliss> I get it. I just don't trust it with having to put my ass in a car if wrong.
323 [01:05:05] *** Joins: torbo (~user@replaced-ip )
324 [01:06:16] *** Quits: karakedi (~eAC53C340@replaced-ip ) (Read error: Connection reset by peer)
325 [01:06:54] <mawk> lol
326 [01:06:55] <mawk> yeah
327 [01:07:20] <mawk> for my server I have management access if things go wrong
328 [01:07:28] *** Quits: iltiades (iltiades@replaced-ip ) (Ping timeout: 250 seconds)
329 [01:07:29] <mawk> I can connect to a virtual monitor/keyboard and fix things
330 [01:07:33] <mawk> even if everything went horribly wrong
331 [01:07:35] *** Joins: awal1 (~awal1@replaced-ip )
332 [01:07:47] <mikeliss> That via Rackspace console or something?
333 [01:08:02] <mawk> via the HP rack console yes
334 [01:08:04] <mawk> dunno about rackspace
335 [01:08:07] *** Quits: acidtripper (~acidtripp@replaced-ip ) (Ping timeout: 255 seconds)
336 [01:08:11] <mikeliss> Sounds similar.
337 [01:08:20] *** Joins: j0seph (~imj0seph@replaced-ip )
338 [01:08:21] *** Joins: iltiades (iltiades@replaced-ip )
339 [01:08:37] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 244 seconds)
340 [01:09:23] *** Joins: emergent_racoon (~emergent_@replaced-ip )
341 [01:09:24] *** Joins: rustbuckett (~downtime@replaced-ip )
342 [01:10:26] *** Quits: emergent_racoon (~emergent_@replaced-ip ) (Client Quit)
343 [01:13:49] *** Quits: gvth (~cell@replaced-ip ) (Ping timeout: 246 seconds)
344 [01:17:33] *** Quits: foolsh (~quassel@replaced-ip ) (Ping timeout: 245 seconds)
345 [01:19:16] *** Joins: foolsh (~quassel@replaced-ip )
346 [01:21:28] *** Quits: seekr (~seekr@replaced-ip ) (Ping timeout: 250 seconds)
347 [01:21:29] *** Quits: th0r (~th0r@replaced-ip ) (Quit: Leaving)
348 [01:21:56] *** Joins: Sollg3r (~ejakuk@replaced-ip )
349 [01:22:30] *** Joins: shibboleth (~shibbolet@replaced-ip )
350 [01:24:42] *** Joins: Qwerie_ (~qwertie@replaced-ip )
351 [01:25:28] *** Quits: GaneshRaju (~ganeshraj@replaced-ip ) (Ping timeout: 245 seconds)
352 [01:27:27] *** Quits: mikeliss (~mikeliss@replaced-ip ) (Quit: mikeliss)
353 [01:27:28] *** Quits: mvaenskae (~mvaenskae@replaced-ip ) (Ping timeout: 255 seconds)
354 [01:28:25] *** Joins: de4c (~deac@replaced-ip )
355 [01:28:31] *** Quits: Essadon (~Essadon@replaced-ip ) (Quit: Qutting)
356 [01:30:30] *** Joins: Old_Dog (~Old_Dog@replaced-ip )
357 [01:31:11] *** Joins: jimster (~jimster@replaced-ip )
358 [01:35:36] *** Quits: Uberius (~Uberius@replaced-ip ) (Remote host closed the connection)
359 [01:36:51] *** Joins: mthe878 (~mthe@replaced-ip )
360 [01:38:19] *** Quits: mitrokov_ (~mitrokov@replaced-ip ) (Quit: Leaving)
361 [01:39:37] *** Quits: debsan (~debsan@replaced-ip ) (Ping timeout: 244 seconds)
362 [01:39:55] *** Quits: sorko999 (~sorko999@replaced-ip ) (Quit: Leaving.)
363 [01:40:13] *** Quits: de4c (~deac@replaced-ip ) (Remote host closed the connection)
364 [01:40:39] *** Joins: CombatVet (~CombatVet@replaced-ip )
365 [01:41:41] *** Quits: dropkick500 (~dropkick5@replaced-ip ) (Read error: Connection reset by peer)
366 [01:42:38] *** Quits: prince_jammys (~mischa@replaced-ip ) (Ping timeout: 272 seconds)
367 [01:43:00] *** Joins: prince_jammys (~mischa@replaced-ip )
368 [01:45:19] *** Joins: patterson (~patterson@replaced-ip )
369 [01:45:25] *** Joins: GaneshRaju (~ganeshraj@replaced-ip )
370 [01:45:43] *** Joins: dropkick500 (~dropkick5@replaced-ip )
371 [01:46:03] *** Quits: shibboleth (~shibbolet@replaced-ip ) (Quit: shibboleth)
372 [01:46:10] *** Quits: dArK_IcE (~lawl@replaced-ip ) ()
373 [01:46:13] *** Joins: krytarik (~krytarik@replaced-ip )
374 [01:55:40] *** Quits: j0seph (~imj0seph@replaced-ip ) (Remote host closed the connection)
375 [01:55:54] <raidghost> Anyone here, got good luck with activate iommu ?
376 [01:56:24] <raidghost> Trying to pci passthrought a pci-e dvb-c card in libvirtd
377 [01:57:17] *** Quits: kini (~kini@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
378 [01:57:22] *** Joins: handsome_feng (~feng@replaced-ip )
379 [01:57:43] *** Joins: Blue_Hat (~TwinKam20@replaced-ip )
380 [02:00:41] *** Parts: CombatVet (~CombatVet@replaced-ip ) ("Leaving")
381 [02:01:05] *** Quits: de-facto (~de-facto@replaced-ip ) (Quit: See you around.)
382 [02:01:28] *** Joins: de-facto (~de-facto@replaced-ip )
383 [02:04:07] *** Joins: kini (~kini@replaced-ip )
384 [02:05:18] *** Quits: Nokaji (~Nokaji@replaced-ip##) (Quit: ##replaced-url
385 [02:09:03] *** Quits: Gurty (~princess@replaced-ip ) (Ping timeout: 264 seconds)
386 [02:10:02] *** Joins: yonder (~yonder@replaced-ip )
387 [02:10:32] *** Joins: elkalamar__ (elkalamar@replaced-ip )
388 [02:11:47] <SerajewelKS> i'm on a system with postfix installed but there is no "mail" binary in $PATH and no results for bin/mail on p.d.o!?
389 [02:12:54] *** Quits: elkalamar_ (elkalamar@replaced-ip ) (Ping timeout: 250 seconds)
390 [02:12:57] *** Quits: Blue_Hat (~TwinKam20@replaced-ip ) (Remote host closed the connection)
391 [02:13:00] *** Quits: SickzZ (~SickzZ@replaced-ip ) (Ping timeout: 268 seconds)
392 [02:13:02] <SerajewelKS> mmm apparently it's bsd-mailx and it's provided as an alternative -_-
393 [02:13:52] *** Quits: PileOfDirt (~DIRT@replaced-ip ) (Remote host closed the connection)
394 [02:13:53] *** Joins: th0r (~th0r@replaced-ip )
395 [02:14:18] *** Joins: devbaka- (~devbaka@replaced-ip )
396 [02:14:18] *** Quits: devbaka (~devbaka@replaced-ip ) (Ping timeout: 272 seconds)
397 [02:17:52] *** Joins: uNmowed (~Kaede@replaced-ip )
398 [02:18:12] *** Joins: SickzZ (~SickzZ@replaced-ip )
399 [02:18:30] *** Joins: mandeep (~mandeep@replaced-ip )
400 [02:18:33] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 268 seconds)
401 [02:20:47] *** Joins: electro33 (uid613@replaced-ip )
402 [02:20:56] *** Joins: dreamon_ (~dreamon@replaced-ip )
403 [02:21:32] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
404 [02:21:56] *** Joins: faw (~faw@replaced-ip )
405 [02:23:04] *** Joins: MACscr (~MACscr@replaced-ip )
406 [02:24:37] *** Quits: dreamon__ (~dreamon@replaced-ip ) (Ping timeout: 255 seconds)
407 [02:24:52] *** Quits: mitrokov (uid327393@replaced-ip ) (Quit: Connection closed for inactivity)
408 [02:25:02] *** Quits: FightingFalcon (~ff@replaced-ip ) (Ping timeout: 250 seconds)
409 [02:29:21] *** Quits: th0r (~th0r@replaced-ip ) (Quit: Leaving)
410 [02:32:06] *** Quits: yokisuci (~yokisuci@replaced-ip ) (Ping timeout: 250 seconds)
411 [02:32:42] *** Quits: X-plor-R (X-plor-R@replaced-ip ) (Quit: Leaving)
412 [02:34:01] *** debhelper sets mode: +l 1519
413 [02:34:19] *** Joins: Thedarkb-X40 (~beno@replaced-ip )
414 [02:37:08] *** Quits: rpifan (~rpifan@replaced-ip ) (Ping timeout: 245 seconds)
415 [02:37:49] *** Quits: schiz01 (~schiz01@replaced-ip ) (Read error: Connection reset by peer)
416 [02:38:02] *** Joins: Gurty (~princess@replaced-ip )
417 [02:38:02] *** Quits: Gurty (~princess@replaced-ip ) (Changing host)
418 [02:38:02] *** Joins: Gurty (~princess@replaced-ip )
419 [02:39:12] *** Quits: slv (~slv@replaced-ip ) (Quit: Leaving)
420 [02:39:34] *** Quits: mthe878 (~mthe@replaced-ip ) (Ping timeout: 246 seconds)
421 [02:40:16] *** Quits: anonymous83719 (~anonymous@replaced-ip ) (Ping timeout: 272 seconds)
422 [02:40:35] *** Quits: woshty (~woshty@replaced-ip ) (Ping timeout: 244 seconds)
423 [02:41:21] *** Joins: anonymous83719 (~anonymous@replaced-ip )
424 [02:42:54] *** Joins: buspirate (~none@replaced-ip )
425 [02:44:40] *** Quits: wireshark (~none@replaced-ip ) (Ping timeout: 250 seconds)
426 [02:47:25] *** Joins: mitrokov (uid327393@replaced-ip )
427 [02:48:48] *** Quits: dropkick500 (~dropkick5@replaced-ip ) (Quit: Lost terminal)
428 [02:49:01] *** Quits: BeerHall (~Thunderbi@replaced-ip ) (Remote host closed the connection)
429 [02:49:31] *** Joins: debsan (~debsan@replaced-ip )
430 [02:49:37] *** Joins: ch0wn_ (~tmp@replaced-ip )
431 [02:49:58] *** Joins: jcb2016 (~Mutter@replaced-ip )
432 [02:51:02] *** Joins: r00tobo (~r00tobo@replaced-ip )
433 [02:52:42] *** Quits: jubo2 (~juboxi@replaced-ip ) (Quit: Konversation terminated!)
434 [02:58:29] *** Quits: d3xt35 (~d3xt35@replaced-ip ) (Remote host closed the connection)
435 [02:58:42] *** Joins: spaceman (~spaceman@replaced-ip )
436 [03:00:49] *** Joins: nighty- (~nighty@replaced-ip )
437 [03:02:26] *** Quits: darkghost7 (~darkghost@replaced-ip ) (Ping timeout: 250 seconds)
438 [03:02:32] *** Joins: handsomefeng (~feng@replaced-ip )
439 [03:03:41] *** Quits: handsomefeng (~feng@replaced-ip ) (Client Quit)
440 [03:04:42] *** Joins: handsomefeng (~feng@replaced-ip )
441 [03:04:47] *** Joins: BeerHall (~Thunderbi@replaced-ip )
442 [03:05:00] *** Quits: handsomefeng (~feng@replaced-ip ) (Remote host closed the connection)
443 [03:05:01] *** Quits: handsome_feng (~feng@replaced-ip ) (Ping timeout: 250 seconds)
444 [03:05:09] *** Joins: yaoxu (~yaoxu@replaced-ip )
445 [03:05:22] *** Joins: takesi (~takesi@replaced-ip )
446 [03:07:21] *** Joins: denpark (aef00604@replaced-ip )
447 [03:07:36] *** Joins: handsome_feng (~feng@replaced-ip )
448 [03:07:44] *** Quits: macrobat (~beep@replaced-ip ) (Quit: macrobat)
449 [03:10:35] *** Joins: sidmo_ (~ident@replaced-ip )
450 [03:11:03] *** Quits: foolsh (~quassel@replaced-ip ) (Ping timeout: 268 seconds)
451 [03:11:06] *** Joins: foolsh_ (~quassel@replaced-ip )
452 [03:12:11] *** Quits: jcb2016 (~Mutter@replaced-ip ) (Remote host closed the connection)
453 [03:12:25] *** Quits: amcorreia (~amcorreia@replaced-ip ) (Quit: WeeChat 1.9.1)
454 [03:13:51] *** Joins: madage (~madage@replaced-ip )
455 [03:13:57] *** Joins: MunsterPlop (~user@replaced-ip )
456 [03:14:00] *** Quits: sidmo (~ident@replaced-ip ) (Ping timeout: 250 seconds)
457 [03:14:21] *** Parts: MunsterPlop (~user@replaced-ip ) ("Killed buffer")
458 [03:16:20] *** Quits: psilonux (~psilonux@replaced-ip ) (Remote host closed the connection)
459 [03:17:12] *** Joins: psilonux (~psilonux@replaced-ip )
460 [03:17:14] *** Quits: BCMM (~BCMM@replaced-ip ) (Quit: Konversation terminated!)
461 [03:17:59] *** Quits: JohnA (~john@replaced-ip ) (Remote host closed the connection)
462 [03:19:31] *** Quits: leachim6 (~leachim6@replaced-ip ) (Ping timeout: 255 seconds)
463 [03:19:53] *** Quits: mnemonic (~semeion@replaced-ip ) (Quit: WeeChat 2.4)
464 [03:21:47] *** Quits: dvs (~hibbard@replaced-ip ) (Ping timeout: 246 seconds)
465 [03:23:40] *** Joins: Sokol (~Sokol@replaced-ip )
466 [03:26:39] *** Joins: [b0b] (~bob@replaced-ip )
467 [03:29:10] *** Quits: brokencycle (~brokencyc@replaced-ip ) (Ping timeout: 250 seconds)
468 [03:29:31] *** Quits: madage (~madage@replaced-ip ) (Quit: leaving)
469 [03:29:36] *** Quits: b0b (~bob@replaced-ip ) (Ping timeout: 250 seconds)
470 [03:29:38] *** [b0b] is now known as b0b
471 [03:36:58] *** Quits: TacoGS (~tacogs@replaced-ip ) (Ping timeout: 250 seconds)
472 [03:39:28] *** Joins: Timele_ (~tim@replaced-ip )
473 [03:40:23] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
474 [03:40:36] *** Joins: milkt (~debian@replaced-ip )
475 [03:40:59] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
476 [03:42:18] *** Quits: zumba_addict (~zumba_add@replaced-ip ) (Ping timeout: 250 seconds)
477 [03:42:33] *** Quits: Timele (~tim@replaced-ip ) (Ping timeout: 245 seconds)
478 [03:42:55] *** Quits: Tom01 (~tom@replaced-ip ) (Remote host closed the connection)
479 [03:43:55] *** Joins: ironjosh (~ironjosh@replaced-ip )
480 [03:44:02] *** debhelper sets mode: +l 1513
481 [03:44:42] *** Joins: madage (~madage@replaced-ip )
482 [03:45:01] *** Joins: dvs (~hibbard@replaced-ip )
483 [03:45:12] *** Joins: Tempesta (~Tempesta@replaced-ip )
484 [03:46:42] *** Joins: leachim6 (~leachim6@replaced-ip )
485 [03:49:18] *** Quits: ch0wn_ (~tmp@replaced-ip ) (Ping timeout: 244 seconds)
486 [03:50:06] *** Joins: Sabotender (~Sabotende@replaced-ip )
487 [03:50:46] *** Joins: gorilla (~George@replaced-ip )
488 [03:51:03] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 268 seconds)
489 [03:55:27] *** Joins: faw (~faw@replaced-ip )
490 [03:57:36] *** Joins: crushpest (~crushpest@replaced-ip )
491 [03:59:38] *** Quits: leachim6 (~leachim6@replaced-ip ) (Ping timeout: 245 seconds)
492 [04:01:13] *** Joins: penna (~penna@replaced-ip )
493 [04:02:40] *** Quits: handsome_feng (~feng@replaced-ip ) (Remote host closed the connection)
494 [04:04:51] *** Quits: penna2 (~penna@replaced-ip ) (Ping timeout: 264 seconds)
495 [04:05:40] *** Joins: BrianG61UK_ (~BrianG61U@replaced-ip )
496 [04:05:58] *** Quits: banc (~banc@replaced-ip ) (Quit: Bye)
497 [04:08:24] *** Joins: krukudilo (~krukudilo@replaced-ip )
498 [04:08:27] *** Quits: BrianG61UK (~BrianG61U@replaced-ip ) (Ping timeout: 258 seconds)
499 [04:08:32] *** Quits: Qwerie_ (~qwertie@replaced-ip ) (Remote host closed the connection)
500 [04:09:37] *** Quits: auk (~auk@replaced-ip ) (Read error: Connection reset by peer)
501 [04:11:37] *** Joins: th0r (~th0r@replaced-ip )
502 [04:12:05] *** Quits: krukudilo (~krukudilo@replaced-ip ) (Client Quit)
503 [04:12:53] *** Quits: rander2 (~luca@replaced-ip ) (Ping timeout: 246 seconds)
504 [04:16:05] *** Joins: citypw (~citypw@replaced-ip )
505 [04:16:07] *** Joins: OS-46994 (~ijkl@replaced-ip )
506 [04:17:48] *** Joins: auk (~auk@replaced-ip )
507 [04:20:51] *** Quits: auk (~auk@replaced-ip ) (Read error: Connection reset by peer)
508 [04:21:03] *** Joins: auk (~auk@replaced-ip )
509 [04:22:31] *** Joins: cnrhkiyf (~cnrhkiyf@replaced-ip )
510 [04:23:45] *** Joins: kevr (~kevr@replaced-ip )
511 [04:24:01] *** debhelper sets mode: +l 1519
512 [04:24:19] *** Joins: Surfer2011_ (~quassel@replaced-ip )
513 [04:24:19] *** Quits: Sabotender (~Sabotende@replaced-ip ) (Ping timeout: 250 seconds)
514 [04:24:20] <kevr> i can't use startx on my fresh install of deb9 with i3 because i don't have permission to the X server. could someone point me in the right direction to some doc of what I should be looking for on debian to solve this?
515 [04:24:29] *** Joins: auk_ (~auk@replaced-ip )
516 [04:25:56] *** Quits: auk (~auk@replaced-ip ) (Ping timeout: 250 seconds)
517 [04:26:22] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Quit: I have to go. ZZZzzz…)
518 [04:26:56] *** Joins: banc (~banc@replaced-ip )
519 [04:27:01] *** Quits: Surfer2011 (~quassel@replaced-ip ) (Ping timeout: 255 seconds)
520 [04:27:02] *** Joins: leachim6 (~leachim6@replaced-ip )
521 [04:28:42] <kevr> nvm. groups.
522 [04:29:56] *** Joins: th4tguy (~th4tguy@replaced-ip )
523 [04:29:59] *** Quits: p_quarles (~pquarles@replaced-ip ) (Ping timeout: 268 seconds)
524 [04:30:58] *** Joins: yaoxu (~yaoxu@replaced-ip )
525 [04:31:18] *** Parts: th4tguy (~th4tguy@replaced-ip ) ()
526 [04:31:20] *** Quits: kupi (uid212005@replaced-ip ) (Quit: Connection closed for inactivity)
527 [04:31:33] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
528 [04:32:41] *** Joins: yaoxu (~yaoxu@replaced-ip )
529 [04:33:12] *** Joins: OS-45065 (~OS-45065@replaced-ip )
530 [04:33:17] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
531 [04:33:32] *** Quits: OS-45065 (~OS-45065@replaced-ip ) (Quit: Leaving)
532 [04:34:54] *** Quits: aindilis (~aindilis@replaced-ip ) (Ping timeout: 272 seconds)
533 [04:35:37] *** Quits: auk_ (~auk@replaced-ip ) (Remote host closed the connection)
534 [04:36:02] *** Joins: auk_ (~auk@replaced-ip )
535 [04:37:20] *** Quits: Ricardo__ (~rick@replaced-ip ) (Ping timeout: 250 seconds)
536 [04:37:38] *** Quits: auk_ (~auk@replaced-ip ) (Remote host closed the connection)
537 [04:40:26] *** Quits: th0r (~th0r@replaced-ip ) (Remote host closed the connection)
538 [04:43:22] *** Joins: bingbotboom (~bingbotbo@replaced-ip )
539 [04:43:53] *** Quits: dvs (~hibbard@replaced-ip ) (Remote host closed the connection)
540 [04:43:57] *** Joins: L1nuxg33k (uid322116@replaced-ip )
541 [04:44:12] *** Joins: handsome_feng (~feng@replaced-ip )
542 [04:44:42] *** Quits: we6jbo (~we6jbo@replaced-ip ) (Ping timeout: 250 seconds)
543 [04:44:42] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 268 seconds)
544 [04:45:24] *** Joins: llucenic (~Thunderbi@replaced-ip )
545 [04:45:45] *** Joins: we6jbo (~we6jbo@replaced-ip )
546 [04:48:24] *** Joins: A|an (~Alan@replaced-ip )
547 [04:49:32] *** Joins: debsan_ (~debsan@replaced-ip )
548 [04:50:03] <A|an> I'm trying to install duplicity backport...supposedly apt-get -t stretch-backports install duplicity is the incantation...doing so returns "The value 'stretch-backports' is invalid for APT"
549 [04:50:16] <A|an> How do you install a backport using apt-get?
550 [04:50:58] <A|an> And backports are in my sources.list
551 [04:52:58] *** Quits: debsan (~debsan@replaced-ip ) (Ping timeout: 245 seconds)
552 [04:53:42] *** Joins: Class7 (~Class7@replaced-ip )
553 [04:54:52] *** Quits: mitrokov (uid327393@replaced-ip ) (Quit: Connection closed for inactivity)
554 [04:55:03] <awal1> A|an, add backports repo to your sources.list first and update before that command
555 [04:55:17] <awal1> dpkg: stretch-backports
556 [04:55:17] <dpkg> Some packages intended for Buster (Debian 10) but recompiled for use with Stretch (Debian 9) can be found in the stretch-backports repository. See replaced-url
557 [04:55:28] <awal1> dpkg: backports
558 [04:55:28] <dpkg> A backport is a package from a newer Debian branch, compiled from source for an older branch to avoid dependency and <ABI> complications. replaced-url
559 [04:55:53] <awal1> ok,, you said you already have the repo in your sources
560 [04:55:59] <A|an> yes
561 [04:56:00] *** Joins: yht (~yht@replaced-ip )
562 [04:56:01] <awal1> run apt-get update so
563 [04:56:07] <A|an> did so
564 [04:56:30] <awal1> can you paste your sources?
565 [04:56:35] <awal1> paste.debian.net
566 [04:56:44] <A|an> I'm following the directions at backports.debian.org/Instructions/
567 [04:56:46] *** Joins: auk (~auk@replaced-ip )
568 [04:56:47] <A|an> yes
569 [04:56:51] <A|an> just a sec
570 [04:57:08] *** Quits: Class7_ (~Class7@replaced-ip ) (Ping timeout: 250 seconds)
571 [04:59:00] *** Joins: fling (~fling@replaced-ip )
572 [04:59:10] <A|an> replaced-url
573 [05:00:10] <A|an> I have it committed out!!!!
574 [05:00:19] *** Joins: penna2 (~penna@replaced-ip )
575 [05:00:21] <A|an> can you believe a retard thing like that?!
576 [05:00:37] <A|an> well, problem solved
577 [05:03:33] <awal1> you have the repo disabled :d
578 [05:03:34] <awal1> lol
579 [05:03:36] <A|an> thx, awal1
580 [05:03:39] *** Quits: penna (~penna@replaced-ip ) (Ping timeout: 264 seconds)
581 [05:04:44] <A|an> (I'd've worried myself to death if I hadn't come here <blink-blink>)
582 [05:04:55] <A|an> pretty stupid
583 [05:05:00] <A|an> anyway, thx
584 [05:05:06] *** Parts: A|an (~Alan@replaced-ip ) ()
585 [05:05:30] *** Quits: ironjosh (~ironjosh@replaced-ip ) (Ping timeout: 250 seconds)
586 [05:06:07] <awal1> np
587 [05:07:19] *** Joins: Rocco_-_ (~Rocco_-_@replaced-ip )
588 [05:07:52] *** Quits: Rocco_-_ (~Rocco_-_@replaced-ip ) (Client Quit)
589 [05:08:45] *** Joins: jcb2016 (~jcb@replaced-ip )
590 [05:09:37] *** Quits: ircarcs (~quassel@replaced-ip ) (Ping timeout: 245 seconds)
591 [05:09:44] *** Joins: ircarcs (~quassel@replaced-ip )
592 [05:11:46] *** Quits: deleuze6 (~deleuze@replaced-ip ) (Remote host closed the connection)
593 [05:15:10] *** Joins: aidansw (~aidansw@replaced-ip )
594 [05:16:06] *** Quits: ircarcs (~quassel@replaced-ip ) (Remote host closed the connection)
595 [05:17:13] *** Joins: ircarcs (~quassel@replaced-ip )
596 [05:17:16] *** Joins: deleuze6 (~deleuze@replaced-ip )
597 [05:17:16] *** Quits: OS-46994 (~ijkl@replaced-ip ) (Read error: Connection reset by peer)
598 [05:19:00] *** Quits: ChmEarl (~chmearl@replaced-ip ) (Quit: Leaving)
599 [05:20:53] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
600 [05:21:00] *** Quits: Sokol (~Sokol@replaced-ip ) ()
601 [05:21:14] *** Joins: aidansw (~aidansw@replaced-ip )
602 [05:23:47] *** Joins: aindilis (~aindilis@replaced-ip )
603 [05:24:25] *** Joins: mwheeler (sid143542@replaced-ip )
604 [05:25:34] *** Quits: jsb83 (~jsb83@replaced-ip ) (Quit: Leaving)
605 [05:27:00] <mwheeler> At the risk of being 99th person to come in and ask, did jessie-updates disappear from mirrors on purpose or is something broken?
606 [05:27:27] <BenderRodriguez> hm
607 [05:27:42] <jcb2016> mwheeler: guess what im about to ask
608 [05:27:47] *** Joins: Gigglebyte (~Gigglebyt@replaced-ip )
609 [05:28:04] *** Quits: violentE (violentE@replaced-ip ) (Quit: Leaving)
610 [05:29:45] <mwheeler> jcb2016: why am I still running jessie?
611 [05:29:47] *** Joins: BenNZ (~Ben__@replaced-ip )
612 [05:30:09] *** Joins: p_quarles (~pquarles@replaced-ip )
613 [05:30:10] *** Quits: p_quarles (~pquarles@replaced-ip ) (Changing host)
614 [05:30:10] *** Joins: p_quarles (~pquarles@replaced-ip )
615 [05:30:30] <jcb2016> mwheeler: nope. did jessie-updates disappear
616 [05:30:48] <mwheeler> hehe
617 [05:30:52] <jcb2016> :D
618 [05:31:05] <mwheeler> This is the URL I'm using in case that's importantreplaced-url
619 [05:34:09] <jcb2016> why don't the debian install images have firmware included with them? any ideas anyone?
620 [05:34:34] *** Quits: Cabanossi (~Cabanossi@replaced-ip ) (Ping timeout: 252 seconds)
621 [05:36:48] <mwheeler> jcb2016: the non free firmware? so that debian can remain 100% opensource for users that choose that
622 [05:37:30] <jcb2016> mwheeler: don't know. just wondering why it didn't
623 [05:37:46] *** Joins: lek (~lek@replaced-ip )
624 [05:38:41] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
625 [05:39:03] <jcb2016> mwheeler: let me tell you what im trying to do. i want to do. i currently run debian in a virtualbox but i want to try it on real hardware. so i want to boot a live debian image/usb with presistant data so when i exit and boot back up the data saves. all the tries ive done all have failed. just wondering how i can boot the live image with usb and load the firmware for wifi at the same time. or is that even
626 [05:39:06] <jcb2016> possible
627 [05:41:11] *** Joins: Cabanossi (~Cabanossi@replaced-ip )
628 [05:41:16] *** Joins: aidansw (~aidansw@replaced-ip )
629 [05:42:35] <jcb2016> ive installed debian to usb succesful and it boots normally everything is fine. i dont' want ubuntu i want debian o_O
630 [05:42:43] *** Joins: cadwallion (~cadwallio@replaced-ip )
631 [05:43:19] *** Quits: aidansw (~aidansw@replaced-ip ) (Client Quit)
632 [05:44:22] *** Quits: diniwed (~gavron@replaced-ip ) (Ping timeout: 246 seconds)
633 [05:44:36] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
634 [05:47:02] *** Quits: llucenic (~Thunderbi@replaced-ip ) (Ping timeout: 246 seconds)
635 [05:47:05] *** Quits: debsan_ (~debsan@replaced-ip ) (Ping timeout: 250 seconds)
636 [05:48:19] *** Joins: ircarcs (~quassel@replaced-ip )
637 [05:48:38] *** Joins: moth (~uvcontact@replaced-ip )
638 [05:48:58] *** Joins: aje (~aj@replaced-ip )
639 [05:49:05] *** Parts: moth (~uvcontact@replaced-ip ) ()
640 [05:49:23] *** Joins: uvcontact (~uvcontact@replaced-ip )
641 [05:49:29] <uvcontact> hello
642 [05:49:33] <uvcontact> brown panties
643 [05:52:48] *** Quits: rabbitear_sdf (kreator@replaced-ip ) (Ping timeout: 272 seconds)
644 [05:53:40] *** Quits: patterson (~patterson@replaced-ip ) ()
645 [05:54:20] *** Joins: daradydai (~todor@replaced-ip )
646 [05:55:43] *** Quits: BenNZ (~Ben__@replaced-ip ) (Remote host closed the connection)
647 [05:56:03] *** Joins: patterson (~patterson@replaced-ip )
648 [05:57:19] *** Quits: daradydai (~todor@replaced-ip ) (Quit: WeeChat 1.9.1)
649 [05:58:15] *** Quits: BrianG61UK_ (~BrianG61U@replaced-ip ) (Quit: Leaving)
650 [05:58:40] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
651 [05:59:21] *** Quits: ohwowlol (~ohwowlol@replaced-ip ) (Remote host closed the connection)
652 [06:01:52] *** Quits: jcb2016 (~jcb@replaced-ip ) (Quit: WeeChat 2.4)
653 [06:02:16] *** Quits: Gigglebyte (~Gigglebyt@replaced-ip ) (Quit: Leaving)
654 [06:02:35] <milkt> jcb2016: there is unofficial installer image which containing non-free firmware
655 [06:03:06] *** Parts: cadwallion (~cadwallio@replaced-ip ) ()
656 [06:03:06] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
657 [06:03:06] *** Joins: tux0r (~yaaic@replaced-ip )
658 [06:04:01] *** debhelper sets mode: +l 1512
659 [06:04:23] *** Joins: ircarcs (~quassel@replaced-ip )
660 [06:05:28] *** Quits: tux0r (~yaaic@replaced-ip ) (Client Quit)
661 [06:05:32] *** Quits: Old_Dog (~Old_Dog@replaced-ip ) (Quit: Leaving)
662 [06:05:55] *** Quits: firebird_ (~firebird_@replaced-ip ) (Quit: WeeChat 2.4)
663 [06:06:01] *** Joins: tux0r (~yaaic@replaced-ip )
664 [06:06:56] *** Quits: i1nfusion (~i1nfusion@replaced-ip ) (Remote host closed the connection)
665 [06:07:24] *** Joins: i1nfusion (~i1nfusion@replaced-ip )
666 [06:08:13] *** Joins: aidansw (~aidansw@replaced-ip )
667 [06:08:52] <aidansw> Hey, I was wondering, how do I grant a mounted drive execute permissions?
668 [06:09:37] *** Joins: Tom-_ (tomg@replaced-ip )
669 [06:10:15] *** Quits: electro33 (uid613@replaced-ip ) (Quit: Connection closed for inactivity)
670 [06:11:22] *** Quits: tux0r (~yaaic@replaced-ip##) (Quit: Yaaic - Yet another Android IRC client - ##replaced-url
671 [06:13:16] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
672 [06:16:04] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
673 [06:16:56] *** Joins: ircarcs (~quassel@replaced-ip )
674 [06:21:56] *** Quits: nuuuciano (~luuuciano@replaced-ip ) (Ping timeout: 272 seconds)
675 [06:24:42] <klys> aidansw, mount -o umask=022
676 [06:24:42] *** Quits: CrystalMath (~coderain@replaced-ip##) (Quit: Support Free Software - ##replaced-url
677 [06:25:27] *** Quits: torbo (~user@replaced-ip ) (Remote host closed the connection)
678 [06:27:07] *** Quits: awal1 (~awal1@replaced-ip ) (Ping timeout: 245 seconds)
679 [06:27:49] *** Joins: awal1 (~awal1@replaced-ip )
680 [06:29:38] *** Quits: zerotech (~zerotech@replaced-ip ) (Ping timeout: 245 seconds)
681 [06:29:56] *** Joins: rizzo (~RizzoTheR@replaced-ip )
682 [06:32:09] *** Quits: Pjusur (~Pjusur@replaced-ip ) (Quit: Leaving)
683 [06:32:35] *** Quits: lilabsence (~RizzoTheR@replaced-ip ) (Ping timeout: 250 seconds)
684 [06:33:23] *** Joins: awal1_ (~awal1@replaced-ip )
685 [06:34:01] *** debhelper sets mode: +l 1506
686 [06:34:19] *** Joins: pvdp (~pvdp@replaced-ip )
687 [06:34:45] *** Quits: Sollg3r (~ejakuk@replaced-ip ) (Quit: Leaving)
688 [06:34:47] *** Quits: martian67 (~martian67@replaced-ip ) (Remote host closed the connection)
689 [06:35:17] *** Joins: martian67 (~martian67@replaced-ip )
690 [06:35:20] *** Quits: madage (~madage@replaced-ip ) (Remote host closed the connection)
691 [06:35:33] *** Joins: madage (~madage@replaced-ip )
692 [06:36:22] *** Quits: awal1 (~awal1@replaced-ip ) (Ping timeout: 250 seconds)
693 [06:37:28] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
694 [06:37:44] *** Quits: awal1_ (~awal1@replaced-ip ) (Ping timeout: 244 seconds)
695 [06:39:02] *** Joins: awal1 (~awal1@replaced-ip )
696 [06:39:36] *** Joins: lpmrlpmr (~Mutter@replaced-ip )
697 [06:39:44] *** Quits: lpmrlpmr (~Mutter@replaced-ip ) (Client Quit)
698 [06:39:50] *** Joins: ircarcs (~quassel@replaced-ip )
699 [06:40:42] *** Joins: trytus (c12ebbfc@replaced-ip )
700 [06:41:21] *** Joins: flokuehn (~flokuehn@replaced-ip )
701 [06:41:30] *** Quits: martian67 (~martian67@replaced-ip ) (Remote host closed the connection)
702 [06:42:23] *** Joins: martian67 (~martian67@replaced-ip )
703 [06:42:57] *** Quits: zeden (~user@replaced-ip ) (Quit: WeeChat 2.4)
704 [06:43:29] *** Quits: Sabaku (~Sabaku@replaced-ip ) (Ping timeout: 252 seconds)
705 [06:44:29] *** Quits: awal1 (~awal1@replaced-ip ) (Quit: Leaving)
706 [06:45:10] *** Quits: rustbuckett (~downtime@replaced-ip ) (Ping timeout: 255 seconds)
707 [06:53:08] *** Quits: BazookaTooth (~bob@replaced-ip ) (Remote host closed the connection)
708 [06:53:11] *** Quits: leemar (~leemar@replaced-ip ) (Ping timeout: 246 seconds)
709 [06:53:31] *** Quits: L1nuxg33k (uid322116@replaced-ip ) (Quit: Connection closed for inactivity)
710 [06:53:38] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
711 [06:54:01] *** debhelper sets mode: +l 1499
712 [06:54:38] *** Quits: GaneshRaju (~ganeshraj@replaced-ip ) (Ping timeout: 245 seconds)
713 [06:55:48] *** Joins: gnupyx (~gnupyx@replaced-ip )
714 [06:56:14] *** Joins: Sabaku (~Sabaku@replaced-ip )
715 [06:56:43] *** Joins: ircarcs (~quassel@replaced-ip )
716 [06:56:54] *** Joins: BazookaTooth (~bob@replaced-ip )
717 [06:57:12] *** Quits: omonk (~omonk@replaced-ip ) (Read error: Connection reset by peer)
718 [07:00:32] *** Joins: sauvin (sauvin@replaced-ip )
719 [07:00:38] *** Quits: Moonspell (moon@replaced-ip ) (Ping timeout: 250 seconds)
720 [07:01:14] *** Joins: Praematura_ (~quassel@replaced-ip )
721 [07:01:18] *** Quits: sirfarquad (~sirfq@replaced-ip ) (Ping timeout: 245 seconds)
722 [07:02:13] *** Joins: yaoxu (~yaoxu@replaced-ip )
723 [07:02:39] *** Joins: omonk (~omonk@replaced-ip )
724 [07:02:50] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
725 [07:02:55] *** Joins: FightingFalcon (~ff@replaced-ip )
726 [07:03:28] *** Joins: yaoxu (~yaoxu@replaced-ip )
727 [07:07:38] *** Joins: kleind (~klein@replaced-ip )
728 [07:09:07] *** Quits: auk (~auk@replaced-ip ) (Quit: Leaving)
729 [07:09:32] *** Joins: Moonspell (moon@replaced-ip )
730 [07:09:59] *** Quits: indomitable (~indomitab@replaced-ip ) (Ping timeout: 246 seconds)
731 [07:10:54] *** Joins: airwind (~belovent@replaced-ip )
732 [07:11:22] *** Joins: homaar (~homaar@replaced-ip )
733 [07:12:16] *** Joins: indomitable (~indomitab@replaced-ip )
734 [07:12:37] *** Joins: himcesjf_ (~cesjf@replaced-ip )
735 [07:13:07] *** Quits: crushpest (~crushpest@replaced-ip ) (Remote host closed the connection)
736 [07:13:31] *** Quits: him-cesjf (~cesjf@replaced-ip ) (Ping timeout: 255 seconds)
737 [07:13:51] *** Quits: enki (~enki@replaced-ip ) (Ping timeout: 264 seconds)
738 [07:14:01] *** debhelper sets mode: +l 1505
739 [07:15:39] *** Joins: conta (~Thunderbi@replaced-ip )
740 [07:16:01] *** Joins: mmybd (4d877718@replaced-ip )
741 [07:16:14] *** Joins: Pjusur (~Pjusur@replaced-ip )
742 [07:16:57] *** Quits: spaceman (~spaceman@replaced-ip ) (Quit: Leaving)
743 [07:18:48] *** Joins: enki (~enki@replaced-ip )
744 [07:19:01] *** Quits: Emmanuel_Chanel (~Emmanuel_@replaced-ip ) (Read error: Connection reset by peer)
745 [07:19:06] *** Joins: spaceman (~spaceman@replaced-ip )
746 [07:19:26] <mmybd> I have a configuration problem when I try to install mariadb (on debian testing): "Job for mariadb.service failed because the control process exited with error code. See "systemctl status mariadb.service" and "journalctl -xe" for details."
747 [07:19:38] *** Joins: olegfusion (~olegfusio@replaced-ip )
748 [07:20:02] *** Quits: spaceman (~spaceman@replaced-ip ) (Client Quit)
749 [07:20:58] *** Joins: llucenic (~Thunderbi@replaced-ip )
750 [07:21:58] <mmybd> journalctl -xe gives that: replaced-url
751 [07:22:31] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 255 seconds)
752 [07:22:39] *** Joins: llucenic_ (~Thunderbi@replaced-ip )
753 [07:23:15] *** Joins: upie2 (~upie@replaced-ip )
754 [07:25:14] *** Joins: toxync12 (~toxync12@replaced-ip )
755 [07:28:05] *** Quits: conyers (~conyers@replaced-ip ) (Quit: ZZZzzz…)
756 [07:29:23] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
757 [07:29:43] *** Quits: enki (~enki@replaced-ip ) (Ping timeout: 246 seconds)
758 [07:30:07] *** Joins: scream_ (~scream@replaced-ip )
759 [07:30:37] *** Joins: jmarsac (~jmarsac@replaced-ip )
760 [07:30:57] *** Joins: ircarcs (~quassel@replaced-ip )
761 [07:34:01] *** debhelper sets mode: +l 1511
762 [07:34:49] *** Joins: enki (~enki@replaced-ip )
763 [07:37:03] *** himcesjf_ is now known as him-cesjf
764 [07:37:54] *** Quits: shingouz (~not@replaced-ip ) (Disconnected by services)
765 [07:37:54] *** Joins: shingouz_ (~not@replaced-ip )
766 [07:38:41] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 246 seconds)
767 [07:39:32] *** Joins: pingfloyd (~pingfloyd@replaced-ip )
768 [07:43:35] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
769 [07:43:47] *** Quits: KOLANICH (~KOLANICH@replaced-ip ) (Ping timeout: 245 seconds)
770 [07:44:58] *** Joins: conyers (~conyers@replaced-ip )
771 [07:46:17] *** Joins: ircarcs (~quassel@replaced-ip )
772 [07:47:24] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Quit: I have to go. ZZZzzz…)
773 [07:48:06] *** Joins: Emmanuel_Chanel (~Emmanuel_@replaced-ip )
774 [07:48:42] *** Quits: Tom-_ (tomg@replaced-ip ) (Ping timeout: 272 seconds)
775 [07:49:15] *** Joins: yaoxu (~yaoxu@replaced-ip )
776 [07:49:15] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
777 [07:49:48] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
778 [07:50:08] <pingfloyd> started getting this just today "W: Failed to fetch replaced-url
779 [07:50:10] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
780 [07:50:17] <pingfloyd> when I run apt-get update
781 [07:51:46] *** Joins: vStone (~Po0ky@replaced-ip )
782 [07:51:53] *** Joins: tkla (~tklassen@replaced-ip )
783 [07:52:14] *** Quits: milkt (~debian@replaced-ip ) (Quit: leaving)
784 [07:52:32] *** Quits: tkla (~tklassen@replaced-ip ) (Client Quit)
785 [07:52:48] <vStone> Any known issues with the archive servers? Jessie-backports's release file seems to be outdated
786 [07:52:50] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
787 [07:53:52] <pingfloyd> vStone: are you having trouble with jessie-updates and jessie-backports too?
788 [07:53:58] *** Quits: mmybd (4d877718@replaced-ip ) (Quit: Page closed)
789 [07:54:02] *** Joins: colttt (~quassel@replaced-ip )
790 [07:54:18] *** Joins: Haohmaru (~Haohmaru@replaced-ip )
791 [07:54:24] <pingfloyd> vStone: I started getting messages like this just today "W: Failed to fetch replaced-url
792 [07:54:36] <pingfloyd> when running apt-get update
793 [07:54:53] *** Joins: milkt (~debian@replaced-ip )
794 [07:55:03] *** Quits: dreamon_ (~dreamon@replaced-ip ) (Ping timeout: 245 seconds)
795 [07:55:50] <pingfloyd> I wonder if there is an outage
796 [07:55:54] <vStone> I'm feeling like chances have been made. wheezy-backports switched from deb.debian.org to archive.debian.org last week too I think.
797 [07:58:04] *** Joins: ircarcs (~quassel@replaced-ip )
798 [07:58:32] <pingfloyd> I think it's an issue with the ftp.us.debian.org mirror
799 [07:58:47] <pingfloyd> I see both jessie-updates and jessie-backports on ftp.debian.org
800 [07:58:51] *** Quits: enki (~enki@replaced-ip ) (Ping timeout: 264 seconds)
801 [07:59:24] *** Joins: yaoxu (~yaoxu@replaced-ip )
802 [07:59:41] *** Joins: zamuro (~Samantha@replaced-ip )
803 [07:59:41] *** Quits: zamuro (~Samantha@replaced-ip ) (Changing host)
804 [07:59:41] *** Joins: zamuro (~Samantha@replaced-ip )
805 [07:59:59] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
806 [08:00:08] <vStone> replaced-url
807 [08:00:23] *** Quits: lankanmon (~LKNnet@replaced-ip ) (Quit: Left...)
808 [08:01:33] *** Joins: Tom-_ (tomg@replaced-ip )
809 [08:02:53] *** Joins: lankanmon (~LKNnet@replaced-ip )
810 [08:03:08] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
811 [08:03:56] *** Joins: slv (~slv@replaced-ip )
812 [08:04:22] *** Quits: Mad_Hat (~Mad_Hat@replaced-ip ) ()
813 [08:04:24] *** Joins: esro (~esro@replaced-ip )
814 [08:04:54] *** Joins: ircarcs (~quassel@replaced-ip )
815 [08:05:11] *** Joins: enki (~enki@replaced-ip )
816 [08:05:12] *** Quits: jmarsac (~jmarsac@replaced-ip ) (Ping timeout: 268 seconds)
817 [08:05:17] *** Quits: tower (~greg@replaced-ip##) (Quit: | ReactOS - The FOSS alternative to MS Windows! | ##replaced-url
818 [08:07:48] *** Joins: polymorphisme (~Thunderbi@replaced-ip )
819 [08:09:00] *** Joins: andrzejv (~andzej@replaced-ip )
820 [08:09:11] *** Joins: tekmans (~tekmans@replaced-ip )
821 [08:09:38] *** Joins: yaoxu (~yaoxu@replaced-ip )
822 [08:09:59] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: ircarcs)
823 [08:10:15] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
824 [08:10:53] *** Joins: yaoxu (~yaoxu@replaced-ip )
825 [08:10:57] *** Quits: Tom-_ (tomg@replaced-ip ) (Ping timeout: 250 seconds)
826 [08:11:29] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
827 [08:13:28] *** Quits: we6jbo (~we6jbo@replaced-ip ) (Remote host closed the connection)
828 [08:16:43] *** Quits: thunderrd (~thunderrd@replaced-ip ) (Ping timeout: 244 seconds)
829 [08:16:49] *** Joins: yaoxu (~yaoxu@replaced-ip )
830 [08:18:09] *** Joins: ircarcs (~quassel@replaced-ip )
831 [08:18:10] <pingfloyd> is this correct? "httpredir.debian.org has been discontinued because of lack of maintenance and now redirects to replaced-url
832 [08:20:22] *** Quits: upie2 (~upie@replaced-ip ) (Ping timeout: 250 seconds)
833 [08:21:31] *** Joins: tmroland (~tmroland@replaced-ip )
834 [08:21:40] *** Quits: toxync12 (~toxync12@replaced-ip ) (Ping timeout: 250 seconds)
835 [08:22:22] *** Quits: thePiGrepper (~nagato@replaced-ip ) (Ping timeout: 255 seconds)
836 [08:22:36] *** Quits: mibo (~mibo@replaced-ip ) (Quit: Leaving.)
837 [08:22:58] *** Quits: enki (~enki@replaced-ip ) (Ping timeout: 250 seconds)
838 [08:26:59] *** Joins: toxync12 (~toxync12@replaced-ip )
839 [08:27:55] *** Joins: enki (~enki@replaced-ip )
840 [08:28:18] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 250 seconds)
841 [08:31:33] *** Joins: jmarsac (~jmarsac@replaced-ip )
842 [08:31:51] *** Quits: noonien (uid162445@replaced-ip ) (Quit: Connection closed for inactivity)
843 [08:33:17] *** Joins: aaii (~aaii@replaced-ip )
844 [08:33:59] *** Quits: clemens3 (~clemens@replaced-ip ) (Ping timeout: 246 seconds)
845 [08:34:07] *** Quits: anonymous83719 (~anonymous@replaced-ip ) (Ping timeout: 246 seconds)
846 [08:34:58] *** Joins: anonymous83719 (~anonymous@replaced-ip )
847 [08:36:28] *** yaoxu is now known as yaoxu_afk
848 [08:38:41] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
849 [08:39:38] *** Quits: cnrhkiyf (~cnrhkiyf@replaced-ip ) (Ping timeout: 245 seconds)
850 [08:40:18] *** Joins: glongo (uid17594@replaced-ip )
851 [08:40:37] *** Joins: ircarcs (~quassel@replaced-ip )
852 [08:40:57] *** Joins: edog (~edog@replaced-ip )
853 [08:41:34] *** Quits: takesi (~takesi@replaced-ip ) (Quit: leaving)
854 [08:42:09] *** Joins: weedloser (~weedloser@replaced-ip )
855 [08:42:33] *** Quits: yaoxu_afk (~yaoxu@replaced-ip ) (Ping timeout: 245 seconds)
856 [08:43:03] *** Joins: yaoxu (~yaoxu@replaced-ip )
857 [08:43:05] *** Quits: Adbray (~Adbray@replaced-ip ) (Remote host closed the connection)
858 [08:43:39] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
859 [08:43:40] *** Joins: Adbray (~Adbray@replaced-ip )
860 [08:44:02] *** Joins: oish (~charlie@replaced-ip )
861 [08:44:16] *** Quits: _MrGr33n_ (~None@replaced-ip ) (Read error: Connection reset by peer)
862 [08:44:18] *** Joins: yaoxu (~yaoxu@replaced-ip )
863 [08:44:22] *** Quits: weedloser (~weedloser@replaced-ip ) (Client Quit)
864 [08:44:35] *** Joins: yokisuci (~yokisuci@replaced-ip )
865 [08:44:38] *** Quits: David_Hedlund (~david@replaced-ip ) (Ping timeout: 250 seconds)
866 [08:44:43] *** Joins: _MrGr33n_ (~None@replaced-ip )
867 [08:46:12] *** Joins: weedloser_ (~weedloser@replaced-ip )
868 [08:46:23] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
869 [08:46:39] *** Joins: Makaveli7 (~Makaveli7@replaced-ip )
870 [08:47:04] *** Joins: yaoxu (~yaoxu@replaced-ip )
871 [08:47:09] *** Quits: weedloser_ (~weedloser@replaced-ip ) (Client Quit)
872 [08:47:14] *** Joins: george959 (~george959@replaced-ip )
873 [08:47:31] *** Joins: weedloser (~weedloser@replaced-ip )
874 [08:47:38] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
875 [08:48:04] *** Joins: yaoxu (~yaoxu@replaced-ip )
876 [08:48:13] *** Quits: silentjet (~jet@replaced-ip ) (Ping timeout: 250 seconds)
877 [08:49:40] *** Quits: ircarcs (~quassel@replaced-ip ) (Remote host closed the connection)
878 [08:49:47] *** Quits: radkos (~radkos@replaced-ip ) (Read error: Connection reset by peer)
879 [08:50:08] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
880 [08:50:47] *** Joins: yaoxu (~yaoxu@replaced-ip )
881 [08:51:22] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
882 [08:51:51] *** Joins: cerbere (~cerbere@replaced-ip )
883 [08:52:02] *** Joins: yaoxu (~yaoxu@replaced-ip )
884 [08:52:19] *** Quits: olegfusion (~olegfusio@replaced-ip ) (Read error: Connection reset by peer)
885 [08:52:51] *** Joins: pragomer (~pragomer@replaced-ip )
886 [08:53:51] *** Quits: cerbere (~cerbere@replaced-ip ) (Remote host closed the connection)
887 [08:54:07] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
888 [08:55:14] *** Joins: yaoxu (~yaoxu@replaced-ip )
889 [08:55:36] *** Quits: weedloser (~weedloser@replaced-ip ) (Quit: Leaving)
890 [08:55:58] *** Joins: weedloser (~weedloser@replaced-ip )
891 [08:56:15] *** Joins: Half-Word (~halfword@replaced-ip )
892 [08:56:30] *** Joins: tagomago (~tagomago@replaced-ip )
893 [08:56:43] *** Quits: weedloser (~weedloser@replaced-ip ) (Client Quit)
894 [08:57:18] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
895 [08:58:02] *** Joins: yaoxu (~yaoxu@replaced-ip )
896 [08:59:23] *** Joins: mibo (~mibo@replaced-ip )
897 [09:00:07] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
898 [09:00:22] *** Joins: weedloser (~weedloser@replaced-ip )
899 [09:00:27] *** Joins: clemens3 (~clemens@replaced-ip )
900 [09:00:31] *** Joins: ircarcs (~quassel@replaced-ip )
901 [09:00:45] *** Joins: yaoxu (~yaoxu@replaced-ip )
902 [09:01:14] *** Quits: _MrGr33n_ (~None@replaced-ip ) (Read error: Connection reset by peer)
903 [09:01:42] *** Joins: _MrGr33n_ (~None@replaced-ip )
904 [09:01:50] <kleind> Hi. I see "InRelease is expired (invalid since 34d 11h 33min 22s)" for archive.debian.org/debian jessie-backports. Is that a bug or am I supposed to use Check-Valid-Until=false for oldstable backports?
905 [09:01:59] *** Joins: chele (~chele@replaced-ip )
906 [09:02:52] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
907 [09:02:59] <themill> archive.d.o is only an historical archive. You're not supposed to be using it
908 [09:03:11] *** Joins: __marco (~marco@replaced-ip )
909 [09:03:35] *** Joins: yaoxu (~yaoxu@replaced-ip )
910 [09:03:44] <themill> (support for jessie-backports ended on 2018-05-17 fwiw)
911 [09:04:01] *** debhelper sets mode: +l 1519
912 [09:04:24] *** Joins: Alina-malina_ (~Alina-mal@replaced-ip )
913 [09:05:03] *** Quits: ircarcs (~quassel@replaced-ip ) (Ping timeout: 245 seconds)
914 [09:05:08] *** Quits: Alina-malina (~Alina-mal@replaced-ip ) (Ping timeout: 250 seconds)
915 [09:05:44] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
916 [09:05:45] *** Joins: ironjosh (~ironjosh@replaced-ip )
917 [09:06:28] *** Joins: yaoxu (~yaoxu@replaced-ip )
918 [09:07:30] *** Joins: drzacek (~drzacek@replaced-ip )
919 [09:07:55] *** Quits: sidmo_ (~ident@replaced-ip ) (Quit: Konversation terminated!)
920 [09:08:05] *** Quits: graytron (~tero@replaced-ip ) (Ping timeout: 244 seconds)
921 [09:08:36] *** Quits: yaoxu (~yaoxu@replaced-ip ) (Max SendQ exceeded)
922 [09:09:15] *** Joins: jobor (jobor@replaced-ip )
923 [09:09:15] *** Joins: ircarcs (~quassel@replaced-ip )
924 [09:09:53] *** Quits: anonymous83719 (~anonymous@replaced-ip ) (Ping timeout: 250 seconds)
925 [09:10:37] *** Joins: sidmo (~ident@replaced-ip )
926 [09:11:04] *** Joins: ich (~ich@replaced-ip )
927 [09:11:10] <jobor> How do I find out why a certain package is present in oldstable and sid, but not in stable and testing? (In my case libjasper-dev)
928 [09:11:47] *** Joins: stefanc_diff (~stefanc_d@replaced-ip )
929 [09:11:49] *** Joins: OS-43533 (~OS-43533@replaced-ip )
930 [09:12:34] <pstk> hello here, why I get warning about release file on archives.debian.org from jessie backports?
931 [09:12:47] <pstk> E: Release file for replaced-url
932 [09:13:09] *** Quits: OS-43533 (~OS-43533@replaced-ip ) (Client Quit)
933 [09:14:15] <kleind> Support for that repository ended in may 2018. You can - if you want to - disable the Check for the Valid header with the apt.conf option "Check-Valid-Until" set to false (or no?)
934 [09:14:16] *** Quits: _MrGr33n_ (~None@replaced-ip ) (Read error: Connection reset by peer)
935 [09:14:30] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
936 [09:14:46] <pstk> but Check-Valid-Until is globally option
937 [09:14:49] *** Joins: P1ersson (~P1ersson@replaced-ip )
938 [09:15:09] <kleind> true, unfortunately. i just learned that a couple minutes ago myself.
939 [09:15:27] <pstk> I don't understand why jessie backports has moved to archives…
940 [09:15:28] <kleind> in stretch's apt, it is per repository
941 [09:15:45] <kleind> yeah, I could not find a reason for that, either
942 [09:15:48] *** Joins: dreamon_ (~dreamon@replaced-ip )
943 [09:16:17] *** Joins: Guest75977 (~quassel@replaced-ip )
944 [09:16:19] *** Joins: ircarcs (~quassel@replaced-ip )
945 [09:16:59] <pstk> so… thanks kleind
946 [09:17:33] *** Joins: TomyWork (~tomy@replaced-ip )
947 [09:19:02] *** Joins: kapil____ (uid36151@replaced-ip )
948 [09:19:51] *** Joins: graytron (~tero@replaced-ip )
949 [09:21:32] *** Joins: martastain (~martastai@replaced-ip )
950 [09:22:57] *** Quits: troy (~troy@replaced-ip ) (Quit: WeeChat 2.2)
951 [09:22:59] *** Joins: a_l_b (~a_l_b@replaced-ip )
952 [09:23:03] *** Quits: krytarik (~krytarik@replaced-ip ) (Quit: Verlaat)
953 [09:24:01] *** debhelper sets mode: +l 1526
954 [09:24:23] *** Joins: f4cl3y (~f4cl3y@replaced-ip )
955 [09:30:52] *** Joins: robs_ (~robs@replaced-ip )
956 [09:31:32] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 268 seconds)
957 [09:31:34] *** Quits: abff (~abff@replaced-ip ) (Ping timeout: 250 seconds)
958 [09:32:25] *** Joins: abff (~abff@replaced-ip )
959 [09:33:10] *** Joins: P1ersson (~P1ersson@replaced-ip )
960 [09:35:28] *** Joins: thunderrd (~thunderrd@replaced-ip )
961 [09:35:37] *** Quits: tmroland (~tmroland@replaced-ip ) (Quit: tmroland)
962 [09:37:00] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
963 [09:37:10] *** Joins: Xizor (~Xizor@replaced-ip )
964 [09:39:16] *** Joins: ircarcs (~quassel@replaced-ip )
965 [09:39:55] *** Quits: Thedarkb-X40 (~beno@replaced-ip ) (Ping timeout: 246 seconds)
966 [09:43:13] *** Quits: ircarcs (~quassel@replaced-ip ) (Client Quit)
967 [09:45:14] *** Joins: ircarcs (~quassel@replaced-ip )
968 [09:45:16] *** Quits: f4cl3y (~f4cl3y@replaced-ip ) (Quit: Reconnecting)
969 [09:45:32] *** Joins: f4cl3y (~f4cl3y@replaced-ip )
970 [09:50:00] *** Quits: patterson (~patterson@replaced-ip ) ()
971 [09:51:11] *** Joins: Texou (~Texou@replaced-ip )
972 [09:52:49] <roylaprattep> is jessie-backport repo down?
973 [09:53:02] *** Joins: XmmD (~XmmD@replaced-ip )
974 [09:53:33] *** Quits: Guest75977 (~quassel@replaced-ip ) (Remote host closed the connection)
975 [09:53:37] <vStone> it moved to archive.debian.org roylaprattep, but replaced-url
976 [09:54:10] <roylaprattep> so we can't use it anymore? i can remove it from my sources.list?
977 [09:54:29] *** Joins: m0u_ (~m0u@replaced-ip )
978 [09:54:30] <roylaprattep> no more update will bw made to it?
979 [09:54:37] <roylaprattep> be*
980 [09:55:06] *** Quits: esro (~esro@replaced-ip ) (Quit: Leaving)
981 [09:55:46] *** Quits: Aussie_matt (~quassel@replaced-ip##) (Quit: ##replaced-url
982 [09:57:12] *** Joins: ImamGace (~androirc@replaced-ip )
983 [09:58:26] *** Quits: conta (~Thunderbi@replaced-ip ) (Quit: conta)
984 [09:58:44] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
985 [09:59:14] *** Joins: conta (~Thunderbi@replaced-ip )
986 [09:59:51] *** Joins: ircarcs (~quassel@replaced-ip )
987 [10:01:04] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 272 seconds)
988 [10:02:12] *** Quits: pragomer (~pragomer@replaced-ip ) (Quit: Leaving)
989 [10:02:57] <rant> I have a networking issue here.. Debian Stable, I am connected to my internet gateway via wireless on 10.0.0.1 and I am playing with my various Linksys WRT54G* routers via ethernet on 192.168.1.1 when I enable the wired connection (static) in network-manager applet I am able to browse the web and maintain my mosh connection here, but certain sites like sf.net are not accessible in chromium it says
990 [10:03:03] <rant> ERR_ADDRESS_UNREACHABLE which I find confusing when I can get to google, wikipedia, etc..
991 [10:04:36] <rant> traceroute is failing on anything cause its using 192.168.1.1 and ending there cause there is not internet available on this network..
992 [10:05:00] <rant> I just dont understand how I'm able to get to some sites via chromium and not others if there is an problem in my routing tables
993 [10:06:43] *** Quits: kein31 (~root@replaced-ip ) (Ping timeout: 245 seconds)
994 [10:06:59] *** Joins: Gazooo (~Gazooo@replaced-ip )
995 [10:07:10] <rant> its obviously not actually using 192.168.1.1 for DNS cause its resolving sf.net and google.com to IPs which this wrt54g cant do cause its not online. replaced-url
996 [10:08:48] *** Quits: \\Mr_C\\ (~mrc@replaced-ip ) (Quit: (Read error: Connection reset by beer))
997 [10:09:03] *** Joins: kein31 (~root@replaced-ip )
998 [10:09:59] <rant> nm, I figured it out.. removed the gateway from the ipv4 tab and disabled ipv6 and I'm still able to access the wrt54g on 192.168.1.1 but its not screwing with my routing
999 [10:10:14] *** Joins: DotHack (~lars@replaced-ip )
1000 [10:10:15] <rant> still doesnt make sense to me though that I was able to load some sites and not others
1001 [10:10:20] *** Quits: Makaveli7 (~Makaveli7@replaced-ip ) (Quit: Leaving)
1002 [10:10:26] <rant> seems to me like a routing table issue is an all or nothing deal
1003 [10:10:47] <rant> in the case where one network has internet and the other doesnt..
1004 [10:11:35] *** Quits: DotHack (~lars@replaced-ip ) (Client Quit)
1005 [10:11:44] *** Joins: Furaah (~Furaah@replaced-ip )
1006 [10:11:50] *** Quits: Furaah (~Furaah@replaced-ip ) (Remote host closed the connection)
1007 [10:11:54] *** Joins: DotHack (~lars@replaced-ip )
1008 [10:13:28] *** Quits: shtouff (~shtouff@replaced-ip ) (Ping timeout: 268 seconds)
1009 [10:13:43] *** Joins: dethos (~dethos@replaced-ip )
1010 [10:14:44] *** Joins: karakedi (~eAC53C340@replaced-ip )
1011 [10:14:44] *** Quits: karakedi (~eAC53C340@replaced-ip ) (Changing host)
1012 [10:14:44] *** Joins: karakedi (~eAC53C340@replaced-ip )
1013 [10:15:25] *** Joins: gusnan (~gusnan@replaced-ip )
1014 [10:15:25] *** Quits: gusnan (~gusnan@replaced-ip ) (Changing host)
1015 [10:15:25] *** Joins: gusnan (~gusnan@replaced-ip )
1016 [10:16:32] *** Joins: elkalamar_ (elkalamar@replaced-ip )
1017 [10:16:40] *** Quits: yokisuci (~yokisuci@replaced-ip ) (Ping timeout: 255 seconds)
1018 [10:17:10] *** Joins: P1ersson (~P1ersson@replaced-ip )
1019 [10:18:11] *** Quits: catsup (d@replaced-ip ) (Remote host closed the connection)
1020 [10:18:20] *** Joins: catsup (~d@replaced-ip )
1021 [10:18:22] *** Quits: rizzo (~RizzoTheR@replaced-ip ) (Ping timeout: 245 seconds)
1022 [10:18:46] *** Quits: elkalamar__ (elkalamar@replaced-ip ) (Ping timeout: 246 seconds)
1023 [10:18:54] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
1024 [10:19:18] *** Joins: shtouff (~shtouff@replaced-ip )
1025 [10:19:30] *** Quits: catsup (~d@replaced-ip ) (Remote host closed the connection)
1026 [10:19:37] *** Joins: kyle (~kyle@replaced-ip )
1027 [10:19:52] *** Joins: catsup (d@replaced-ip )
1028 [10:20:01] *** kyle is now known as Guest78373
1029 [10:20:21] *** Joins: ircarcs (~quassel@replaced-ip )
1030 [10:21:15] *** Quits: wonderworld (~ww@replaced-ip ) (Remote host closed the connection)
1031 [10:23:00] *** Quits: oish (~charlie@replaced-ip ) (Ping timeout: 250 seconds)
1032 [10:23:14] *** Quits: martastain (~martastai@replaced-ip ) (Ping timeout: 272 seconds)
1033 [10:27:45] *** Joins: inviz (~user@replaced-ip )
1034 [10:29:29] *** Joins: Olipro_ (~Olipro@replaced-ip )
1035 [10:29:29] *** Quits: Olipro_ (~Olipro@replaced-ip ) (Changing host)
1036 [10:29:29] *** Joins: Olipro_ (~Olipro@replaced-ip )
1037 [10:31:08] *** Joins: tobias_ (8fb00599@replaced-ip )
1038 [10:31:22] *** Quits: Olipro (~Olipro@replaced-ip ) (Ping timeout: 250 seconds)
1039 [10:31:22] *** Olipro_ is now known as Olipro
1040 [10:32:48] *** Joins: p3rs3us (~jduro@replaced-ip )
1041 [10:32:59] *** Parts: tobias_ (8fb00599@replaced-ip ) ()
1042 [10:33:31] *** Joins: tobiasnl (8fb00599@replaced-ip )
1043 [10:33:32] *** Quits: m0u_ (~m0u@replaced-ip ) (Ping timeout: 250 seconds)
1044 [10:33:36] <tobiasnl> ohai :)
1045 [10:33:57] <tobiasnl> does anybody know where replaced-url
1046 [10:34:18] *** Joins: \\Mr_C\\ (~mrc@replaced-ip )
1047 [10:35:04] <rant> right there ^ :P
1048 [10:35:29] <tobiasnl> for me it 404s...
1049 [10:35:32] <tobiasnl> cdn borked?
1050 [10:36:00] <apollo13> maybe, 404s here to
1051 [10:36:08] *** Joins: kiasan (~kia@replaced-ip )
1052 [10:36:43] <rant> dpkg, what is jessie?
1053 [10:36:43] <dpkg> Jessie is the codename for the current <oldstable> release, Debian 8, released on 2015-04-25: replaced-url
1054 [10:37:01] <rant> dpkg, what is jessie-lts
1055 [10:37:01] <dpkg> Security support for Debian 8 "Jessie" from the Debian Security Team ended on 2018-05-17. The amd64, i386, armel and armhf architectures will receive additional long term support (<LTS>) via <jessie/updates> until around 2020 for a 5 year lifetime total. See replaced-url
1056 [10:37:11] <tobiasnl> @dpkg afaik jessie-lts is supported from that url
1057 [10:37:15] *** Joins: brokencycle (~brokencyc@replaced-ip )
1058 [10:37:30] *** Joins: Kevlar_Noir (~manjaro-u@replaced-ip )
1059 [10:37:46] <rant> dpkg, jessie/updates?
1060 [10:37:46] <dpkg> On Debian 8 "Jessie" systems, there are two repositories that you should have in your sources.list aside from your main mirror. You should have an entry for "jessie/updates" which is security updates (ask me about <security>) and also an entry for "jessie-updates" which is other updated packages (see <jessie-updates>). See also <sources.list> <jessie-lts>.
1061 [10:38:02] <tobiasnl> simple stuff like running apt-get update inside a docker-image based on debian:jessie is dead here
1062 [10:38:08] *** Joins: debianero (~debianero@replaced-ip )
1063 [10:38:28] *** Joins: jelly-test (~test@replaced-ip )
1064 [10:38:45] <tobiasnl> rant: this worked a week ago :) so did something change?
1065 [10:38:52] <rant> there /has/ been some odd stuff going on with the jessie mirrors recently
1066 [10:39:18] *** Quits: polymorphisme (~Thunderbi@replaced-ip ) (Remote host closed the connection)
1067 [10:39:28] *** Joins: polymorphisme (~Thunderbi@replaced-ip )
1068 [10:40:04] *** Joins: fritzroy15 (~paul.lupu@86.125.115.49)
1069 [10:40:22] <jelly> replaced-url
1070 [10:40:29] <tobiasnl> ah found it
1071 [10:40:30] <jelly> > Removal of Wheezy and Jessie (except LTS) from mirrors
1072 [10:40:37] <tobiasnl> ah jelly was 10s quicker
1073 [10:40:53] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 245 seconds)
1074 [10:41:12] <fritzroy15> hello, are there issues today with debian's repos? I can't seem to get apt update to work ( debian 8 jessie ): replaced-url
1075 [10:41:13] <tobiasnl> so I guess I gotta hint the debian:jessie docker image maintainer that his stuff is out of date
1076 [10:41:22] *** ChanServ sets mode: +o jelly
1077 [10:41:39] <tobiasnl> haha, I'm guessing you're gonna have more questions regardingthis today
1078 [10:41:52] *** Quits: AimHere (~David@replaced-ip ) (Ping timeout: 255 seconds)
1079 [10:42:08] <tobiasnl> @fritzroy15 replaced-url
1080 [10:42:40] *** Joins: AimHere (~David@replaced-ip )
1081 [10:42:51] *** Joins: pragomer (~pragomer@replaced-ip )
1082 [10:43:09] <pragomer> how can I read a csv file that is separated with semicolons?
1083 [10:43:11] <pragomer> I tried
1084 [10:43:19] <pragomer> column -t -s; myfile.csv
1085 [10:43:31] <tobiasnl> escape the ; ?
1086 [10:43:38] <fritzroy15> tobiasnl not sure I understand, has LTS support ended for deb8?
1087 [10:43:46] *** Joins: un4ooR6f (~cltm@replaced-ip )
1088 [10:43:52] <tobiasnl> fritsroy15 no the non LTS bits are archived
1089 [10:44:02] *** debhelper sets mode: +l 1536
1090 [10:44:13] *** Quits: leorat (~rat@replaced-ip ) (Quit: leorat)
1091 [10:44:19] <pragomer> escaping is that with an \ ?
1092 [10:44:25] *** Joins: nuuuciano (~luuuciano@replaced-ip )
1093 [10:44:45] <tobiasnl> pragomer yes
1094 [10:44:53] *** Quits: conyers (~conyers@replaced-ip ) (Quit: ZZZzzz…)
1095 [10:44:55] <pragomer> ah yes, it works. thank you very much
1096 [10:45:26] *** Quits: pragomer (~pragomer@replaced-ip ) (Client Quit)
1097 [10:46:33] *** Joins: NetTerminalGene (~NetTermin@replaced-ip )
1098 [10:46:40] *** Joins: v01d4lph4 (~v01d4lph4@replaced-ip )
1099 [10:46:50] *** Quits: un4ooR6f (~cltm@replaced-ip ) (Read error: Connection reset by peer)
1100 [10:47:06] <fritzroy15> tobiasnl not sure I understand how to fix it on my end
1101 [10:47:11] *** Joins: CrazyTux (~dolphin@replaced-ip )
1102 [10:47:25] <fritzroy15> tobiasnl tried updating all repo sources with archive.debian.org but that's not it
1103 [10:48:21] <jelly> fritzroy15: there's nothing to fix but remove jessie-updates and jessie-backports repositories from your config
1104 [10:48:25] <CrazyTux> which is a better approach when we want to migrate to a newer release of Debian, installing it afresh or complete upgrade of the existing installation?
1105 [10:48:38] <jelly> CrazyTux: both work.
1106 [10:48:41] <apollo13> well the safer bet is obviusly a fresh install
1107 [10:48:47] <CrazyTux> in case of Debian stable.
1108 [10:48:52] <apollo13> also a good way to test if your configuration management system works :D
1109 [10:49:02] <jelly> safer for whom?
1110 [10:49:13] <CrazyTux> for an end user.
1111 [10:49:28] <apollo13> jelly: for the sys admin to know that the config files are as they should be
1112 [10:49:43] <rant> yes because all the literature regarding LTS is no longer valid
1113 [10:49:53] <CrazyTux> suppose if one has debian 8 installed and wants to move to 9.
1114 [10:50:03] *** Quits: fling (~fling@replaced-ip ) (Ping timeout: 245 seconds)
1115 [10:50:21] <apollo13> personally at laest I do not do updates, I do new installs for major version changes -- ymmv
1116 [10:50:24] <jelly> CrazyTux: there is a supported and documented in-place upgrade path, if you want to do it that way..
1117 [10:50:26] <rant> I was checking the mailing lists, and other mirrors, I don't see any jessie-updates on any of them and the LTS wiki entry says to use that in your sources
1118 [10:50:27] <CrazyTux> I am asking from the perspective of a non technical end user.
1119 [10:50:35] *** Joins: mami64 (2ef8a1a5@replaced-ip )
1120 [10:50:43] <jelly> dpkg, jessie->stretch
1121 [10:50:43] <dpkg> Read (at least) the upgrading chapter of the <release notes> replaced-url
1122 [10:50:49] <mami64> hello
1123 [10:50:50] <rant> the jessie/updates is still there on security.debian.org
1124 [10:51:04] <themill> rant: jessie/updates *is* LTS.
1125 [10:51:07] <jelly> rant: and it will keep being there. That's where lts packages go.
1126 [10:51:09] <mami64> I have a problem with "page allocation failure" in debian8 (kernel distro 3.16.51-3+deb8u1). The problem repeats every ~20 days ---dmesg---> replaced-url
1127 [10:51:14] <fritzroy15> jelly so where will it get its updates from ?
1128 [10:51:33] <jelly> fritzroy15: not from those any more.
1129 [10:51:43] <mami64> I change RAM to new and add 2x
1130 [10:51:55] <fritzroy15> jelly what are the new sources I should change to?
1131 [10:51:57] <jelly> fritzroy15: because there won't be updates in those repos, and there haven't been any for a while.
1132 [10:52:05] <mami64> And I dont have any idea
1133 [10:52:24] <jelly> fritzroy15: you don't put in any. You plan a release upgrade to Debian 9 if there's something new you need.
1134 [10:52:27] <Haohmaru> mami64 perhaps, run a memtest?
1135 [10:52:29] <mami64> server: PowerEdge R620
1136 [10:52:29] <rant> then I suppose someone should fix the wiki then
1137 [10:52:34] <weedloser> how long does it usually take from the full freeze to an official stable release?
1138 [10:52:36] *** Joins: KOLANICH (~KOLANICH@replaced-ip )
1139 [10:52:37] <fritzroy15> ah okay, thanks for the info!
1140 [10:52:56] <jelly> fritzroy15: or you make your own local backports!
1141 [10:52:57] <KOLANICH> Hi everyone. How to get rid of dpkg-genbuildinfo: error: binary build with no binary artifacts found; .buildinfo is meaningless ?
1142 [10:53:16] <mami64> Haohmaru: For latest (this same) problem I change to new RAM and added 2x more RAM
1143 [10:53:28] <rant> replaced-url
1144 [10:53:36] <mami64> problem returns ~20-23 days
1145 [10:55:31] <themill> rant: thanks, fixed.
1146 [10:55:38] *** Parts: CrazyTux (~dolphin@replaced-ip ) ("Leaving")
1147 [10:55:42] <beardy> /msg judd find /bin/host
1148 [10:56:23] <mami64> ...
1149 [10:57:01] *** Joins: gem808 (~Thunderbi@replaced-ip )
1150 [10:57:06] <mami64> cat /proc/sys/vm/min_free_kbytes
1151 [10:57:08] <mami64> 90112
1152 [10:58:33] *** ChanServ sets mode: -o jelly
1153 [10:59:01] *** Quits: bingbotboom (~bingbotbo@replaced-ip ) (Ping timeout: 268 seconds)
1154 [10:59:39] <rant> dpkg jessie/updates ~= s/ and also an entry for "jessie-updates" which is other updated packages (see <jessie-updates>)//
1155 [10:59:39] <dpkg> I think you lost me on that one, rant
1156 [10:59:48] <rant> dpkg jessie/updates =~ s/ and also an entry for "jessie-updates" which is other updated packages (see <jessie-updates>)//
1157 [10:59:48] <dpkg> rant: OK
1158 [10:59:49] *** Quits: gem808 (~Thunderbi@replaced-ip ) (Client Quit)
1159 [10:59:59] <Haohmaru> mami64 no idea about that
1160 [11:00:26] <rant> dpkg jessie/updates =~ s/re are two repositories/other repository/
1161 [11:00:27] <dpkg> rant: OK
1162 [11:00:34] *** Joins: overbythere (~textual@replaced-ip )
1163 [11:02:25] <mami64> Haohmaru: maby I change kernel to 4.x
1164 [11:02:35] *** Quits: lankanmon (~LKNnet@replaced-ip ) (Quit: Left...)
1165 [11:02:36] <mami64> mamby code CPU was problematic or something
1166 [11:02:36] *** Joins: baoday (~kubde@replaced-ip )
1167 [11:02:51] *** Joins: oish (~charlie@replaced-ip )
1168 [11:02:53] <mami64> I dont known.
1169 [11:03:08] *** Quits: lek (~lek@replaced-ip ) (Ping timeout: 272 seconds)
1170 [11:03:26] <jelly> rant: now go fix up stretch/updates as well!
1171 [11:03:26] <fritzroy15> i'm really confused right now; the full story is we had a build working off the ruby2.2.2 docker image which is based on the debian8 image; now apt is broken, it can't find any package anymore, and the apt update command just fails altogether
1172 [11:03:28] <mami64> this debian is without systemd
1173 [11:03:32] <fritzroy15> no idea how to sort this mess
1174 [11:03:40] *** adc__ is now known as adc
1175 [11:03:40] <overbythere> hopefully not repeating something, but jessie-updates disappeared overnight, did I miss something?
1176 [11:03:57] <jelly> fritzroy15: how broken is your apt?
1177 [11:04:05] <jelly> dpkg, basic apt troubleshooting
1178 [11:04:05] <dpkg> In order to troubleshoot your problem with apt-get, apt or aptitude we need ALL OF THE FOLLOWING information: 1. complete output of your apt-get/apt/aptitude run (including the command used) 2. output from "apt-cache policy pkg1 pkg2..." for ALL packages mentioned ANYWHERE in the problem, and 3. "apt-cache policy". Use replaced-url
1179 [11:04:08] <jelly> fritzroy15: ^
1180 [11:04:41] *** ChanServ sets mode: +o jelly
1181 [11:04:44] *** Joins: fling (~fling@replaced-ip )
1182 [11:04:59] *** Quits: JohnML (~john1@replaced-ip ) (Remote host closed the connection)
1183 [11:05:02] <themill> overbythere: yes, it has been unsupported since 2018-05-17 and was finally removed
1184 [11:05:17] <overbythere> time to upgrade yayay
1185 [11:05:22] <overbythere> boss can't stop me now
1186 [11:05:52] <themill> well, the time to upgrade was either this time last year, or in another year when jessie-lts runs out, depending on your use case
1187 [11:05:53] *** jelly changes topic to 'Debian Stretch: /msg dpkg stretch ; /msg dpkg 9.8 ; /msg dpkg jessie->stretch ; /msg dpkg install stretch | Oldstable: Debian Jessie, jessie-updates and jessie-backports REMOVED 2019-03-24, /msg dpkg jessie ; /msg dpkg jessie-lts | NO FLOOD: /msg dpkg paste | /msg bots NOT people | offtopic: #debian-offtopic | testing, unstable: #debian-next @ irc.oftc.net | chanlogs: /msg dpkg irclog'
1188 [11:05:56] *** ChanServ sets mode: -o jelly
1189 [11:06:14] <overbythere> themill shh the error in apt-get is my way to say we need to upgrade, it'll do :D
1190 [11:06:55] <jelly> there, now we have somthing in topic that noone will read
1191 [11:07:35] *** Joins: JohnML (~john1@replaced-ip )
1192 [11:07:45] <colo-work> hmmm
1193 [11:08:05] <colo-work> has jessie/updates "contrib" vanished?
1194 [11:08:06] <overbythere> jelly i promise i read the topic twice before i posted, pls dont hat eme
1195 [11:08:23] *** Quits: Guest9121 (~themsay@replaced-ip ) (Ping timeout: 245 seconds)
1196 [11:09:10] *** Joins: m0u_ (~m0u@replaced-ip )
1197 [11:09:59] <fritzroy15> jelly replaced-url
1198 [11:10:28] *** Quits: ircarcs (~quassel@replaced-ip ) (Quit: ircarcs)
1199 [11:10:31] <jelly> I won't hat anyone, this is not #fedora
1200 [11:10:38] <overbythere> ha!
1201 [11:10:38] <overbythere> touché
1202 [11:10:55] <tobiasnl> @jelly I read the topic when I entered! :-)
1203 [11:11:00] <tobiasnl> but, good busy
1204 [11:11:05] *** Joins: tmroland (~tmroland@replaced-ip )
1205 [11:11:13] *** Quits: baoday (~kubde@replaced-ip ) (Read error: Connection reset by peer)
1206 [11:11:30] *** Joins: baoday (~kubde@replaced-ip )
1207 [11:11:32] <fritzroy15> jelly don't i have to change the existing sources.list to somewhere on archive.debian.org?
1208 [11:12:30] <jelly> fritzroy15: remove jessie-updates and jessie-backports repo from the config for starters
1209 [11:12:39] *** Joins: ircarcs (~quassel@replaced-ip )
1210 [11:12:53] <jelly> and there's an issue with third (first?) party postgresql repo you're using
1211 [11:12:56] <rant> dpkg, stretch/updates =~ s/ (see <jessie-updates>)//
1212 [11:12:56] <dpkg> OK, rant
1213 [11:13:17] *** Joins: swecha (~gnu@replaced-ip )
1214 [11:14:59] <rant> only jessie machine I had was my father's desktop and I upgraded it this time last year just cause I wasnt sure if I'd be around when it reached EOL
1215 [11:15:08] <fritzroy15> jelly so I can leave in just "deb replaced-url
1216 [11:15:10] <jelly> rant: a link to <stretch-updates> could have been left in place there, don't you think?
1217 [11:15:31] <jelly> fritzroy15: and security.d.o one too.
1218 [11:15:56] <rant> jelly: doesn't matter really, the factoid for jessie-updates speaks of it in past tense and says it no longer exists.. but idk.. what else was wrong with that factoid then? :P
1219 [11:15:58] *** Joins: msil (~msil@replaced-ip )
1220 [11:16:13] *** Joins: woshty (~woshty@replaced-ip )
1221 [11:16:41] <fritzroy15> jelly what would be the line for security?
1222 [11:17:15] *** Joins: federa (5d9101df@replaced-ip )
1223 [11:18:18] *** Quits: zamuro (~Samantha@replaced-ip ) (Quit: [IRSSI])
1224 [11:18:36] <KOLANICH> Damn. replaced-url
1225 [11:18:48] *** Quits: JyZyXEL (~foo@replaced-ip ) (Ping timeout: 245 seconds)
1226 [11:19:19] *** Quits: ImamGace (~androirc@replaced-ip ) (Read error: Connection reset by peer)
1227 [11:19:26] <themill> KOLANICH: I think you might need to offer a bit of context
1228 [11:19:47] <jelly> !jessie sources.list
1229 [11:19:47] <dpkg> A suitable /etc/apt/sources.list for Debian 8 "Jessie" has two lines: "deb replaced-url
1230 [11:20:14] *** Quits: elkalamar_ (elkalamar@replaced-ip ) (Ping timeout: 272 seconds)
1231 [11:21:07] *** Joins: elkalamar (elkalamar@replaced-ip )
1232 [11:21:22] *** Joins: root (~root@replaced-ip )
1233 [11:21:39] *** Quits: Error451 (~R@replaced-ip##) (Quit: - nbs-irc 2.39 - ##replaced-url
1234 [11:21:42] *** Quits: root (~root@replaced-ip ) (Remote host closed the connection)
1235 [11:21:43] <KOLANICH> themill: I am packaging a prebuilt app. I download it from GitHub and with scripts rip into different packages. but dpkg-buildpackage fails.
1236 [11:21:47] *** Joins: gvth (~cell@replaced-ip )
1237 [11:22:26] *** Joins: Raging_Hog (~hna@replaced-ip )
1238 [11:22:37] <jim> hi. just installed inkscape on stretch, and when I hover the mouse over the icons, I get a white rectangle with a black border, and nothing on it
1239 [11:23:03] <jim> is this a known issue? could it be a configuration problem?
1240 [11:23:05] <KOLANICH> themill: the error is `dpkg-genbuildinfo: error: binary build with no binary artifacts found; .buildinfo is meaningless` .
1241 [11:23:51] <themill> jim: istr that's something in the gtk theme -- you have white on white.
1242 [11:24:01] <themill> KOLANICH: yeah, that's not actually any info I didn't already know. How about the full output?
1243 [11:25:16] *** Joins: JyZyXEL (~foo@replaced-ip )
1244 [11:25:54] <jim> themill, sounds right to me (what's istr again?)
1245 [11:26:07] *** Quits: elkalamar (elkalamar@replaced-ip ) (Remote host closed the connection)
1246 [11:26:20] <jim> I got it, I seem to recall
1247 [11:26:34] <fritzroy15> jelly thank you very much, everything seems to work now; that's a neat feature with ! in the channel, are all the standard config files the system comes with listed? A lot of times I forget to copy the original before overwritting it and need to search for a copy
1248 [11:27:29] *** Joins: esro (~esro@replaced-ip )
1249 [11:27:49] <fritzroy15> jelly also, for how much longer are those repositories for jessie be supported?
1250 [11:28:26] *** Quits: MACscr (~MACscr@replaced-ip ) (Ping timeout: 250 seconds)
1251 [11:28:34] *** Joins: katyucha (~katyucha@replaced-ip )
1252 [11:29:32] <fritzroy15> so I know when our builds might fail again; would that be the EOL date of june 30 2020?
1253 [11:29:37] *** Quits: katyucha (~katyucha@replaced-ip ) (Client Quit)
1254 [11:34:27] *** Joins: cnrhkiyf (~cnrhkiyf@replaced-ip )
1255 [11:36:32] *** Joins: sinner (~themsay@replaced-ip )
1256 [11:36:56] *** sinner is now known as Guest40623
1257 [11:37:33] *** Joins: mitrokov (~mitrokov@replaced-ip )
1258 [11:37:44] <mami64> Haohmaru: maby change vm.min_free_kbytes=90112 ?
1259 [11:37:58] *** Quits: __marco (~marco@replaced-ip ) (Ping timeout: 245 seconds)
1260 [11:37:59] <mami64> to vm.min_free_kbytes=1048576 ?
1261 [11:38:01] <Haohmaru> no idea what that is
1262 [11:38:05] <mami64> i have 128 GB RAM
1263 [11:38:34] *** Quits: BeerHall (~Thunderbi@replaced-ip ) (Ping timeout: 255 seconds)
1264 [11:39:32] <jim> themill (and *), I got this when starting inkscape (and as noted in the pastebin, I removed the config files): replaced-url
1265 [11:39:56] *** Quits: dez (uid92154@replaced-ip ) (Quit: Connection closed for inactivity)
1266 [11:40:21] <jim> still the white-on-white thing is happening, even after removing the configs
1267 [11:40:41] *** Joins: BeerHall (~Thunderbi@replaced-ip )
1268 [11:40:56] *** Quits: BeerHall (~Thunderbi@replaced-ip ) (Client Quit)
1269 [11:42:20] <pstk> fritzroy15: same here...
1270 [11:42:29] <pstk> we have removed jessie-updates repo
1271 [11:43:04] <fritzroy15> what will happen after EOL on June 30 2020? will apt break again?
1272 [11:43:25] *** Joins: MACscr (~MACscr@replaced-ip )
1273 [11:44:15] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1274 [11:45:16] *** Quits: telcoguy____ (~telcoguy_@replaced-ip ) (Ping timeout: 268 seconds)
1275 [11:45:17] <fritzroy15> havent experienced EOL events before
1276 [11:46:10] *** Joins: damasceno (b2fba76e@replaced-ip )
1277 [11:46:12] *** Quits: cdown (~cdown@replaced-ip ) (Ping timeout: 250 seconds)
1278 [11:46:44] *** Quits: mirage335 (~mirage335@replaced-ip ) (Ping timeout: 252 seconds)
1279 [11:46:50] *** Quits: swecha (~gnu@replaced-ip ) (Quit: Leaving)
1280 [11:47:01] *** Joins: lucad111 (~lucad111@replaced-ip )
1281 [11:48:29] <damasceno> I can see jessie-updates and jessie-backports repos were removed, does anyone know why?
1282 [11:48:44] *** Joins: lankanmon (~LKNnet@replaced-ip )
1283 [11:49:09] <fritzroy15> damasceno replaced-url
1284 [11:49:10] <tobiasnl> because they can :)
1285 [11:49:11] *** Joins: n4dir (~n4dir@replaced-ip )
1286 [11:49:16] *** Joins: debsan_ (~debsan@replaced-ip )
1287 [11:49:49] <tobiasnl> the only thing I dont understand is why a version in LTS should not be in the normal /dists
1288 [11:49:51] *** Quits: Raging_Hog (~hna@replaced-ip ) (Read error: Connection reset by peer)
1289 [11:50:03] <damasceno> tobiasnl: xD
1290 [11:50:17] <damasceno> fritzroy15: thanks. It broke our production env :(
1291 [11:50:30] <tobiasnl> same here. Lots of red pipelines.
1292 [11:50:40] *** Parts: diogenes_ (~diogenes_@replaced-ip ) ("vergissmeinnicht")
1293 [11:50:41] <damasceno> Is there a way to keep up with the changes? We want to prevent something like this to happen again...
1294 [11:50:55] <fritzroy15> tobiasnl damasceno same here
1295 [11:50:57] <tobiasnl> subscribe to debian-devel-announce
1296 [11:51:07] <themill> jessie-updates has not been used for almost a year and should not have been in your sources.list giving you a false sense of security
1297 [11:51:35] <tobiasnl> themill: not everybody uses debian at that level - for lots of people its just a building block
1298 [11:51:52] <fritzroy15> guys, what happens on June 30 2020 ( deb8 EOL ) as far as APT is concerned?
1299 [11:51:58] <themill> you should still know if your building blocks are supported
1300 [11:52:01] <tobiasnl> (and why didnt it move almost a year ago? that makes it more vague why stuff just died this week)
1301 [11:52:03] *** Quits: federa (5d9101df@replaced-ip ) (Quit: Page closed)
1302 [11:52:19] <themill> it was supposed to be but just didn't happen
1303 [11:52:45] <colo-work> [11:51:58] <themill> you should still know if your building blocks are supported - hehe, tell that to ubuntu users :>
1304 [11:52:46] <themill> (it's quite a lot of work and there were more important things to do for the volunteers who deal with that sort of janitorial work)
1305 [11:53:02] <damasceno> Thanks for the info guys
1306 [11:53:37] <fritzroy15> did you ever get that feeling you're invisible and nobody pays attention to what you say?
1307 [11:53:50] *** Quits: debsan_ (~debsan@replaced-ip ) (Client Quit)
1308 [11:53:53] <tobiasnl> I just dont have an answer fritzroy15
1309 [11:53:58] <themill> fritzroy15: step 1, you'll just not get any more updates. step 2, it will be removed from the mirror and you'll get 404s.
1310 [11:54:11] *** Joins: debsan (~debsan@replaced-ip )
1311 [11:54:13] <tobiasnl> so step 1 is similar to now
1312 [11:54:21] <themill> fritzroy15: you should be planning to stop using it before the end date, not after the end date when things suddenly break
1313 [11:54:24] <tobiasnl> and step 2 is similar to why you came here - errors in your console
1314 [11:54:30] <themill> it's not like these dates aren't published years in advance.
1315 [11:54:42] *** Quits: debsan (~debsan@replaced-ip ) (Changing host)
1316 [11:54:43] *** Joins: debsan (~debsan@replaced-ip )
1317 [11:54:50] <fritzroy15> ah okay, so we need to update by then
1318 [11:54:52] <damasceno> P.S: It can still be found in the official debian jessie docker image: replaced-url
1319 [11:54:59] <damasceno> So, this is not right...
1320 [11:55:02] <fritzroy15> was just curious if the packages linger around
1321 [11:55:08] <tobiasnl> damasceno: thats why i raised an issue there
1322 [11:55:25] <themill> damasceno: fsv official
1323 [11:55:44] *** Quits: conta (~Thunderbi@replaced-ip ) (Ping timeout: 250 seconds)
1324 [11:55:51] <tobiasnl> I'm afraid this is going to break a lot of legacy boxes the coming weeks :)
1325 [11:56:19] *** Joins: rookie (4e224caa@replaced-ip )
1326 [11:56:19] <tobiasnl> 'ah this was apparently running jessie under the hood' ;-)
1327 [11:56:53] <themill> if that makes people finally upgrade to a supported release, that's good. Should have done it 10 months ago.
1328 [11:57:08] *** Quits: kapil____ (uid36151@replaced-ip ) (Quit: Connection closed for inactivity)
1329 [11:58:27] <rookie> under the debian stretch xfce4 install iso i am trying to mount a ufs partition => "ufs: ufs_fill_super(): fragment size 8192 is too large " && "ufs: ufs_fill_super(): bad magic number"
1330 [11:58:42] <KOLANICH> how to make dpkg-buildpackage download source code?
1331 [11:59:09] <KOLANICH> In fact it is not source code, but prebuilt binary
1332 [11:59:09] <fritzroy15> thanks for all the info guys, we're back up and running, and we're in the process of debating how to set a reminder on June 10 2020 lel
1333 [11:59:22] <tobiasnl> themill: if I simply change debian:jessie to debian:stretch in the vendors dockerfile it breaks. I don't want to become the maintainer of the image. So I can't simply 'upgrade to a supported release' with a snip of the fingers.
1334 [11:59:50] <themill> KOLANICH: it can do neither
1335 [12:00:41] <KOLANICH> themill: I mean is there any target in debian/rules I should create to download source?
1336 [12:01:34] <themill> KOLANICH: you could in any target for your own custom package. (Debian packages cannot do so at all)
1337 [12:03:33] <KOLANICH> themill: I don't understand anything. dpkg-buildpackage asks me about source package. Is it meant to be placed there by a shell script or what?
1338 [12:03:56] <KOLANICH> befor dpkg-buildpackage is called
1339 [12:04:06] *** Joins: mirage335 (~mirage335@replaced-ip )
1340 [12:04:15] <themill> The source package is the thing you're building.
1341 [12:05:01] *** Quits: dpkg (~dpkg@replaced-ip ) (Quit: buh bye!)
1342 [12:05:17] *** Joins: dpkg (~dpkg@replaced-ip )
1343 [12:05:29] <themill> You've not really shared any details with us so I can't quite see what your current set of misconceptions are to begin fixing them.
1344 [12:05:43] *** Quits: aZz7eCh (~aZz7eCh@replaced-ip ) (Remote host closed the connection)
1345 [12:05:50] *** Joins: __marco (~marco@replaced-ip )
1346 [12:06:23] *** Coca|ne is now known as Remy^
1347 [12:06:48] *** Joins: dsfsdf (~r5tgfbjfc@replaced-ip )
1348 [12:06:56] *** Joins: conta (~Thunderbi@replaced-ip )
1349 [12:08:28] <n4dir> the debian wiki is full of how-to's about the subject though, so whichever details fit, something will be found there. step-by-step.
1350 [12:08:44] <jim> themill, so after removing inkscape configs and the tooltip problems remain (just get a bordered white rectangle, nothing on it, so maybe white-on-white), is there something more system-wide I should adjust the configuration of?
1351 [12:10:02] *** Quits: dselect (~dselect@replaced-ip ) (Quit: ouch... that hurt)
1352 [12:11:08] *** Quits: kiasan (~kia@replaced-ip ) (Quit: WeeChat 2.4)
1353 [12:11:16] <themill> As I said, my understanding is that it is a gtk theme setting.
1354 [12:11:51] *** Joins: dselect (~dselect@replaced-ip )
1355 [12:12:17] *** Quits: def_jam (~eblip@replaced-ip ) (Read error: Connection reset by peer)
1356 [12:13:39] *** Joins: def_jam (~eblip@replaced-ip )
1357 [12:13:43] *** Joins: eblip (~eblip@replaced-ip )
1358 [12:14:01] *** debhelper sets mode: +l 1542
1359 [12:14:07] <KOLANICH> themill: replaced-url
1360 [12:14:22] *** Joins: mvaenskae (~mvaenskae@replaced-ip )
1361 [12:14:27] <themill> KOLANICH: 404.
1362 [12:14:52] *** Joins: ztychr (~ztychr@replaced-ip )
1363 [12:16:15] *** Quits: eb0t (~eblip@replaced-ip ) (Ping timeout: 246 seconds)
1364 [12:20:46] *** Joins: nomercy (~0fh@replaced-ip )
1365 [12:20:54] *** Joins: m1sosoup (~m1sosoup@replaced-ip )
1366 [12:20:57] *** Quits: gvth (~cell@replaced-ip ) (Quit: leaving)
1367 [12:21:50] *** Quits: damasceno (b2fba76e@replaced-ip ) (Quit: Page closed)
1368 [12:24:25] *** Quits: tobiasnl (8fb00599@replaced-ip ) (Ping timeout: 256 seconds)
1369 [12:24:27] *** Quits: rookie (4e224caa@replaced-ip ) (Quit: Page closed)
1370 [12:24:30] *** Quits: nomercy (~0fh@replaced-ip ) (Client Quit)
1371 [12:26:58] *** Joins: retpoline (~retpoline@replaced-ip )
1372 [12:27:26] *** Joins: gfdghhd (~r5tgfbjfc@replaced-ip )
1373 [12:27:35] *** Joins: wyre (~wyre@replaced-ip )
1374 [12:28:03] <wyre> hi guys, where could I find docu about how to reinstall debian kernel from a live image using chroot?
1375 [12:28:32] <wyre> well, first, is this possible? hehe
1376 [12:28:46] <wyre> (I think it must be 😆)
1377 [12:29:06] *** Joins: EvilDMP (EvilDMP@replaced-ip )
1378 [12:30:06] <n4dir> !chroot
1379 [12:30:06] <dpkg> To chroot into your Debian system boot to your Debian install disk/live CD, switch to the other console (Alt-F2). Mount your root filesystem with "mount -t ext2 /dev/whatever /target" and make /dev, /proc and /sys usable with "mount --rbind --make-rslave /dev /target/dev ; mount -t proc none /target/proc ; mount -t sysfs none /target/sys". You can then chroot into the system with "chroot /target".
1380 [12:30:25] <EvilDMP> I'm getting a:
1381 [12:30:25] <EvilDMP> W: Failed to fetch replaced-url
1382 [12:30:31] <EvilDMP> In fact I see it redirects to replaced-url
1383 [12:30:35] *** Joins: mocas (5973f4a2@replaced-ip )
1384 [12:30:44] <EvilDMP> which is where the 404 comes from.
1385 [12:30:53] *** Quits: dsfsdf (~r5tgfbjfc@replaced-ip ) (Ping timeout: 245 seconds)
1386 [12:31:03] <EvilDMP> Is this simply a temporary CDN issue?
1387 [12:31:11] *** Joins: mspe (~mspe@replaced-ip )
1388 [12:31:22] *** Joins: BCMM (~BCMM@replaced-ip )
1389 [12:31:49] *** Quits: abff (~abff@replaced-ip ) (Remote host closed the connection)
1390 [12:33:06] *** Joins: abff (~abff@replaced-ip )
1391 [12:33:12] *** Quits: cnrhkiyf (~cnrhkiyf@replaced-ip ) (Remote host closed the connection)
1392 [12:33:48] *** Joins: bingbotboom (~bingbotbo@replaced-ip )
1393 [12:35:28] <mocas> It's possible to monitor which files are looked up in some folder? I need to create a configuration file but I forgot the name.... :(
1394 [12:36:04] *** Quits: BrianG61UK (~BrianG61U@replaced-ip ) (Read error: Connection reset by peer)
1395 [12:36:14] <Ticho_> with strace, perhaps?
1396 [12:36:28] *** Joins: simpledat (~unknown@replaced-ip )
1397 [12:36:32] <mocas> yah, strace, I will try.... thks
1398 [12:36:57] *** Joins: fr3nd (5b7e8343@replaced-ip )
1399 [12:37:15] <Ede|Popede> EvilDMP: see topic
1400 [12:37:20] *** Quits: ztychr (~ztychr@replaced-ip ) (Ping timeout: 250 seconds)
1401 [12:38:08] <EvilDMP> Ede|Popede: Not entirely sure what I am looking for - but I guess "jessie-updates and jessie-backports REMOVED 2019-03-24"?
1402 [12:38:18] <Ede|Popede> bingo
1403 [12:38:23] *** scitor_ is now known as scitor
1404 [12:38:46] *** Joins: semeion (~semeion@replaced-ip )
1405 [12:40:26] <EvilDMP> Ede|Popede: Thanks, I am not very familiar with this, what should I search for to find out more about this?
1406 [12:41:08] *** Joins: OS-44792 (~OS-44792@replaced-ip )
1407 [12:41:36] *** Quits: jmarsac (~jmarsac@replaced-ip##) (Quit: Nettalk6 - ##replaced-url
1408 [12:41:39] <Ede|Popede> EvilDMP: that's the announcement replaced-url
1409 [12:42:05] <EvilDMP> Thanks again Ede|Popede
1410 [12:42:50] *** Quits: n4dir (~n4dir@replaced-ip ) (Remote host closed the connection)
1411 [12:48:24] *** Joins: elitas (~elitas@replaced-ip )
1412 [12:49:08] *** Quits: simpledat (~unknown@replaced-ip ) (Quit: leaving)
1413 [12:49:41] *** Joins: uniqdom (~uniqdom@replaced-ip )
1414 [12:50:05] *** Joins: root__ (~OS-44792@replaced-ip )
1415 [12:50:55] <elitas> hello, what repository i should use instead jessie-backports ?
1416 [12:50:56] <wyre> also... may I use chroot to my debian system from my ArchLinux (both in the same disk)?
1417 [12:51:20] <wyre> or it is more convenient using the Debian install media?
1418 [12:52:33] *** Quits: OS-44792 (~OS-44792@replaced-ip ) (Ping timeout: 245 seconds)
1419 [12:52:57] <colo-work> wyre, you could use systemd-nspawn, it makes for a very convenient "distros-switcher" of sorts
1420 [12:53:40] <wyre> colo-work: I do not get you
1421 [12:53:45] <wyre> I don't know systemd-nspawn
1422 [12:53:48] *** Joins: Slashman (~Slash@replaced-ip )
1423 [12:54:01] *** debhelper sets mode: +l 1548
1424 [12:54:46] <wyre> colo-work: are you talking about this one? replaced-url
1425 [12:55:03] <colo-work> seems like that could be what I was talking about, yes
1426 [12:55:48] *** Joins: amcorreia (~amcorreia@replaced-ip )
1427 [12:55:49] <indomitable> why is debhelper setting channel limits
1428 [12:55:57] <indomitable> is it to prevent people filling up the channel with bots?
1429 [12:56:10] <Ede|Popede> probably. joinfloods
1430 [12:56:47] <wyre> colo-work: but it does seems to setup a new containers, not to repair existent systems ...
1431 [12:57:04] <colo-work> I wasn't aware that that was your goal
1432 [12:57:12] <colo-work> for a repair job, chroot is gonna do fine
1433 [12:57:21] *** Quits: esro (~esro@replaced-ip ) (Quit: Leaving)
1434 [12:57:46] *** Quits: ShakaJada (~RitamGrad@replaced-ip ) (Ping timeout: 255 seconds)
1435 [12:59:13] *** Quits: robs_ (~robs@replaced-ip ) (Ping timeout: 245 seconds)
1436 [13:00:38] <overbythere> elitas I think you're meant to move to stretch, or use archive
1437 [13:01:08] *** Quits: retpoline (~retpoline@replaced-ip ) (Quit: quitting)
1438 [13:01:17] <wyre> colo-work: ty anyway, it is good info :-)
1439 [13:02:11] *** Joins: jubo2 (~juboxi@replaced-ip )
1440 [13:03:04] *** Joins: SmearedBeard (~SmearedBe@replaced-ip )
1441 [13:03:05] <elitas> yeah..., for my situation needed jessie-backports
1442 [13:03:17] *** Joins: rocketmagnet (~username@replaced-ip )
1443 [13:03:24] *** Joins: ae-35 (~ae-35@replaced-ip )
1444 [13:03:42] *** Joins: thePiGrepper (~nagato@replaced-ip )
1445 [13:04:09] <rocketmagnet> hi everyone, i've build cmake and installed it under /usr/local/bin, but now when i enter cmake --version i get: /usr/bin/cmake: File or Directory not found
1446 [13:04:25] *** Joins: Gaaab (~Gaaab@replaced-ip )
1447 [13:04:42] <rocketmagnet> i can run it with /usr/local/bin/cmake --version
1448 [13:04:46] *** Quits: i1nfusion (~i1nfusion@replaced-ip ) (Remote host closed the connection)
1449 [13:04:53] <rocketmagnet> how to make it the global cmake version ?
1450 [13:05:12] *** Joins: i1nfusion (~i1nfusion@replaced-ip )
1451 [13:05:19] <rocketmagnet> i had cmake installed before but i deinstalled it with apt-get remove cmake --purge
1452 [13:05:27] <overbythere> elitas try updating sources to look at archive.debian.org instead of deb.debian etc
1453 [13:05:30] *** Joins: electro33 (uid613@replaced-ip )
1454 [13:05:57] *** Quits: wytchmaster (~wytchmast@replaced-ip##) (Quit: ##replaced-url
1455 [13:07:34] *** Quits: slv (~slv@replaced-ip ) (Quit: Leaving)
1456 [13:08:31] *** Joins: Olipro_ (~Olipro@replaced-ip )
1457 [13:08:31] *** Quits: Olipro_ (~Olipro@replaced-ip ) (Changing host)
1458 [13:08:31] *** Joins: Olipro_ (~Olipro@replaced-ip )
1459 [13:10:01] *** Joins: rpifan (~rpifan@replaced-ip )
1460 [13:10:06] *** Quits: Olipro (~Olipro@replaced-ip ) (Ping timeout: 258 seconds)
1461 [13:10:06] *** Olipro_ is now known as Olipro
1462 [13:13:57] *** Quits: secret-fire__ (~Secret-Fi@replaced-ip ) (Remote host closed the connection)
1463 [13:16:21] *** Joins: esro (~esro@replaced-ip )
1464 [13:17:11] *** Joins: cryptodan (~cryptodan@replaced-ip )
1465 [13:17:20] *** Quits: Ryushin (chris@replaced-ip ) (Remote host closed the connection)
1466 [13:17:58] *** Joins: Secret-Fire (~Secret-Fi@replaced-ip )
1467 [13:22:57] *** Joins: rustbuckett (~downtime@replaced-ip )
1468 [13:27:15] *** Joins: GaneshR (~ganeshraj@replaced-ip )
1469 [13:27:49] *** Quits: madage (~madage@replaced-ip ) (Ping timeout: 256 seconds)
1470 [13:28:29] *** Joins: avranas-tnw (~avranas-t@replaced-ip )
1471 [13:28:43] *** Joins: CrystalMath (~coderain@replaced-ip )
1472 [13:28:56] <elitas> thanks a lot for archive.debian.org
1473 [13:28:59] *** Quits: dasre_ (~dasre@replaced-ip ) (Remote host closed the connection)
1474 [13:29:15] *** Joins: dasre_ (~dasre@replaced-ip )
1475 [13:31:05] *** Remy^ is now known as Tjetter
1476 [13:31:22] *** Joins: monksam (~monksam@replaced-ip )
1477 [13:34:01] *** debhelper sets mode: +l 1556
1478 [13:34:42] *** Joins: madage (~madage@replaced-ip )
1479 [13:37:22] *** Quits: uniqdom (~uniqdom@replaced-ip ) (Quit: Leaving)
1480 [13:38:43] *** Quits: root__ (~OS-44792@replaced-ip ) (Ping timeout: 255 seconds)
1481 [13:39:20] <colo-work> is there a way to determine if any packages on a given system were installed from backports without having aptitude installed?
1482 [13:42:59] *** Tjetter is now known as Remy^
1483 [13:43:18] *** Quits: jonvonb (~username@replaced-ip ) (Read error: Connection reset by peer)
1484 [13:44:33] <themill> colo-work: for the specific case of backports, "bpo" in the version string: dpkg -l | grep bpo (or something using dpkg-query if you want structured output)
1485 [13:44:35] *** Joins: pragomer (~pragomer@replaced-ip )
1486 [13:44:37] *** Joins: ohwowlol (~ohwowlol@replaced-ip )
1487 [13:45:02] *** Joins: wytchmaster (~wytchmast@replaced-ip )
1488 [13:45:43] *** Quits: pingfloyd (~pingfloyd@replaced-ip ) (Quit: ☮ out)
1489 [13:46:06] *** Joins: kpease (~kpease@replaced-ip )
1490 [13:46:10] *** Joins: jmarsac (~jmarsac@replaced-ip )
1491 [13:46:11] *** Joins: dilema (~dilema@replaced-ip )
1492 [13:46:31] <colo-work> themill, ah, thanks! I forgot about that output format :)
1493 [13:46:35] *** Quits: kpease (~kpease@replaced-ip ) (Client Quit)
1494 [13:46:37] <colo-work> so dpkg -l | awk '{if($3 ~ /bpo/){print}}' it is then
1495 [13:46:59] <KOLANICH> themill: so what's wrong with my approach to packaging?
1496 [13:47:04] *** Joins: ShakaJada (~RitamGrad@replaced-ip )
1497 [13:48:34] *** Joins: diogenes_ (~diogenes_@replaced-ip )
1498 [13:48:51] *** Quits: trytus (c12ebbfc@replaced-ip ) (Ping timeout: 256 seconds)
1499 [13:49:17] *** Joins: oish_ (~charlie@replaced-ip )
1500 [13:49:20] <ksk> KOLANICH: reading `lastlog' I would guide you to read some dpkg-buildpackage manual, specificly on different types of packages, and how to define things/files that come with a package..
1501 [13:50:09] <ksk> packaging is not a trivial package, so maybe read it again if you already did ;)
1502 [13:50:22] <ksk> eeeh, s/package/task/
1503 [13:50:33] *** Parts: EvilDMP (EvilDMP@replaced-ip##) ("Textual IRC Client: ##replaced-url
1504 [13:50:48] *** Joins: Sepultura (~quassel@replaced-ip )
1505 [13:50:48] *** Quits: Sepultura (~quassel@replaced-ip ) (Changing host)
1506 [13:50:48] *** Joins: Sepultura (~quassel@replaced-ip )
1507 [13:51:25] *** Joins: ableto (~cryptum@replaced-ip )
1508 [13:52:31] *** Joins: noonien (uid162445@replaced-ip )
1509 [13:52:40] <themill> colo-work: «grep-status -FVersion bpo -sPackage» perhaps.
1510 [13:53:03] <themill> KOLANICH: I don't really know what you're trying to do or how you've done it
1511 [13:53:17] *** Joins: zeden (~user@replaced-ip )
1512 [13:54:01] *** debhelper sets mode: +l 1563
1513 [13:55:06] *** Joins: retpoline (~retpoline@replaced-ip )
1514 [13:55:59] *** Parts: ableto (~cryptum@replaced-ip ) ()
1515 [13:56:09] *** Joins: m0rph (~m1sosoup@replaced-ip )
1516 [13:56:22] *** Quits: pvdp (~pvdp@replaced-ip ) (Remote host closed the connection)
1517 [13:56:28] *** Joins: interrobangd (~interroba@replaced-ip )
1518 [13:56:57] *** Quits: KOLANICH (~KOLANICH@replaced-ip ) ()
1519 [13:57:09] *** Joins: wilkc (~wilkc@replaced-ip )
1520 [13:58:05] *** Quits: elitas (~elitas@replaced-ip ) ()
1521 [13:58:27] *** Joins: Megaf (~Megaf@replaced-ip )
1522 [13:58:30] *** Joins: ttyS2 (~username@replaced-ip )
1523 [13:59:12] *** Quits: m1sosoup (~m1sosoup@replaced-ip ) (Ping timeout: 272 seconds)
1524 [13:59:12] *** Quits: [Brain] (~brain@replaced-ip ) (Ping timeout: 272 seconds)
1525 [13:59:24] *** ttyS2 is now known as jonvonb
1526 [13:59:34] *** Joins: Old_Dog (~Old_Dog@replaced-ip )
1527 [13:59:37] *** Joins: synthmeat (~synthmeat@replaced-ip )
1528 [14:00:46] *** Quits: Corrino (~DeCorrino@replaced-ip ) (Remote host closed the connection)
1529 [14:01:19] *** Joins: s8548a (~s8548a@replaced-ip )
1530 [14:01:24] *** Joins: greycat (~wooledg@replaced-ip )
1531 [14:01:49] *** Quits: pragomer (~pragomer@replaced-ip ) (Quit: Leaving)
1532 [14:02:55] *** Joins: walnut_burl (~oak@replaced-ip )
1533 [14:05:42] *** Joins: [Brain] (~brain@replaced-ip )
1534 [14:06:02] *** Quits: Guest40623 (~themsay@replaced-ip ) (Read error: Connection reset by peer)
1535 [14:07:05] *** Joins: rsully (~rsully@replaced-ip )
1536 [14:07:23] *** Joins: Iridos (~iridos@replaced-ip )
1537 [14:07:31] *** Joins: sinner (~themsay@replaced-ip )
1538 [14:07:54] *** sinner is now known as Guest61706
1539 [14:08:04] *** Quits: zeden (~user@replaced-ip ) (Quit: WeeChat 2.4)
1540 [14:09:02] *** Quits: ironjosh (~ironjosh@replaced-ip ) (Ping timeout: 268 seconds)
1541 [14:10:08] *** Joins: cdown (~cdown@replaced-ip )
1542 [14:10:28] *** Quits: Guest78373 (~kyle@replaced-ip##) (Quit: ZNC 1.6.3+deb1ubuntu0.1 - ##replaced-url
1543 [14:10:47] *** Joins: pragomer (~pragomer@replaced-ip )
1544 [14:10:49] *** Quits: Megaf (~Megaf@replaced-ip ) (Quit: Leaving)
1545 [14:11:37] *** Quits: Guest61706 (~themsay@replaced-ip ) (Read error: Connection reset by peer)
1546 [14:12:39] *** Joins: zamuro (~Samantha@replaced-ip )
1547 [14:12:40] *** Quits: zamuro (~Samantha@replaced-ip ) (Changing host)
1548 [14:12:40] *** Joins: zamuro (~Samantha@replaced-ip )
1549 [14:15:11] *** Joins: abhikpal (~abhikpal@replaced-ip )
1550 [14:16:32] *** Quits: wytchmaster (~wytchmast@replaced-ip##) (Quit: ##replaced-url
1551 [14:16:42] *** Quits: homaar (~homaar@replaced-ip ) (Ping timeout: 250 seconds)
1552 [14:17:34] *** Quits: avranas-tnw (~avranas-t@replaced-ip ) (Ping timeout: 272 seconds)
1553 [14:18:41] *** Joins: olegfusion (~olegfusio@replaced-ip )
1554 [14:18:43] *** Quits: olegfusion (~olegfusio@replaced-ip ) (Read error: Connection reset by peer)
1555 [14:20:28] *** Quits: mitrokov (~mitrokov@replaced-ip ) (Quit: Leaving)
1556 [14:20:28] *** Joins: wytchmaster (~wytchmast@replaced-ip )
1557 [14:20:28] *** Quits: m0u_ (~m0u@replaced-ip ) (Ping timeout: 250 seconds)
1558 [14:20:43] *** Joins: Megaf (~Megaf@replaced-ip )
1559 [14:22:13] *** Joins: conyers (~conyers@replaced-ip )
1560 [14:23:19] *** Quits: silverballz (~hidden@replaced-ip ) (Read error: Connection reset by peer)
1561 [14:24:13] *** Joins: silverballz (~hidden@replaced-ip )
1562 [14:24:48] *** Quits: [Brain] (~brain@replaced-ip ) (Ping timeout: 250 seconds)
1563 [14:25:48] *** Joins: MikZyth (~MikZyth@replaced-ip )
1564 [14:26:38] *** Joins: Error451 (~R@replaced-ip )
1565 [14:26:38] *** Quits: Error451 (~R@replaced-ip ) (Changing host)
1566 [14:26:38] *** Joins: Error451 (~R@replaced-ip )
1567 [14:26:42] *** Joins: robs_ (~robs@replaced-ip )
1568 [14:27:05] *** Quits: pragomer (~pragomer@replaced-ip ) (Quit: Leaving)
1569 [14:28:23] *** Quits: rpifan (~rpifan@replaced-ip ) (Ping timeout: 245 seconds)
1570 [14:28:49] *** Joins: sinner (~themsay@replaced-ip )
1571 [14:29:12] *** sinner is now known as Guest52600
1572 [14:29:16] *** Joins: __jrjsmrtn__ (~jrjsmrtn@replaced-ip )
1573 [14:31:39] *** Joins: pingfloyd (~pingfloyd@replaced-ip )
1574 [14:31:40] <Old_Dog> Hello, Guest52600
1575 [14:32:00] *** Joins: upie2 (~upie@replaced-ip )
1576 [14:32:14] *** Parts: diogenes_ (~diogenes_@replaced-ip ) ("vergissmeinnicht")
1577 [14:32:16] *** Quits: FightingFalcon (~ff@replaced-ip ) (Ping timeout: 255 seconds)
1578 [14:32:20] <Old_Dog> new here?
1579 [14:33:07] *** Quits: drzacek (~drzacek@replaced-ip ) (Quit: Leaving)
1580 [14:33:28] *** Quits: somepoortech (~somepoort@replaced-ip ) (Ping timeout: 250 seconds)
1581 [14:35:15] *** Quits: milkt (~debian@replaced-ip ) (Remote host closed the connection)
1582 [14:35:51] *** Joins: fus (~quassel@replaced-ip )
1583 [14:35:59] *** Quits: grandfso (~quassel@replaced-ip ) (Remote host closed the connection)
1584 [14:36:17] *** Quits: fus_ (~quassel@replaced-ip ) (Read error: Connection reset by peer)
1585 [14:36:19] <rant> likely having client trouble, they were identified to a 9 year old account so..
1586 [14:36:22] *** Joins: grandfso (~quassel@replaced-ip )
1587 [14:36:45] <Old_Dog> ah
1588 [14:38:12] *** Joins: Brigo (~Brigo@replaced-ip )
1589 [14:38:22] *** Joins: root__ (~OS-44792@replaced-ip )
1590 [14:38:56] *** uptime is now known as idletime
1591 [14:39:30] * Old_Dog is monitoring three chat channels and two support channels and they are all silent
1592 [14:40:11] *** Joins: CurryWurst (~CurryWurs@replaced-ip )
1593 [14:42:05] <skyfighter> hi guys. Good morning for all ;D
1594 [14:42:18] *** Joins: Brigo_ (~Brigo@replaced-ip )
1595 [14:42:44] *** Quits: Brigo (~Brigo@replaced-ip ) (Read error: Connection reset by peer)
1596 [14:43:02] <Old_Dog> hi skyfighter.
1597 [14:43:14] *** Parts: gfdghhd (~r5tgfbjfc@replaced-ip ) ()
1598 [14:43:22] *** Quits: __jrjsmrtn__ (~jrjsmrtn@replaced-ip ) (Ping timeout: 245 seconds)
1599 [14:44:14] <skyfighter> hi Old_Dog, who are tou dear ?
1600 [14:44:14] *** Quits: grandfso (~quassel@replaced-ip ) (Remote host closed the connection)
1601 [14:44:21] *** Joins: grandfso (~quassel@replaced-ip )
1602 [14:44:38] *** Joins: Mad_Hat (~Mad_Hat@replaced-ip )
1603 [14:45:01] <Old_Dog> I'm Old_Dog, from Northeast Texas, why?
1604 [14:45:28] *** Joins: Zvmdyv (~Zvmdyv@replaced-ip )
1605 [14:45:31] *** Joins: _mel_ (~melvin@replaced-ip )
1606 [14:45:33] *** Joins: milkt (~debian@replaced-ip )
1607 [14:45:38] *** Parts: Zvmdyv (~Zvmdyv@replaced-ip ) ()
1608 [14:45:45] *** Joins: Zvmdyv (~Zvmdyv@replaced-ip )
1609 [14:45:49] *** Joins: mtn (~mtn@replaced-ip )
1610 [14:46:11] *** Joins: somepoortech (~somepoort@replaced-ip )
1611 [14:47:24] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
1612 [14:48:46] *** Quits: ShakaJada (~RitamGrad@replaced-ip ) (Ping timeout: 250 seconds)
1613 [14:49:59] *** Joins: cryptodan (~cryptodan@replaced-ip )
1614 [14:50:13] *** Parts: jobor (jobor@replaced-ip ) ("parting is such sweet sorrow...")
1615 [14:50:15] *** Quits: grandfso (~quassel@replaced-ip ) (Remote host closed the connection)
1616 [14:50:34] *** Joins: grandfso (~quassel@replaced-ip )
1617 [14:51:10] *** Quits: oish_ (~charlie@replaced-ip ) (Ping timeout: 255 seconds)
1618 [14:54:01] *** debhelper sets mode: +l 1569
1619 [14:54:15] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 244 seconds)
1620 [14:54:18] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
1621 [14:54:32] *** Joins: pragomer (~pragomer@replaced-ip )
1622 [14:56:45] *** Joins: Ricardo__ (~rick@replaced-ip )
1623 [14:56:45] *** Quits: Ricardo__ (~rick@replaced-ip ) (Changing host)
1624 [14:56:45] *** Joins: Ricardo__ (~rick@replaced-ip )
1625 [14:57:18] *** Joins: cryptodan (~cryptodan@replaced-ip )
1626 [14:58:19] *** Quits: Zgrokl (~pharos@replaced-ip ) (Quit: WeeChat 2.4)
1627 [14:59:17] *** Joins: as4h3l_ (~as4h3l@replaced-ip )
1628 [15:00:00] *** as4h3l_ is now known as as4h3l
1629 [15:00:23] *** Joins: Norm1 (~Norm1@replaced-ip )
1630 [15:00:24] *** Quits: airwind (~belovent@replaced-ip ) (Quit: airwind)
1631 [15:01:48] *** Joins: Sollg3r (~ejakuk@replaced-ip )
1632 [15:03:04] *** Joins: Texou (~Texou@replaced-ip )
1633 [15:04:45] *** Quits: esro (~esro@replaced-ip ) (Quit: Leaving)
1634 [15:07:24] <Old_Dog> I guess I misunderstood the question. I'm just a 'lurker' looking to possibly learn something as questions get answered here
1635 [15:08:42] *** Quits: Emmanuel_Chanel (~Emmanuel_@replaced-ip ) (Ping timeout: 250 seconds)
1636 [15:09:10] *** Joins: helldorado (~helldorad@replaced-ip )
1637 [15:09:13] *** Quits: dethos (~dethos@replaced-ip ) (Quit: Time to Go!)
1638 [15:09:28] *** Quits: v01d4lph4 (~v01d4lph4@replaced-ip ) (Read error: Connection reset by peer)
1639 [15:09:30] *** Joins: nullbyte_ (~null@replaced-ip )
1640 [15:10:37] *** Quits: jas4711 (~smuxi@replaced-ip ) (Ping timeout: 268 seconds)
1641 [15:12:37] *** Joins: munshine (~Munshine@replaced-ip )
1642 [15:13:42] *** Quits: nullbyte_ (~null@replaced-ip ) (Remote host closed the connection)
1643 [15:14:16] *** Quits: sikun (~David@replaced-ip ) (Read error: Connection reset by peer)
1644 [15:14:17] *** Joins: Mononoke-BT (~BT@replaced-ip )
1645 [15:15:13] *** Quits: electro33 (uid613@replaced-ip ) (Quit: Connection closed for inactivity)
1646 [15:18:06] *** Quits: ohwowlol (~ohwowlol@replaced-ip ) (Remote host closed the connection)
1647 [15:18:22] *** Quits: MACscr (~MACscr@replaced-ip ) (Ping timeout: 272 seconds)
1648 [15:22:41] *** Joins: zeSoup (~jsc@replaced-ip )
1649 [15:24:26] *** Quits: beencubed (~beencubed@replaced-ip ) (Quit: Leaving)
1650 [15:25:06] *** Joins: rjr162 (~rjr162@replaced-ip )
1651 [15:25:06] *** Joins: sikun (~David@replaced-ip )
1652 [15:25:11] *** Parts: rjr162 (~rjr162@replaced-ip ) ()
1653 [15:25:54] *** Quits: aindilis (~aindilis@replaced-ip ) (Read error: Connection reset by peer)
1654 [15:26:38] *** Quits: zeSoup (~jsc@replaced-ip ) (Client Quit)
1655 [15:28:59] *** Joins: MACscr (~MACscr@replaced-ip )
1656 [15:30:33] *** Joins: djaZ (~djaZ@replaced-ip )
1657 [15:31:40] *** Quits: bingbotboom (~bingbotbo@replaced-ip ) (Ping timeout: 268 seconds)
1658 [15:31:49] *** Joins: aindilis (~aindilis@replaced-ip )
1659 [15:32:04] <jelly> Old_Dog: we _like_ the channel to be quiet if there are no support questions; this enables asynchronous communication which is hard to do if there's lots of "hellos" in the log
1660 [15:32:44] <jelly> there's #debian-offtopic for casual chat
1661 [15:32:45] *** Joins: Spr1ng (~Spr1ng@replaced-ip )
1662 [15:32:51] *** Joins: badrabb1t (~quassel@replaced-ip )
1663 [15:33:04] *** Joins: DjCray (~DjCray@replaced-ip )
1664 [15:34:37] *** Joins: avranas-tnw (~avranas-t@replaced-ip )
1665 [15:35:14] *** Quits: weedloser (~weedloser@replaced-ip ) (Quit: Leaving)
1666 [15:35:41] *** Joins: warai_otoko2 (~warai_oto@replaced-ip )
1667 [15:36:02] *** Joins: weedloser (~weedloser@replaced-ip )
1668 [15:36:14] *** Quits: warai_otoko2 (~warai_oto@replaced-ip ) (Read error: Connection reset by peer)
1669 [15:36:30] *** Joins: th0r (~th0r@replaced-ip )
1670 [15:36:32] *** Joins: beencubed (~beencubed@replaced-ip )
1671 [15:36:36] *** Quits: GaneshR (~ganeshraj@replaced-ip ) (Ping timeout: 268 seconds)
1672 [15:37:06] *** Quits: weedloser (~weedloser@replaced-ip ) (Client Quit)
1673 [15:37:26] *** Joins: weedloser (~weedloser@replaced-ip )
1674 [15:37:30] *** Joins: cfoch (uid153227@replaced-ip )
1675 [15:37:45] *** Quits: aindilis (~aindilis@replaced-ip ) (Read error: Connection reset by peer)
1676 [15:37:46] *** Joins: ongolaBoy (~ongolaBoy@replaced-ip )
1677 [15:39:02] *** Quits: pragomer (~pragomer@replaced-ip ) (Quit: Leaving)
1678 [15:39:14] *** Quits: warai_otoko (~warai_oto@replaced-ip ) (Ping timeout: 246 seconds)
1679 [15:39:54] *** Joins: zerotech (~zerotech@replaced-ip )
1680 [15:41:52] *** Joins: faw (~faw@replaced-ip )
1681 [15:42:32] *** Joins: seekr (~seekr@replaced-ip )
1682 [15:43:28] *** Joins: DjCraysey (~DjCray@replaced-ip )
1683 [15:44:02] *** debhelper sets mode: +l 1575
1684 [15:44:03] *** Joins: jas4711 (~smuxi@replaced-ip )
1685 [15:45:14] *** Quits: f4cl3y (~f4cl3y@replaced-ip ) (Ping timeout: 268 seconds)
1686 [15:47:03] *** Joins: fjewifjen (~43tgfgfd@replaced-ip )
1687 [15:47:06] *** Joins: DammitJim (~DammitJim@replaced-ip )
1688 [15:47:08] *** Parts: fjewifjen (~43tgfgfd@replaced-ip ) ()
1689 [15:47:13] *** Quits: DjCray (~DjCray@replaced-ip ) (Ping timeout: 256 seconds)
1690 [15:47:18] *** Joins: hele (~hele@replaced-ip )
1691 [15:50:34] *** Quits: TomyWork (~tomy@replaced-ip ) (Ping timeout: 246 seconds)
1692 [15:51:29] *** Quits: bertbob (~bertbob@replaced-ip ) (Ping timeout: 246 seconds)
1693 [15:51:49] *** Joins: hipp (~hipp@replaced-ip )
1694 [15:52:24] *** Joins: sam0t_ (~sam0t@replaced-ip )
1695 [15:52:49] *** Joins: Copenhagen_Bram (~elonsatos@replaced-ip )
1696 [15:53:27] *** Joins: BeerHall (~Thunderbi@replaced-ip )
1697 [15:53:33] <Copenhagen_Bram> Is there a way to compile every Debian package from source, like Gentoo or guix --no-substitutes?
1698 [15:54:38] *** Quits: psilonux (~psilonux@replaced-ip ) (Remote host closed the connection)
1699 [15:54:45] *** Joins: bertbob (~bertbob@replaced-ip )
1700 [15:55:37] *** Quits: milkt (~debian@replaced-ip ) (Quit: leaving)
1701 [15:55:56] *** Joins: krabador (~krabador@replaced-ip )
1702 [15:56:11] *** Joins: citypw (~citypw@replaced-ip )
1703 [15:56:53] *** Quits: conyers (~conyers@replaced-ip ) (Quit: ZZZzzz…)
1704 [15:57:02] *** Joins: f4cl3y (~f4cl3y@replaced-ip )
1705 [15:58:16] *** Quits: JyZyXEL (~foo@replaced-ip ) (Ping timeout: 272 seconds)
1706 [15:58:26] *** Joins: Tom01 (~tom@replaced-ip )
1707 [15:58:45] <nkuttler> sure, it's a computer.. you can compile anything you want. why use debian though if you want to do that?
1708 [15:58:47] *** Joins: CrazyLegs (~stskeeps@replaced-ip )
1709 [15:58:58] *** Joins: czart (~czart@replaced-ip )
1710 [15:59:07] *** Quits: conta (~Thunderbi@replaced-ip ) (Ping timeout: 255 seconds)
1711 [15:59:25] *** Joins: JyZyXEL (~foo@replaced-ip )
1712 [16:01:33] *** Joins: ShakaJada (~RitamGrad@replaced-ip )
1713 [16:01:46] *** Quits: llucenic_ (~Thunderbi@replaced-ip ) (Ping timeout: 246 seconds)
1714 [16:02:09] *** Joins: Megaf_ (~Megaf@replaced-ip )
1715 [16:02:22] *** Quits: BeerHall (~Thunderbi@replaced-ip ) (Remote host closed the connection)
1716 [16:02:24] *** Quits: tekmans (~tekmans@replaced-ip ) (Quit: Leaving)
1717 [16:03:03] *** Joins: tekmans (~tekmans@replaced-ip )
1718 [16:03:36] *** Quits: fus (~quassel@replaced-ip ) (Ping timeout: 250 seconds)
1719 [16:03:37] *** Quits: george959 (~george959@replaced-ip ) (Quit: WeeChat 2.3)
1720 [16:03:53] *** Joins: stofflswelt (~stofflswe@replaced-ip )
1721 [16:04:56] *** Quits: Mononoke-BT (~BT@replaced-ip ) (Remote host closed the connection)
1722 [16:05:02] *** Quits: i1nfusion (~i1nfusion@replaced-ip ) (Remote host closed the connection)
1723 [16:05:29] *** Joins: i1nfusion (~i1nfusion@replaced-ip )
1724 [16:05:46] <stofflswelt> Hi! I'm just now trying to setup Debian 9 on a virtual machine on a Proxmox VE server. But Debian does not seem to accept my gateway. How can I add the next hop for the route when installing Debian?
1725 [16:06:09] *** Joins: fus (~quassel@replaced-ip )
1726 [16:06:11] *** Quits: llucenic (~Thunderbi@replaced-ip ) (Ping timeout: 246 seconds)
1727 [16:06:35] *** Joins: bolt_ (~r00t@replaced-ip )
1728 [16:08:07] *** Quits: bolt (~r00t@replaced-ip ) (Ping timeout: 255 seconds)
1729 [16:08:48] *** Quits: Ceber (~cerberus@replaced-ip ) (Ping timeout: 250 seconds)
1730 [16:09:40] *** Quits: f4cl3y (~f4cl3y@replaced-ip ) (Ping timeout: 250 seconds)
1731 [16:10:40] *** Quits: wilkc (~wilkc@replaced-ip ) (Ping timeout: 250 seconds)
1732 [16:10:52] *** Quits: Old_Dog (~Old_Dog@replaced-ip ) (Quit: Leaving)
1733 [16:11:15] *** Quits: rant (~user@replaced-ip ) (Quit: leaving)
1734 [16:11:42] *** Joins: psilonux (~psilonux@replaced-ip )
1735 [16:12:38] *** Joins: Crazylegs_ (~Crazylegs@replaced-ip )
1736 [16:12:48] *** Joins: rant (~user@replaced-ip )
1737 [16:13:01] *** Joins: destefani (~maybury@replaced-ip )
1738 [16:13:38] *** Quits: CrazyLegs (~stskeeps@replaced-ip ) (Remote host closed the connection)
1739 [16:13:38] *** Joins: lolico (a9ccd076@replaced-ip )
1740 [16:15:22] *** Quits: cdown (~cdown@replaced-ip ) (Ping timeout: 244 seconds)
1741 [16:15:36] *** Quits: rant (~user@replaced-ip ) (Client Quit)
1742 [16:15:39] *** Quits: Megaf_ (~Megaf@replaced-ip ) (Quit: Leaving)
1743 [16:15:58] *** Joins: stroess (~stroess@replaced-ip )
1744 [16:16:03] *** Joins: Ceber (~cerberus@replaced-ip )
1745 [16:16:21] *** Quits: stroess (~stroess@replaced-ip ) (Client Quit)
1746 [16:17:51] *** Quits: baoday (~kubde@replaced-ip ) (Quit: baoday)
1747 [16:18:15] *** Quits: mocas (5973f4a2@replaced-ip ) (Quit: Page closed)
1748 [16:19:08] <SerajewelKS> stofflswelt: in the installer you can just alt+f2 and issue whatever ip commands you need to get networking up
1749 [16:20:19] *** Joins: nullbyte_ (~null@replaced-ip )
1750 [16:21:35] *** Quits: Crazylegs_ (~Crazylegs@replaced-ip ) (Remote host closed the connection)
1751 [16:22:30] *** Quits: czart (~czart@replaced-ip ) (Read error: Connection reset by peer)
1752 [16:22:57] *** Quits: avranas-tnw (~avranas-t@replaced-ip ) (Ping timeout: 245 seconds)
1753 [16:24:02] *** Quits: th0r (~th0r@replaced-ip ) (Remote host closed the connection)
1754 [16:24:06] *** Joins: Crazylegs (~Crazylegs@replaced-ip )
1755 [16:24:17] *** Joins: [Brain] (~brain@replaced-ip )
1756 [16:24:22] *** Joins: f4cl3y (~f4cl3y@replaced-ip )
1757 [16:24:26] *** Joins: rant (~user@replaced-ip )
1758 [16:24:59] *** Quits: ledeni (~ledeni@replaced-ip ) (Quit: ledeni)
1759 [16:25:04] *** Joins: czart (~czart@replaced-ip )
1760 [16:25:16] *** Quits: interrobangd (~interroba@replaced-ip ) (Ping timeout: 250 seconds)
1761 [16:25:17] *** Quits: nullbyte_ (~null@replaced-ip ) (Quit: quit)
1762 [16:25:19] *** Quits: shtouff (~shtouff@replaced-ip ) (Read error: Connection reset by peer)
1763 [16:25:36] *** Joins: oojacoboo (~oojacoboo@replaced-ip )
1764 [16:25:41] *** Joins: nullbyte_ (~null@replaced-ip )
1765 [16:25:54] *** Quits: nullbyte_ (~null@replaced-ip ) (Client Quit)
1766 [16:26:07] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
1767 [16:26:15] *** Joins: nullbyte_ (~null@replaced-ip )
1768 [16:26:31] *** Joins: diniwed (~gavron@replaced-ip )
1769 [16:27:07] *** Quits: Crazylegs (~Crazylegs@replaced-ip ) (Remote host closed the connection)
1770 [16:27:27] *** Quits: dilema (~dilema@replaced-ip ) (Remote host closed the connection)
1771 [16:27:33] *** Joins: we6jbo (~we6jbo@replaced-ip )
1772 [16:27:56] *** Joins: Makaveli7 (~Makaveli7@replaced-ip )
1773 [16:28:26] *** Quits: andrzejv (~andzej@replaced-ip ) (Ping timeout: 250 seconds)
1774 [16:28:37] *** Joins: Crazylegs (~Crazylegs@replaced-ip )
1775 [16:29:01] *** Quits: mibo (~mibo@replaced-ip ) (Remote host closed the connection)
1776 [16:29:09] *** Quits: uNmowed (~Kaede@replaced-ip ) (Read error: Connection reset by peer)
1777 [16:29:18] *** Quits: citypw (~citypw@replaced-ip ) (Ping timeout: 272 seconds)
1778 [16:29:46] *** Joins: SmashingX (~SmashingX@replaced-ip )
1779 [16:29:54] <SmashingX> W: Failed to fetch replaced-url
1780 [16:30:00] *** Joins: naicha (~debian@replaced-ip )
1781 [16:30:04] <SmashingX> is that server having problems or what's the deal?
1782 [16:31:34] *** Quits: Crazylegs (~Crazylegs@replaced-ip ) (Remote host closed the connection)
1783 [16:32:04] *** Joins: winem_ (~quassel@replaced-ip )
1784 [16:32:30] <nkuttler> !jessie
1785 [16:32:30] <dpkg> Jessie is the codename for the current <oldstable> release, Debian 8, released on 2015-04-25. Security support ended 2018-05-17, repos removed from mirrors around 2019-03-24, except for <jessie-lts>. Jessie is the cowgirl in Toy Story 2. See replaced-url
1786 [16:32:33] *** Quits: Sepultura (~quassel@replaced-ip##) (Quit: ##replaced-url
1787 [16:33:03] <SmashingX> replaced-url
1788 [16:33:12] <SmashingX> jessie-updates is not there!
1789 [16:33:17] *** Joins: shtouff (~shtouff@replaced-ip )
1790 [16:33:20] <nkuttler> we know
1791 [16:33:44] <nkuttler> time to upgrade to a supported os
1792 [16:33:45] *** Quits: lolico (a9ccd076@replaced-ip ) (Ping timeout: 256 seconds)
1793 [16:33:50] *** Quits: flokuehn (~flokuehn@replaced-ip ) (Ping timeout: 246 seconds)
1794 [16:33:55] *** Joins: aindilis (~aindilis@replaced-ip )
1795 [16:34:05] <BCMM> SmashingX: jessie is dead
1796 [16:34:08] *** Quits: xcm (~xcm@replaced-ip ) (Remote host closed the connection)
1797 [16:34:09] <SmashingX> what?!
1798 [16:34:21] <nkuttler> read what the bot said..
1799 [16:34:28] *** Joins: Crazylegs (~Crazylegs@replaced-ip )
1800 [16:34:30] <SmashingX> I read it
1801 [16:34:34] *** Joins: carp_ (c3939ba8@replaced-ip )
1802 [16:34:46] <SmashingX> So does that mean I have to remove this OS and install a new version?
1803 [16:34:53] <nkuttler> you can just upgrade
1804 [16:34:54] <BCMM> SmashingX: no, you can upgrade
1805 [16:34:57] *** def_jam is now known as eb0t
1806 [16:34:58] <SmashingX> from LMDE?
1807 [16:35:11] *** Joins: xcm (~xcm@replaced-ip )
1808 [16:35:13] *** Joins: rpifan (~rpifan@replaced-ip )
1809 [16:35:13] <BCMM> SmashingX: hang on, are you using mint or debian?
1810 [16:35:14] <SmashingX> I have LMDE 2
1811 [16:35:16] <nkuttler> !lmde
1812 [16:35:17] <dpkg> Linux Mint is not Debian and is not supported in #debian. Please use their forums at replaced-url
1813 [16:35:18] *** Joins: ledeni (~ledeni@replaced-ip )
1814 [16:35:34] <SmashingX> well, is based on debian
1815 [16:35:39] <SmashingX> not on ubuntu
1816 [16:35:40] <BCMM> !based on debian
1817 [16:35:40] <dpkg> Your distribution may be based on and have software in common with Debian, but it is not Debian. We don't and cannot know what changes were made by your distribution (compare replaced-url
1818 [16:36:01] *** Quits: ledeni (~ledeni@replaced-ip ) (Remote host closed the connection)
1819 [16:36:14] <BCMM> SmashingX: basically, if your Mint system is broken, you should ask Mint's IRC channel about it
1820 [16:36:33] *** Joins: ledeni (~ledeni@replaced-ip )
1821 [16:36:33] <ws2k3> im trying to setup a ipsec vpn connection on debian, does anyone have an idea which client i could use? im reading something about racoon and openswan
1822 [16:36:42] <BCMM> SmashingX: i could hazard a guess that you're using a very outdated version of Mint, but I don't really know enough about Mint to be sure about that
1823 [16:37:03] <SmashingX> mhh is not that old
1824 [16:37:05] *** Quits: DjCraysey (~DjCray@replaced-ip ) (Ping timeout: 256 seconds)
1825 [16:37:10] <SmashingX> I installed it about 2 years ago
1826 [16:37:38] *** Joins: m0u_ (~m0u@replaced-ip )
1827 [16:38:01] *** Joins: tieinv (~tieinv@replaced-ip )
1828 [16:38:29] *** Quits: Half-Word (~halfword@replaced-ip ) (Remote host closed the connection)
1829 [16:38:32] <BCMM> SmashingX: well, lmde 3 has been out for over six months, and it doesn't cost anything
1830 [16:38:48] *** Joins: Half-Word (~halfword@replaced-ip )
1831 [16:38:48] <BCMM> go and ask mint's irc channel or forum or whatever about how to upgrade it
1832 [16:39:32] <SmashingX> it doesn't cost anything, but it takes me like 2 days to configure all the things that I have installed
1833 [16:39:37] *** Joins: sorko999 (~sorko999@replaced-ip )
1834 [16:40:27] <BCMM> SmashingX: seriously, go and ask a mint channel. i *think* they *used to* recommend clean install, but support upgrades now? not sure.
1835 [16:40:42] *** Quits: xcm (~xcm@replaced-ip ) (Remote host closed the connection)
1836 [16:41:14] *** Joins: __jrjsmrtn__ (~jrjsmrtn@replaced-ip )
1837 [16:41:18] <SmashingX> I'm asking them, nobody answers. it's almost an empty channel. I know is not something you care about, but geez, this is frustrating.
1838 [16:41:25] *** Joins: CrazyLegs_ (~CrazyLegs@replaced-ip )
1839 [16:41:28] *** Quits: Kevlar_Noir (~manjaro-u@replaced-ip ) (Quit: Konversation terminated!)
1840 [16:41:50] *** Joins: xcm (~xcm@replaced-ip )
1841 [16:41:50] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
1842 [16:42:05] *** Joins: yokowka (~yokowka@replaced-ip )
1843 [16:42:33] *** Joins: FightingFalcon (~ff@replaced-ip )
1844 [16:42:41] <SmashingX> just a question, if that directory was removed from that mirror, does that mean that it will be also removed from all the other mirrors?
1845 [16:42:47] <BCMM> SmashingX: are you in their official channel? it's not on freenode.
1846 [16:43:04] <SmashingX> I'm in ##linuxmint
1847 [16:43:19] <SmashingX> I see where that is
1848 [16:43:19] <Ede|Popede> mirrors are mirrors. normally they should reflect the state of the original source.
1849 [16:43:21] <SmashingX> ok, thank you
1850 [16:43:23] <BCMM> SmashingX: ... you understand there is more than one IRC network, right?
1851 [16:43:38] <BCMM> replaced-url
1852 [16:43:39] <SmashingX> I do, I 've used IRC for 20 years
1853 [16:43:53] <BCMM> SmashingX: right. mint's official channel is *not on freenode*
1854 [16:44:10] *** Quits: czart (~czart@replaced-ip ) (Read error: Connection reset by peer)
1855 [16:44:13] *** Quits: Half-Word (~halfword@replaced-ip ) (Ping timeout: 245 seconds)
1856 [16:44:15] *** Joins: DjCraysey (~DjCray@replaced-ip )
1857 [16:44:16] <SmashingX> ok anyway thank you
1858 [16:44:20] <BCMM> this is even in the /topic of ##linuxmint
1859 [16:44:32] *** Quits: fritzroy15 (~paul.lupu@86.125.115.49) (Remote host closed the connection)
1860 [16:44:40] <BCMM> so if that channel is dead, try the proper channel
1861 [16:44:45] *** Joins: crn (~Chuck@replaced-ip )
1862 [16:45:00] *** Parts: tieinv (~tieinv@replaced-ip ) ("Leaving")
1863 [16:45:15] *** Quits: mandeep (~mandeep@replaced-ip ) (Remote host closed the connection)
1864 [16:45:15] *** Quits: __jrjsmrtn__ (~jrjsmrtn@replaced-ip ) (Remote host closed the connection)
1865 [16:45:34] <SmashingX> is there any reason why they are not in this IRC network?
1866 [16:45:44] <SmashingX> does anybody know?
1867 [16:45:46] *** Quits: DammitJim (~DammitJim@replaced-ip ) (Ping timeout: 250 seconds)
1868 [16:46:10] *** Quits: Crazylegs (~Crazylegs@replaced-ip ) (Remote host closed the connection)
1869 [16:47:02] *** Joins: soee (~soee@replaced-ip )
1870 [16:47:51] <rant> SmashingX: someone in their channel might know. I'm a Debian and Freenode user, I neither know nor care.
1871 [16:47:54] <BCMM> another question that it would be better to ask them, i'm afraid
1872 [16:48:53] *** Joins: czart (~czart@replaced-ip )
1873 [16:49:02] *** Quits: as4h3l (~as4h3l@replaced-ip ) (Quit: WeeChat 1.9.1)
1874 [16:49:35] *** Joins: milkt (~debian@replaced-ip )
1875 [16:50:16] *** Joins: sphenxes (~sphenxes@replaced-ip )
1876 [16:50:37] <BCMM> i don't know what the deal with spotchat is. most of their website is just dead links, and looks like mint's channels are the only big channels on there
1877 [16:50:43] *** Joins: ironjosh (~ironjosh@replaced-ip )
1878 [16:51:09] *** Quits: ironjosh (~ironjosh@replaced-ip ) (Max SendQ exceeded)
1879 [16:51:48] *** Joins: ironjosh (~ironjosh@replaced-ip )
1880 [16:51:51] *** Joins: sinner (~themsay@replaced-ip )
1881 [16:52:15] *** Quits: ironjosh (~ironjosh@replaced-ip ) (Max SendQ exceeded)
1882 [16:52:15] *** sinner is now known as Guest78878
1883 [16:52:21] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
1884 [16:52:24] *** Joins: soee_ (~soee@replaced-ip )
1885 [16:52:53] *** Joins: ironjosh (~ironjosh@replaced-ip )
1886 [16:53:10] *** Joins: jhutchins_wk (~jonathan@replaced-ip )
1887 [16:53:23] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 245 seconds)
1888 [16:54:00] *** Quits: soee (~soee@replaced-ip ) (Ping timeout: 272 seconds)
1889 [16:54:24] *** Joins: ola (~user@replaced-ip )
1890 [16:55:02] *** Quits: Guest52600 (~themsay@replaced-ip ) (Ping timeout: 245 seconds)
1891 [16:57:32] *** Joins: DammitJim (~DammitJim@replaced-ip )
1892 [16:58:26] *** Joins: Corrino (~DeCorrino@replaced-ip )
1893 [16:58:43] *** Quits: DammitJim (~DammitJim@replaced-ip ) (Remote host closed the connection)
1894 [16:58:43] *** Joins: Viowel (~Viowel@replaced-ip )
1895 [16:59:01] *** Joins: McLive (~McLive@replaced-ip )
1896 [17:00:46] *** Quits: MikZyth (~MikZyth@replaced-ip ) (Quit: leaving)
1897 [17:00:47] *** Joins: Crazylegs (~Crazylegs@replaced-ip )
1898 [17:01:15] *** Joins: Texou (~Texou@replaced-ip )
1899 [17:01:47] *** Joins: avalchev (~user@replaced-ip )
1900 [17:03:21] <yokowka> heavenO, everysoul!!!! after debian 9 netinstalling there is: login, i entered it, then enter password and now it is: name@name:~$ with kursor and no enter to the system, how to enter?
1901 [17:03:28] *** Joins: mandeep (~mandeep@replaced-ip )
1902 [17:03:34] *** Joins: Ryushin (chris@replaced-ip )
1903 [17:04:01] *** debhelper sets mode: +l 1585
1904 [17:04:18] <BCMM> yokowka: that's your shell prompt. you are logged in.
1905 [17:04:20] <Ede|Popede> yokowka: welcome to the shell. afaik netinstall doesn't have X
1906 [17:04:35] <Ede|Popede> you may want X and some desktop
1907 [17:04:42] *** Quits: SmearedBeard (~SmearedBe@replaced-ip ) (Ping timeout: 258 seconds)
1908 [17:04:42] *** Quits: mvaenskae (~mvaenskae@replaced-ip ) (Ping timeout: 250 seconds)
1909 [17:04:43] <BCMM> yokowka: it sounds like you didn't choose any "tasks" during the installation, so you don't have a GUI
1910 [17:04:49] <jhutchins_wk> l!console
1911 [17:04:53] <jhutchins_wk> !console
1912 [17:04:53] <dpkg> Console Guides: replaced-url
1913 [17:05:15] *** Joins: Envil (~envil@replaced-ip )
1914 [17:05:21] <BCMM> yokowka: did you see a screen like this during install? replaced-url
1915 [17:05:30] *** Quits: Guest78878 (~themsay@replaced-ip ) (Read error: Connection reset by peer)
1916 [17:05:41] *** Quits: inviz (~user@replaced-ip ) (Quit: Leaving)
1917 [17:05:41] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 246 seconds)
1918 [17:05:42] <yokowka> BCMM, Ede|Popede and how to make next step?
1919 [17:06:04] *** Joins: kreyren (~kreyren@replaced-ip )
1920 [17:06:05] <BCMM> yokowka: you're trying to set this up as a desktop with a graphical environment, right?
1921 [17:06:22] <Ede|Popede> yokowka: `tasksel` looks good
1922 [17:06:30] <BCMM> yokowka: i'm guessing that, during install, you didn't make any selections at that screen. you can get that menu back by running `sudo tasksel`
1923 [17:06:50] <BCMM> yokowka: or you can just `apt install` a task - do you know which desktop environment you want to use?
1924 [17:07:17] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
1925 [17:07:18] <yokowka> BCMM, yes trying with graphical environment.
1926 [17:07:38] *** Quits: chele (~chele@replaced-ip ) (Remote host closed the connection)
1927 [17:07:47] <Ede|Popede> i hate it when google comes up with superuser, arbitrary blogs and what not, but no official docs
1928 [17:07:49] *** Joins: kreyren (~kreyren@replaced-ip )
1929 [17:07:58] *** Quits: Viowel (~Viowel@replaced-ip ) (Read error: Connection reset by peer)
1930 [17:08:00] <yokowka> BCMM, i need xfce, lxde, cinnamon
1931 [17:08:08] <BCMM> yokowka: ... all of them?
1932 [17:08:08] *** Joins: tower (~greg@replaced-ip )
1933 [17:08:10] <yokowka> thripple of them
1934 [17:08:22] <yokowka> but prefer xfce
1935 [17:08:25] *** Quits: LaunchDirector (~pi@replaced-ip ) (Ping timeout: 255 seconds)
1936 [17:08:49] *** Quits: zamuro (~Samantha@replaced-ip ) (Quit: [IRSSI])
1937 [17:08:59] <BCMM> yokowka: try `sudo apt install task-xfce-desktop task-lxde-desktop task-cinnamon-desktop`
1938 [17:09:16] <BCMM> if you really want all of them installed, that is
1939 [17:09:34] <Ede|Popede> yokowka if you want to compare desktops in advance replaced-url
1940 [17:09:46] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 255 seconds)
1941 [17:10:19] *** Joins: Viowel (~Viowel@replaced-ip )
1942 [17:10:25] *** Quits: Viowel (~Viowel@replaced-ip ) (Client Quit)
1943 [17:10:34] *** Joins: LaunchDirector (~pi@replaced-ip )
1944 [17:11:20] *** Joins: wolfpackmars2 (~quassel@replaced-ip )
1945 [17:11:34] *** Quits: mandeep (~mandeep@replaced-ip ) (Remote host closed the connection)
1946 [17:12:06] *** Quits: milkt (~debian@replaced-ip ) (Quit: leaving)
1947 [17:12:18] <jhutchins_wk> Ede|Popede: What are you looking for today?
1948 [17:12:38] <yokowka> BCMM, i've trying this command and : -bash: sudo: command not found...
1949 [17:12:40] *** Quits: Envil (~envil@replaced-ip ) (Remote host closed the connection)
1950 [17:12:44] *** Joins: mandeep (~mandeep@replaced-ip )
1951 [17:12:56] *** Joins: esro (~esro@replaced-ip )
1952 [17:13:02] <Ede|Popede> jhutchins_wk: peace and love, or what do you mean?
1953 [17:13:04] *** Parts: SmashingX (~SmashingX@replaced-ip ) ()
1954 [17:13:04] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
1955 [17:13:24] <jhutchins_wk> You grumbled about irrelevant results from google.
1956 [17:13:30] *** Quits: SickzZ (~SickzZ@replaced-ip ) (Ping timeout: 250 seconds)
1957 [17:13:30] *** Joins: astrofog (~astrofog@replaced-ip )
1958 [17:13:47] *** Quits: Crazylegs (~Crazylegs@replaced-ip ) (Remote host closed the connection)
1959 [17:13:48] <Ede|Popede> jhutchins: ah, the google thing. yeah. was hoping for some "how to upgrade from netinst to DE" for yokowka
1960 [17:13:52] <BCMM> yokowka: ah, so that probably means you set a separate password for root during install. are you logged in as root right now?
1961 [17:14:01] *** debhelper sets mode: +l 1576
1962 [17:14:04] <BCMM> yokowka: if you're not sure, you can type `whoami`
1963 [17:14:05] *** Joins: littlebit (~Thunderbi@replaced-ip )
1964 [17:14:12] *** Joins: n4dir (~n4dir@replaced-ip )
1965 [17:14:14] *** Quits: littlebit (~Thunderbi@replaced-ip ) (Client Quit)
1966 [17:14:17] <jhutchins_wk> yokowka: If you provided a root password during installation, sudo is not installed. Use su - to become root.
1967 [17:14:42] <jhutchins_wk> !tasksel
1968 [17:14:43] <dpkg> tasksel is a program to select and install "tasks": a collection of packages for a system to perform a specific task (e.g. desktop environment, web server). Ask me about <standard task>, <server tasks> and <laptop task>. replaced-url
1969 [17:15:03] *** Quits: shtouff (~shtouff@replaced-ip ) (Ping timeout: 245 seconds)
1970 [17:15:17] *** Parts: ola (~user@replaced-ip ) ("ERC Version 5.3 (IRC client for Emacs)")
1971 [17:15:22] <Ede|Popede> heh, so assumed the correct tool, though never used it
1972 [17:15:26] <jhutchins_wk> Ede|Popede: A GUI desktop is simply a layer of software installed on top of a console environment.
1973 [17:15:30] *** Quits: Haohmaru (~Haohmaru@replaced-ip ) (Ping timeout: 246 seconds)
1974 [17:15:34] *** Joins: SickzZ (~SickzZ@replaced-ip )
1975 [17:15:56] *** Quits: HurricaneHarry (~quassel@replaced-ip ) (Quit: No Ping reply in 180 seconds.)
1976 [17:16:16] *** Joins: Envil (~envil@replaced-ip )
1977 [17:16:19] *** Quits: Envil (~envil@replaced-ip ) (Remote host closed the connection)
1978 [17:16:21] <yokowka> BCMM, not i'm not root now
1979 [17:16:22] *** Quits: ponyofdeath (~vladi@replaced-ip ) (Quit: WeeChat 2.4)
1980 [17:16:35] <BCMM> yokowka: type just `su`. not `sudo su`.
1981 [17:16:45] *** Quits: monksam (~monksam@replaced-ip ) (Quit: leaving)
1982 [17:17:08] *** Joins: HurricaneHarry (~quassel@replaced-ip )
1983 [17:17:18] *** Quits: Error451 (~R@replaced-ip##) (Quit: - nbs-irc 2.39 - ##replaced-url
1984 [17:17:22] *** Joins: towo` (~towo@replaced-ip )
1985 [17:17:43] <BCMM> Ede|Popede: netinst is a method of installing, rather than a different distro. it "comes with" whatever you choose in the installer - it just downloads it from the internet during the installation, instead of getting (potentially outdated) packages from the DVD.
1986 [17:17:54] *** Joins: mibo (~mibo@replaced-ip )
1987 [17:18:34] *** Joins: Texou (~Texou@replaced-ip )
1988 [17:18:34] *** Quits: factor (~factor@replaced-ip ) (Ping timeout: 250 seconds)
1989 [17:19:13] <zerocool> hi duds, using proxmox which is a debian based distro i connected server to an iscsi target, didn't go well, removed it using iscsiadm (-m session, -T <target> -u, -T <target> -o delete), but a file still exists in `/etc/iscsi/send_targets/<ip:port>/st_config`, do i need to manually delete this file to prevent reconnection?
1990 [17:19:26] <yokowka> BCMM, yes now root, but after sudo apt install task-xfce-desktop task-lxde-desktop task-cinnamon-desktop again bash: sudo: command not found....
1991 [17:19:44] <BCMM> yokowka: you don't need to type sudo if you're root
1992 [17:20:10] <yokowka> just apt....?
1993 [17:20:14] *** Joins: kreyren (~kreyren@replaced-ip )
1994 [17:20:19] <BCMM> yokowka: i suggest you just do `apt install task-xfce-desktop`, and then reboot. it'll be easier for you to sort out the rest of the stuff you want once you have a GUI.
1995 [17:20:24] *** Quits: mpmc (~mpmc@replaced-ip##) (Quit: ZNC 1.6.5+deb1+deb9u1 - ##replaced-url
1996 [17:20:25] *** Joins: conta (~Thunderbi@replaced-ip )
1997 [17:20:52] *** Quits: root__ (~OS-44792@replaced-ip ) (Ping timeout: 246 seconds)
1998 [17:21:05] *** Quits: haufi (~gassi@replaced-ip ) (Ping timeout: 246 seconds)
1999 [17:21:44] *** Joins: haufi (~gassi@replaced-ip )
2000 [17:22:05] *** Joins: Error451 (~R@replaced-ip )
2001 [17:22:13] *** Joins: ponyofdeath (~vladi@replaced-ip )
2002 [17:22:39] <yokowka> BCMM, system says E: task-xfce-desktop not found....
2003 [17:22:56] <BCMM> oh right. fresh install. do `apt update` first
2004 [17:23:06] *** Quits: evilman_work (~evilman@replaced-ip ) ()
2005 [17:23:40] <BCMM> yokowka: (it probably just hasn't downloaded a list of available packages yet)
2006 [17:23:59] *** Joins: jez9999 (~user@replaced-ip )
2007 [17:24:16] <zerocool> nevermind i just did what makes sense, we'll see
2008 [17:24:27] *** Parts: jez9999 (~user@replaced-ip ) ()
2009 [17:24:33] *** Joins: jez9999 (~user@replaced-ip )
2010 [17:24:42] <jez9999> My server's just told me it got a 404 for some index files, like: replaced-url
2011 [17:24:43] *** Quits: conta (~Thunderbi@replaced-ip ) (Ping timeout: 246 seconds)
2012 [17:24:44] <yokowka> BCMM, yes it looks like that
2013 [17:24:47] <jez9999> have these URLs changed?
2014 [17:25:14] *** Quits: abhikpal (~abhikpal@replaced-ip ) (Quit: abhikpal)
2015 [17:25:26] <stofflswelt> SerajewelKS, I configured the /etc/network/interfaces file - how can I restart networking from the live DVD? There is no /etc/init.d/...
2016 [17:25:33] <BCMM> !jessie
2017 [17:25:34] <dpkg> Jessie is the codename for the current <oldstable> release, Debian 8, released on 2015-04-25. Security support ended 2018-05-17, repos removed from mirrors around 2019-03-24, except for <jessie-lts>. Jessie is the cowgirl in Toy Story 2. See replaced-url
2018 [17:25:37] <BCMM> jez9999: ^
2019 [17:25:52] <BCMM> jez9999: jessie is obsolete; upgrade to the new Debian Stable
2020 [17:26:06] <jez9999> darn. hate doing an upgrade
2021 [17:26:22] *** Quits: destefani (~maybury@replaced-ip ) (Ping timeout: 268 seconds)
2022 [17:26:30] *** Quits: LaunchDirector (~pi@replaced-ip ) (Ping timeout: 250 seconds)
2023 [17:26:51] *** Quits: winem_ (~quassel@replaced-ip ) (Ping timeout: 250 seconds)
2024 [17:27:00] <BCMM> jez9999: and if your server is internet-facing, work out whether you need to do anything about the ten months you've been running without security updates...
2025 [17:27:17] <yokowka> BCMM, repository cdrom://[Debian GNU/linux .... not has file Release
2026 [17:27:39] <BCMM> yokowka: huh, i thought you did a netinstall?
2027 [17:27:44] *** Joins: macrobat (~beep@replaced-ip )
2028 [17:28:11] <yokowka> BCMM, i download netinstal.iso image and run from it...
2029 [17:28:35] <BCMM> yokowka: did it sync any other repos? or did it just print errors about the cdrom?
2030 [17:28:42] *** Joins: shtouff (~shtouff@replaced-ip )
2031 [17:29:00] *** Quits: xcm (~xcm@replaced-ip ) (Remote host closed the connection)
2032 [17:29:11] <yokowka> BCMM, errors most of all
2033 [17:29:51] *** Quits: karakedi (~eAC53C340@replaced-ip ) (Remote host closed the connection)
2034 [17:30:01] *** Joins: xcm (~xcm@replaced-ip )
2035 [17:30:24] <BCMM> jez9999: i guess there's this replaced-url
2036 [17:31:12] *** Quits: DotHack (~lars@replaced-ip ) (Quit: Leaving)
2037 [17:31:18] *** Quits: __marco (~marco@replaced-ip ) (Ping timeout: 268 seconds)
2038 [17:32:11] *** Joins: conyers (~conyers@replaced-ip )
2039 [17:32:14] *** Joins: sinner (~themsay@replaced-ip )
2040 [17:32:37] *** sinner is now known as Guest97130
2041 [17:32:44] *** Joins: vargkorp (~starclear@replaced-ip )
2042 [17:33:15] *** Joins: minimal_life (~minimal_l@replaced-ip )
2043 [17:33:54] *** Joins: LaunchDirector (~pi@replaced-ip )
2044 [17:33:58] *** Joins: setham (~textual@replaced-ip )
2045 [17:34:51] *** Quits: toozej (~toozej@replaced-ip ) (Read error: Connection reset by peer)
2046 [17:34:58] *** Joins: sphenxes01 (~sphenxes@replaced-ip )
2047 [17:35:16] *** sam0t_ is now known as sam0t
2048 [17:36:32] *** Joins: toozej (~toozej@replaced-ip )
2049 [17:37:32] *** Quits: sphenxes (~sphenxes@replaced-ip ) (Ping timeout: 245 seconds)
2050 [17:38:18] *** Quits: BCMM (~BCMM@replaced-ip ) (Quit: Konversation terminated!)
2051 [17:38:20] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2052 [17:38:29] *** Joins: dez (uid92154@replaced-ip )
2053 [17:38:30] *** Joins: jcb2016 (~Mutter@replaced-ip )
2054 [17:40:41] *** Joins: mpmc (~mpmc@replaced-ip )
2055 [17:40:44] *** Joins: _0bitcount (~Big_Byte@replaced-ip )
2056 [17:41:10] *** Quits: minimal_life (~minimal_l@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2057 [17:42:10] *** Quits: brokencycle (~brokencyc@replaced-ip ) (Ping timeout: 255 seconds)
2058 [17:43:46] *** Joins: ChmEarl (~chmearl@replaced-ip )
2059 [17:45:26] *** Quits: rpifan (~rpifan@replaced-ip ) (Ping timeout: 250 seconds)
2060 [17:46:18] *** Joins: km0201 (~km0201@replaced-ip )
2061 [17:46:35] *** Joins: mlegendre (~mlegendre@replaced-ip )
2062 [17:46:55] *** Quits: sphenxes01 (~sphenxes@replaced-ip ) (Quit: Leaving)
2063 [17:47:30] <jhutchins_wk> jez9999: It moved to archive.debian.org quite recently.
2064 [17:47:44] <jez9999> looks like my /boot partition is about 90MB
2065 [17:47:47] <jez9999> is that smaller than it should be?
2066 [17:48:08] <nkuttler> as long as your kernels fit there..
2067 [17:48:09] <jhutchins_wk> jez9999: How much of it is used?
2068 [17:48:18] *** Joins: minimal_life (~minimal_l@replaced-ip )
2069 [17:48:19] <jez9999> 90%. it's causing problems with apt
2070 [17:48:20] <jhutchins_wk> jez9999: df -h
2071 [17:48:49] <nkuttler> oh, 90, that's not much..
2072 [17:48:57] *** Quits: setham (~textual@replaced-ip##) (Quit: Textual IRC Client: ##replaced-url
2073 [17:49:09] <jez9999> im guessing resizing it is pretty much impossible
2074 [17:49:10] <jhutchins_wk> jez9999: I usually recommend that you have one partition plus swap, unless you are experienced enough to know exactly where you will be using space.
2075 [17:49:35] <jhutchins_wk> jez9999: Easiest way is to do a file backup, re-partition, and restore.
2076 [17:49:36] <nkuttler> jez9999: should still fit a few kernels though.. just remove kernels you don't use? or what else do you have in there? du -hs /boot/*
2077 [17:49:54] <jez9999> nkuttler: there are some there i dont use, but apt-get is failing to remove them
2078 [17:50:09] <nkuttler> jez9999: what's the error?
2079 [17:50:20] <jez9999> update-initramfs: Generating /boot/initrd.img-3.16.0-7-amd64
2080 [17:50:20] <jez9999> gzip: stdout: No space left on device
2081 [17:50:23] *** Joins: stelvin (~stelvin@replaced-ip )
2082 [17:50:27] <jhutchins_wk> jez9999: Maybe apt autoremove
2083 [17:50:27] <jez9999> it needs more space to remove the image.....
2084 [17:50:37] <nkuttler> jez9999: which command did you run?
2085 [17:50:47] <jez9999> sudo apt-get remove linux-image-2.6-amd64
2086 [17:51:13] <nkuttler> jez9999: that looks like a meta package, remove specific kernel images
2087 [17:51:38] *** Quits: overbythere (~textual@replaced-ip ) (Ping timeout: 272 seconds)
2088 [17:52:03] *** Quits: jimster (~jimster@replaced-ip ) (Ping timeout: 250 seconds)
2089 [17:52:11] <roylaprattep> so we can remove it from our sources.list? no further update will be made to jessie backports?
2090 [17:52:19] *** Joins: Tenkawa (~Tenkawa@replaced-ip )
2091 [17:53:40] *** Joins: cdown (~cdown@replaced-ip )
2092 [17:54:53] *** Joins: woenx (~whoenx@replaced-ip )
2093 [17:55:45] *** Joins: cdown_ (~cdown@replaced-ip )
2094 [17:56:39] *** Quits: nullbyte_ (~null@replaced-ip ) (Quit: quit)
2095 [17:57:01] *** Quits: mpmc (~mpmc@replaced-ip##) (Quit: ZNC 1.7.1 - ##replaced-url
2096 [17:57:30] *** Parts: vargkorp (~starclear@replaced-ip ) ()
2097 [17:58:00] *** Quits: cdown (~cdown@replaced-ip ) (Ping timeout: 250 seconds)
2098 [17:58:02] *** cdown_ is now known as cdown
2099 [17:58:12] <jez9999> jhutchins: that's a total reinstall from scratch though isnt it?
2100 [17:58:15] *** Quits: stelvin (~stelvin@replaced-ip ) (Quit: Leaving)
2101 [17:58:36] *** Joins: mpmc (~mpmc@replaced-ip )
2102 [18:00:17] *** Joins: endstille (~endstille@replaced-ip )
2103 [18:00:59] *** Quits: mandeep (~mandeep@replaced-ip ) (Ping timeout: 246 seconds)
2104 [18:01:12] *** Joins: Vizva (~Vizva@replaced-ip )
2105 [18:01:26] *** Joins: kreyren (~kreyren@replaced-ip )
2106 [18:01:29] *** Joins: andrzejv (~andzej@replaced-ip )
2107 [18:02:27] *** Joins: ch0wn_ (~tmp@replaced-ip )
2108 [18:02:44] *** Quits: jcb2016 (~Mutter@replaced-ip##) (Quit: Mutter: ##replaced-url
2109 [18:03:46] *** Quits: dreamon_ (~dreamon@replaced-ip ) (Ping timeout: 255 seconds)
2110 [18:04:15] *** Quits: DjCraysey (~DjCray@replaced-ip ) (Remote host closed the connection)
2111 [18:04:34] <jez9999> so I got this when tried to do a dist-upgrade: replaced-url
2112 [18:04:50] <jez9999> i've freed up space in /boot now, how do i resolve the installation of linux-image-3.16.0-7-amd64?
2113 [18:04:59] *** Quits: minimal_life (~minimal_l@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2114 [18:05:01] <greycat> start with dpkg --config -a
2115 [18:05:12] <greycat> err, --configure
2116 [18:05:27] *** Joins: catwiesel (~catwiesel@replaced-ip )
2117 [18:05:37] *** Joins: DjCraysey (~DjCray@replaced-ip )
2118 [18:05:51] <jez9999> dpkg --configure linux-image-3.16.0-7-amd64 ?
2119 [18:05:52] <dpkg> no idea, jez9999
2120 [18:06:44] <jez9999> "package linux-image-3.16.0-7-amd64 is already installed and configured"
2121 [18:06:45] <jez9999> odd
2122 [18:07:17] *** Quits: endstille (~endstille@replaced-ip ) (Quit: I'll be back.)
2123 [18:07:26] <weedloser> How does one know when the next linux kernel will land in sid/unstable?
2124 [18:08:04] *** Quits: soee_ (~soee@replaced-ip ) (Quit: Konversation terminated!)
2125 [18:08:07] *** Quits: ch0wn_ (~tmp@replaced-ip ) (Ping timeout: 246 seconds)
2126 [18:08:23] *** Joins: soee (~soee@replaced-ip )
2127 [18:08:24] *** Quits: Speed2u (~speed2u@replaced-ip ) (Ping timeout: 250 seconds)
2128 [18:08:43] *** Joins: xVim (~xVim@replaced-ip )
2129 [18:08:43] <jhutchins_wk> weedloser: One follows the kernel.org developer mailing list and the debian packaging/maintainer lists.
2130 [18:08:49] *** Quits: Texou (~Texou@replaced-ip ) (Ping timeout: 246 seconds)
2131 [18:09:18] <Tenkawa> jez9999: whats the problem?
2132 [18:09:27] *** Joins: rizzo (~RizzoTheR@replaced-ip )
2133 [18:09:36] <jez9999> it had given an error for dist-upgrade about no space left on device, which i think was /boot
2134 [18:09:44] <jez9999> but it seems to have installed and configured anyway
2135 [18:09:46] <weedloser> jhutchins_wk, Forgot about the mailing list! Thanks! :D
2136 [18:10:05] <xVim> Hey, do I understand it right that it is recommended putting scripts etc. inside $HOME/.local/bin?
2137 [18:10:13] <Tenkawa> it mightve just not put all of the modules in
2138 [18:10:27] <Tenkawa> do a find /lib/modules -type f -size 0
2139 [18:10:38] <Tenkawa> any hits?
2140 [18:10:54] <greycat> xVim: only if you're some hipster weirdo. Regular people use ~/bin/
2141 [18:11:06] *** Quits: andrzejv (~andzej@replaced-ip ) (Ping timeout: 244 seconds)
2142 [18:11:23] <jez9999> Tenkawa: so what do i do to fix it?
2143 [18:11:37] *** Joins: nulleip (~luiz@replaced-ip )
2144 [18:11:37] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
2145 [18:11:46] <Tenkawa> jez9999: free up space
2146 [18:11:47] <xVim> greycat: I don't care about being a hipster or not, but it seems logical to me that people don't want to clutter their $HOME directory
2147 [18:11:51] <Tenkawa> first
2148 [18:11:53] <jez9999> Tenkawa: i did, then what?
2149 [18:11:57] <Tenkawa> then...
2150 [18:12:21] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
2151 [18:12:43] <Tenkawa> we need to figure out which kernel packages should be installed by dpkg's recknoning
2152 [18:12:44] *** Quits: mlegendre (~mlegendre@replaced-ip ) (Quit: Leaving)
2153 [18:12:51] <sam0t> CrazyLegs_: er du på telefonen?
2154 [18:13:03] *** Quits: DjCraysey (~DjCray@replaced-ip ) (Quit: Leaving)
2155 [18:13:35] <Tenkawa> dpkg -l | grep linux-image should be appropriete I think
2156 [18:13:35] <dpkg> ii | grep linux-image should be appropriete I think 1.9-2 ultra s3kr1t #debian package
2157 [18:13:44] <Tenkawa> oops
2158 [18:13:47] <Tenkawa> heehee
2159 [18:13:48] <xVim> What confuses me about $HOME/.local/bin is that pip installs executables there too (with --user flag), and I might want to keep my own executables separate from the Python ones
2160 [18:14:04] <greycat> It's your home directory. Do whatever you want with it.
2161 [18:14:54] *** Quits: stofflswelt (~stofflswe@replaced-ip ) (Quit: Leaving)
2162 [18:14:54] *** Joins: krabador (~krabador@replaced-ip )
2163 [18:15:02] *** Quits: Lxrowe (~Lxrowe@replaced-ip ) (Ping timeout: 250 seconds)
2164 [18:15:37] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2165 [18:16:32] *** Joins: conta (~Thunderbi@replaced-ip )
2166 [18:16:37] <jelly> xVim: if you want to separate python stuff you might as well use a virtualenv
2167 [18:16:43] *** Joins: overbythere (~textual@replaced-ip )
2168 [18:16:56] *** Joins: c2ypt1c (~c2ypt1c@replaced-ip )
2169 [18:17:00] *** Parts: c2ypt1c (~c2ypt1c@replaced-ip ) ()
2170 [18:17:10] *** Joins: viowel (~viowel@replaced-ip )
2171 [18:17:59] *** Quits: viowel (~viowel@replaced-ip ) (Read error: Connection reset by peer)
2172 [18:18:16] *** Quits: Vizva (~Vizva@replaced-ip ) (Quit: Leaving)
2173 [18:18:21] *** Joins: minimal_life (~minimal_l@replaced-ip )
2174 [18:18:32] <xVim> jelly: I usually do that only when I develop code. I can't use them for the final executable or can I?>
2175 [18:18:35] *** Quits: fr3nd (5b7e8343@replaced-ip ) (Ping timeout: 256 seconds)
2176 [18:18:35] *** Joins: nullbyte_ (~null@replaced-ip )
2177 [18:18:40] *** Joins: viowel (~viowel@replaced-ip )
2178 [18:18:45] <jmcnaught> the default .profile (from /etc/skel) adds ~/bin to $PATH if it exists
2179 [18:18:52] <jez9999> damn
2180 [18:18:55] <jelly> sure you can.
2181 [18:18:56] <jez9999> i think i've killed my server
2182 [18:19:01] <jez9999> rebooted and it wont come back up :'-(
2183 [18:19:03] *** Quits: viowel (~viowel@replaced-ip ) (Client Quit)
2184 [18:19:08] <xVim> Because I always would have to activate the virtualenv before running my executable
2185 [18:19:32] *** Quits: NetTerminalGene (~NetTermin@replaced-ip ) (Ping timeout: 246 seconds)
2186 [18:19:33] <jelly> yes, or you'd make a wrapper
2187 [18:19:49] *** Quits: conyers (~conyers@replaced-ip ) (Read error: Connection reset by peer)
2188 [18:20:06] <xVim> You mean like a script that activates the virtualenv automatically before executing my program?
2189 [18:20:28] <xVim> Sounds smart, I should probably do that
2190 [18:20:44] *** Quits: qqx (~qqx@replaced-ip ) (Quit: Bye)
2191 [18:20:48] <xVim> That way I don't get dependency issues
2192 [18:20:53] *** Joins: qqx (~qqx@replaced-ip )
2193 [18:21:16] *** Quits: astrofog (~astrofog@replaced-ip ) (Remote host closed the connection)
2194 [18:22:16] *** Joins: kreyren (~kreyren@replaced-ip )
2195 [18:22:31] *** Joins: Vizva (~Vizva@replaced-ip )
2196 [18:23:00] *** Joins: Speed2u (~speed2u@replaced-ip )
2197 [18:23:08] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2198 [18:23:29] *** Joins: kreyren (~kreyren@replaced-ip )
2199 [18:24:23] *** Joins: flokuehn (~flokuehn@replaced-ip )
2200 [18:24:55] *** Quits: foolsh_ (~quassel@replaced-ip ) (Ping timeout: 255 seconds)
2201 [18:25:03] <jelly> that's me, _sounding_ smart
2202 [18:25:46] *** Joins: Whira (~Whira@replaced-ip )
2203 [18:26:11] <temple48> jez9999: what's your current status?
2204 [18:26:21] <xVim> $HOME/.local/bin is not automatically added to $PATH, but somehow scripts in it are executable from anywhere anyway because of systemd, right? (systemd-path user-binaries)
2205 [18:26:35] <jez9999> sending a support ticket to my host
2206 [18:26:48] <jez9999> this is why i hate upgrading debian
2207 [18:26:51] <greycat> wut
2208 [18:26:59] <jez9999> the fact that apt can get you into a non-boot situation is bad design
2209 [18:27:26] *** Quits: nighty- (~nighty@replaced-ip ) (Quit: Disappears in a puff of smoke)
2210 [18:27:47] <km0201> always be prepared when upgrading any OS... Debian isn't alone.
2211 [18:27:57] <Tenkawa> jez9999: what km0201 said
2212 [18:27:58] <jez9999> well i have backups
2213 [18:28:04] <jez9999> but it's still a PITA for it to be non-booting
2214 [18:28:09] <greycat> Please tell me more of this alleged "systemd-path user-binaries" so that I may destroy it with fire.
2215 [18:28:14] <Tenkawa> km0201 beat e to it
2216 [18:28:16] *** Joins: mvaenskae (~mvaenskae@replaced-ip )
2217 [18:28:19] <Tenkawa> er me
2218 [18:28:23] <km0201> lol
2219 [18:28:23] <xVim> greycat: Run systemd-path user-binaries in your shell
2220 [18:28:39] * greycat runs "man systemd-path" instead
2221 [18:28:47] <nkuttler> jez9999: you have so many kernels, did you try them all?
2222 [18:28:49] <xVim> good idea :)
2223 [18:29:14] *** Quits: tagomago (~tagomago@replaced-ip ) (Read error: Connection reset by peer)
2224 [18:29:18] <nkuttler> and why reboot if you get an error while building the initramfs
2225 [18:29:19] <jez9999> nkuttler: i dont have terminal access to the machine
2226 [18:29:29] <nkuttler> oh well, next time
2227 [18:29:42] <xVim> The funny thing is that $HOME/.local/bin is not inside my $PATH, but it is inside systemds user-binaries path
2228 [18:29:48] <km0201> I've personally never had an issue upgrading Linux (Ubuntu/Debian desktops, Fedora Desktop, Debian server)... but I've ran into train wrecks upgrading MS operating systems.... so I don't think for a second Linux is immune to upgrading issues.
2229 [18:29:49] *** Quits: overbythere (~textual@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2230 [18:29:56] *** Joins: tagomago (~tagomago@replaced-ip )
2231 [18:29:59] <jez9999> i'm meant to have an "IPMI console" whetever that is but it doesnt work
2232 [18:30:19] <nkuttler> !ipmi
2233 [18:30:19] <dpkg> [ipmi] Intelligent Platform Management Interface. An interface to the Baseboard Management Controller (BMC) is available in the ipmitool package. An interface for servers to interact with IPMI-enabled devices is in the openipmi package.
2234 [18:30:21] *** Joins: homaar (~homaar@replaced-ip )
2235 [18:30:21] <jez9999> km0201: i dont generally need to upgrade MS operating systems. not half as often as linux, anyway
2236 [18:30:27] <greycat> I do not see the string "user-binaries" in systemd-path(1) or in file-hierarchy(7) at all.
2237 [18:30:50] <xVim> greycat: Hm, I have, I don't know why.
2238 [18:30:50] <greycat> Nor do I know why you wanted me to run this. Nor how you came up with this command. Nor why you think its output is meaningful.
2239 [18:31:04] <temple48> jez9999: did it ever work, or it doesn't work right now after what has been done?
2240 [18:31:04] *** Quits: Whira (~Whira@replaced-ip##) (Quit: Mutter: ##replaced-url
2241 [18:31:11] <jez9999> hasnt worked for ages
2242 [18:31:22] *** Quits: m0rph (~m1sosoup@replaced-ip ) (Quit: Leaving)
2243 [18:31:24] <km0201> jez9999, same here... but saying my experiences w/ MS operating systems is what makes me always be prepared when upgrading... in spite of the fact I don't ever recall a problem upgrading a Linux OS.
2244 [18:31:51] <jez9999> what i mean is, MS dont release a new OS every 10 months and tell you to upgrade or lose support
2245 [18:31:56] <jez9999> it's kind of annoying that Linux does
2246 [18:32:00] <temple48> jez9999: sucks to be in this predicament, I hope your host can get it sorted out for you quickly
2247 [18:32:01] <Tenkawa> microsoft os's almost never have an "upgrade" path though
2248 [18:32:09] *** Joins: ch0wn_ (~tmp@replaced-ip )
2249 [18:32:14] <km0201> well, they usually do it about every 4-5yrs now apparently.
2250 [18:32:23] <Tenkawa> its always a migratiom
2251 [18:32:31] <jez9999> with windows 10 they probably wont release a new "OS" at all now
2252 [18:32:35] <nkuttler> please let's stick to debian support questions in here
2253 [18:32:36] <km0201> true... maybe upgrade was a bad way to put it.
2254 [18:32:41] *** Quits: yokowka (~yokowka@replaced-ip ) (Quit: Leaving)
2255 [18:33:00] <xVim> greycat: Sorry if I bothered you. To me it is just a bit confusing that systemd seems to have a separate path for user binaries. I came to it via replaced-url
2256 [18:33:33] *** Quits: Pjusur (~Pjusur@replaced-ip ) (Quit: Leaving)
2257 [18:34:23] <greycat> wooledg:~$ man file-hierarchy | grep user-bin
2258 [18:34:24] <greycat> <standard input>:547: warning [p 8, 1.7i, div `3tbd4,0', 0.0i]: can't break line
2259 [18:34:31] <greycat> and two other errors; no mention of this thing.
2260 [18:34:32] *** Joins: Essadon (~Essadon@replaced-ip )
2261 [18:34:38] *** Joins: Kevlar_Noir (~manjaro-u@replaced-ip )
2262 [18:35:19] *** Quits: Caplain (~shayne@replaced-ip ) (Read error: Connection reset by peer)
2263 [18:36:10] <jelly> jez9999: you upgrade windows systems at least once a month, and going from windows 10 1709 ro windows 10 1803 brings a similar amount of changes to the core OS components that going from Debian 9 to 10 will do
2264 [18:36:13] <greycat> The Debian bug (#839155) linked from your random web page claims that this .local/bin thing is supposed to be in /etc/skel.
2265 [18:36:45] <jelly> jez9999: and a debian release upgrade usually needs just one, max. two reboots
2266 [18:36:50] <jez9999> jelly: yeah, but it's a "click and upgrade" not a "muck around on the command line with several commands and edit sources.list"
2267 [18:36:51] <greycat> So, it's some policy being pushed on Debian by other people, that Debian has not been eagerly obeying.
2268 [18:37:29] <xVim> OK, so then I should not use it probably
2269 [18:37:34] *** Joins: P1ersson (~P1ersson@replaced-ip )
2270 [18:37:42] <greycat> Use whatever you want. Use BOTH for all we care.
2271 [18:37:53] *** Joins: NetTerminalGene (~NetTermin@replaced-ip )
2272 [18:38:01] <jelly> jez9999: that's what happens when you have a couple thousand paid engineers vs a thousand volunteers
2273 [18:38:04] <greycat> Make 17 directories and put binaries in directory #(md5sum program % 17).
2274 [18:38:42] <greycat> !pal python-pip
2275 [18:38:43] * dpkg points at python-pip and laughs hysterically
2276 [18:39:23] <jelly> nothing wrong with pip, just don't run "pip install foo" as root, or without a virtualenv!
2277 [18:40:37] *** Joins: dastier (~dastier@replaced-ip )
2278 [18:41:18] <greycat> Apparently all this .local/bin systemd nonsense is being driven by "I ran pip and it broked because path".
2279 [18:41:46] *** Quits: toorop (~toorop@replaced-ip ) (Ping timeout: 250 seconds)
2280 [18:41:51] <greycat> Funny how none of them seem to realize "hey wait, maybe pip is the one that's wrong, not every single operating system in the world".
2281 [18:42:56] *** Joins: hatchetjack (~jason@replaced-ip )
2282 [18:42:58] <jelly> debian softens some of the dumbest upstream choices
2283 [18:43:12] <hatchetjack> are there any wheezy repositories around anymore?
2284 [18:43:26] *** Joins: mase-tech (~mase-tech@replaced-ip )
2285 [18:43:31] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2286 [18:43:44] *** Joins: tieri_ (~tieri@replaced-ip )
2287 [18:43:51] <nkuttler> !tell hatchetjack about archive
2288 [18:43:58] <jelly> hatchetjack: old releases are moved to archive.debian.org if that's what you're asking
2289 [18:44:16] <xVim> I have a mess with programs install everywhere, inside /opt, /usr/local/bin, /$HOME/bin, /$HOME/.local/bin and more. Now I am cleaning up and want to do it right, that is why I was asking
2290 [18:44:27] <jelly> !elts
2291 [18:44:28] <dpkg> Limited commercial support for wheezy exists in form of Extended LTS, see replaced-url
2292 [18:44:39] <jelly> hatchetjack: or ^ if you asked something else
2293 [18:45:08] <hatchetjack> jelly: ah I forgot about archive.debian.org
2294 [18:45:11] <hatchetjack> thanks for reminding me
2295 [18:45:11] <xVim> And I got my answer, just use any directories inside $HOME that I want for user-specific stuff, so I am fine. I just forget about this .local/bin stuff
2296 [18:45:20] <jelly> if you pay freexian they will gladly support your subset of wheezy packages
2297 [18:45:36] *** Joins: pringau (~pringau@replaced-ip )
2298 [18:46:29] <hatchetjack> does archive.debian.org have mips packages?
2299 [18:46:29] *** Quits: anavel (~shandy@replaced-ip ) (Ping timeout: 246 seconds)
2300 [18:46:56] <hatchetjack> nevermind I found it
2301 [18:46:57] <hatchetjack> thanks guys
2302 [18:46:59] *** Parts: hatchetjack (~jason@replaced-ip ) ()
2303 [18:47:02] *** Quits: s8548a (~s8548a@replaced-ip ) (Read error: Connection reset by peer)
2304 [18:47:32] *** Joins: tombom_ (~tombom@replaced-ip )
2305 [18:47:54] *** Quits: flokuehn (~flokuehn@replaced-ip ) (Ping timeout: 246 seconds)
2306 [18:49:37] *** Joins: magnulu (~magnulu@replaced-ip )
2307 [18:50:03] <jhutchins_wk> jez9999: You may be coming across some of the pre-linux legacy standards, when *nix systems were primarily multi-user, and allowed users to install software for their own use without affecting user-wide system components.
2308 [18:50:15] *** Quits: Vizva (~Vizva@replaced-ip ) (Ping timeout: 256 seconds)
2309 [18:50:24] <jez9999> jhutchins_wk: huh?
2310 [18:50:50] <xVim> I think he meant me
2311 [18:51:09] *** Joins: anavel (~shandy@replaced-ip )
2312 [18:51:21] <jhutchins_wk> jez9999: Installing your software in $HOME rather than /usr/local/bin
2313 [18:51:41] <jez9999> i dont understand what you're referring to
2314 [18:51:52] *** Quits: clemens3 (~clemens@replaced-ip ) (Ping timeout: 250 seconds)
2315 [18:52:10] <jhutchins_wk> jez9999: Actually, I'm mixing up your thread vs xVim
2316 [18:52:32] <jelly> !tea jhutchins_wk
2317 [18:52:32] * dpkg hands jhutchins_wk a nice lukewarm glass of mint tea.
2318 [18:53:03] <xVim> jhutchins_wk: Yes, I understand that somme software should be installed to /usr/local/bin so that multiple user can access it
2319 [18:53:42] *** Quits: Alina-malina_ (~Alina-mal@replaced-ip ) (Remote host closed the connection)
2320 [18:53:51] *** Joins: malmalmal (~malmalmal@replaced-ip )
2321 [18:54:19] *** Joins: Uberius (~Uberius@replaced-ip )
2322 [18:54:20] *** Quits: Penguin_ (~xwQ5kwYl6@replaced-ip ) (Ping timeout: 258 seconds)
2323 [18:54:36] *** Joins: Alina-malina (~Alina-mal@replaced-ip )
2324 [18:54:55] <xVim> It is just a bit complicated because there are so many different directories where software can be installed at. That can be a bit confusing. But I think I understood enough of it to make better decision for the next programs I install
2325 [18:55:13] *** Joins: toorop (~toorop@replaced-ip )
2326 [18:55:26] *** Joins: Rosco2 (~RossGammo@replaced-ip )
2327 [18:55:28] *** Quits: hele (~hele@replaced-ip ) (Quit: Konversation terminated!)
2328 [18:55:36] *** Joins: hele (~hele@replaced-ip )
2329 [18:55:48] *** Quits: soee (~soee@replaced-ip ) (Quit: Konversation terminated!)
2330 [18:55:58] *** Parts: carp_ (c3939ba8@replaced-ip ) ()
2331 [18:56:01] *** Joins: Penguin_ (~xwQ5kwYl6@replaced-ip )
2332 [18:56:38] <greycat> It was actually really simple until the systemd/XDG wankers got the idea that they could push their agenda down people's throats. If you configured something as root, it went into /usr/local/bin. If you configured it as a user, you can't write there, so you did whatever you want, and that was usually --prefix=$HOME which put the executables in ~/bin.
2333 [18:57:29] *** Quits: Zvmdyv (~Zvmdyv@replaced-ip ) (Remote host closed the connection)
2334 [18:57:47] *** Joins: evilman_work (~evilman@replaced-ip )
2335 [18:58:03] <jhutchins_wk> We have a lot of legacy systems where the code was "forklifted" from Solaris systems where it was pretty much anything goes. Shared binaries running off of NFS, fun things like that.
2336 [18:58:35] <greycat> Yes, perfectly normal.
2337 [18:58:38] <e> ln -s . .local # everything is fixed
2338 [18:59:43] *** Quits: oish (~charlie@replaced-ip ) (Remote host closed the connection)
2339 [18:59:47] *** Quits: hele (~hele@replaced-ip ) (Ping timeout: 240 seconds)
2340 [18:59:50] <greycat> You didn't want to install all versions of gcc on every workstation, so you just install them on the NFS server in a directory that gets mounted on all the Solaris7 or HP-UX10 systems.
2341 [19:00:38] <jelly> !fix e
2342 [19:00:38] * dpkg takes e to the vet for a "special" visit.
2343 [19:00:54] *** tieri_ is now known as alboka
2344 [19:01:03] <greycat> It's the polar opposite of /usr/local. /usr/local is local to this one machine. The shared directory, whatever you call it, is mounted onto *all* machines of a specific platform.
2345 [19:01:29] *** Quits: conta (~Thunderbi@replaced-ip ) (Quit: conta)
2346 [19:03:26] *** Quits: munshine (~Munshine@replaced-ip ) (Quit: Leaving)
2347 [19:04:01] *** Quits: krabador (~krabador@replaced-ip ) (Remote host closed the connection)
2348 [19:05:31] *** Joins: bingbotboom (~bingbotbo@replaced-ip )
2349 [19:05:39] *** Joins: htc^ (htc@replaced-ip )
2350 [19:09:23] *** Joins: leemar (~leemar@replaced-ip )
2351 [19:09:37] *** Joins: rsx (~rsx@replaced-ip )
2352 [19:09:43] *** Joins: mtn (~mtn@replaced-ip )
2353 [19:10:34] *** Quits: alboka (~tieri@replaced-ip ) (Quit: Leaving)
2354 [19:11:59] *** Joins: dunkhel (~dunkhel@replaced-ip )
2355 [19:12:15] *** Joins: oish (~charlie@replaced-ip )
2356 [19:14:10] *** Joins: flokuehn (~flokuehn@replaced-ip )
2357 [19:14:30] *** Quits: b7219264 (b7219264@replaced-ip ) (Quit: Leaving)
2358 [19:15:25] *** Joins: b7219264 (b7219264@replaced-ip )
2359 [19:15:53] *** Joins: Levure (~quassel@replaced-ip )
2360 [19:16:08] *** Joins: __jrjsmrtn__ (~jrjsmrtn@replaced-ip )
2361 [19:16:21] *** Joins: nibble_zero (~nibble_ze@replaced-ip )
2362 [19:16:43] *** Joins: Poffer (~Poffer@replaced-ip )
2363 [19:17:33] *** Joins: aZz7eCh (~aZz7eCh@replaced-ip )
2364 [19:17:34] *** Quits: lrvick (~weechat_u@replaced-ip ) (Quit: WeeChat 2.1)
2365 [19:18:32] *** Joins: ub (~ub@replaced-ip )
2366 [19:19:20] *** Joins: well_laid_lawn (~Jean-luc@replaced-ip )
2367 [19:19:29] *** Joins: fstd_ (~fstd@replaced-ip )
2368 [19:21:18] *** Quits: a_l_b (~a_l_b@replaced-ip ) (Ping timeout: 245 seconds)
2369 [19:22:02] *** Joins: lrvick (~weechat_u@replaced-ip )
2370 [19:22:21] *** Joins: Pjusur (~Pjusur@replaced-ip )
2371 [19:23:30] *** Quits: fstd (~fstd@replaced-ip ) (Ping timeout: 250 seconds)
2372 [19:23:30] *** fstd_ is now known as fstd
2373 [19:23:32] *** Joins: SmearedBeard (~SmearedBe@replaced-ip )
2374 [19:24:02] *** debhelper sets mode: +l 1587
2375 [19:24:39] *** Quits: martian67 (~martian67@replaced-ip##) (Quit: ZNC 1.7.2+deb1 - ##replaced-url
2376 [19:24:46] *** Quits: AimHere (~David@replaced-ip ) (Ping timeout: 246 seconds)
2377 [19:24:53] *** Joins: martian67 (~martian67@replaced-ip )
2378 [19:25:12] *** Joins: kreyren (~kreyren@replaced-ip )
2379 [19:25:13] *** Quits: sauvin (sauvin@replaced-ip ) (Remote host closed the connection)
2380 [19:26:03] *** Joins: fus_ (~quassel@replaced-ip )
2381 [19:26:13] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2382 [19:26:32] *** Joins: Gyro (~user@replaced-ip )
2383 [19:26:33] *** Joins: kreyren (~kreyren@replaced-ip )
2384 [19:26:55] *** Quits: Penguin_ (~xwQ5kwYl6@replaced-ip ) (Ping timeout: 258 seconds)
2385 [19:26:59] *** Joins: AimHere (~David@replaced-ip )
2386 [19:27:26] *** Quits: fus (~quassel@replaced-ip ) (Ping timeout: 246 seconds)
2387 [19:27:28] *** Quits: toorop (~toorop@replaced-ip ) (Ping timeout: 255 seconds)
2388 [19:28:04] *** Joins: paulo (~paulo@replaced-ip )
2389 [19:28:13] <|aaron> Hey all, I'm confused about the recent move of some jessie packages from the main mirrors to archive. It looks like jessie-updates is just gone, am I correct in assuming that repo is no longer needed?
2390 [19:28:30] *** Joins: Wioxjk (~poppels@replaced-ip )
2391 [19:28:59] *** Quits: rsx (~rsx@replaced-ip ) (Remote host closed the connection)
2392 [19:29:41] *** Quits: Tempesta (~Tempesta@replaced-ip ) (Quit: See ya!)
2393 [19:29:45] <|aaron> Since jessie is LTS the only package updates will be on security.debian.org right?
2394 [19:30:10] *** Joins: diogenes_ (~diogenes_@replaced-ip )
2395 [19:30:14] *** Joins: Penguin_ (~xwQ5kwYl6@replaced-ip )
2396 [19:33:17] *** Joins: krukudilo (~krukudilo@replaced-ip )
2397 [19:33:48] *** Joins: toorop (~toorop@replaced-ip )
2398 [19:34:05] *** Joins: anonymous83719 (~anonymous@replaced-ip )
2399 [19:34:22] *** Joins: a_l_b (~a_l_b@replaced-ip )
2400 [19:35:51] *** Joins: wireshark (~none@replaced-ip )
2401 [19:36:02] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2402 [19:36:37] *** Joins: pitelpan (~panos@replaced-ip )
2403 [19:37:22] *** Quits: anonymip (~anonymip@replaced-ip ) (Ping timeout: 255 seconds)
2404 [19:37:43] *** Quits: buspirate (~none@replaced-ip ) (Ping timeout: 246 seconds)
2405 [19:38:25] *** Quits: jmarsac (~jmarsac@replaced-ip##) (Quit: Nettalk6 - ##replaced-url
2406 [19:39:18] *** Joins: colbert (~Ident@replaced-ip )
2407 [19:39:42] *** Joins: anonymip (~anonymip@replaced-ip )
2408 [19:40:06] *** Quits: catwiesel (~catwiesel@replaced-ip ) (Read error: Connection reset by peer)
2409 [19:40:11] *** Joins: mandeep (~mandeep@replaced-ip )
2410 [19:41:52] *** Joins: Tempesta (~Tempesta@replaced-ip )
2411 [19:43:54] <jelly> |aaron: right
2412 [19:44:02] *** debhelper sets mode: +l 1593
2413 [19:44:14] <jelly> !jessie sources.list
2414 [19:44:14] <dpkg> A suitable /etc/apt/sources.list for Debian 8 "Jessie" has two lines: "deb replaced-url
2415 [19:44:29] <jelly> okay, that needs some updating
2416 [19:44:36] *** Quits: glongo (uid17594@replaced-ip ) (Quit: Connection closed for inactivity)
2417 [19:45:08] *** Quits: lucad111 (~lucad111@replaced-ip ) (Quit: Leaving)
2418 [19:45:16] *** Quits: ich (~ich@replaced-ip ) (Quit: Ex-Chat)
2419 [19:45:57] *** Quits: nullbyte_ (~null@replaced-ip ) (Quit: quit)
2420 [19:47:33] *** Joins: kreyren (~kreyren@replaced-ip )
2421 [19:49:21] *** Quits: bingbotboom (~bingbotbo@replaced-ip ) (Ping timeout: 268 seconds)
2422 [19:50:52] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2423 [19:53:08] *** Quits: m0u_ (~m0u@replaced-ip ) (Ping timeout: 268 seconds)
2424 [19:54:01] *** debhelper sets mode: +l 1587
2425 [19:54:32] *** Joins: edgardoweb (~edgardowe@replaced-ip )
2426 [19:54:45] *** Quits: weedloser (~weedloser@replaced-ip ) (Quit: Leaving)
2427 [19:54:48] <|aaron> jelly: ty!
2428 [19:54:54] *** Joins: _jrjsmrtn (~jrjsmrtn@replaced-ip )
2429 [19:55:53] <DoomPatrol> stupid question, (really sorry for asking but ... $work ...)
2430 [19:56:04] <DoomPatrol> have the wheezy repo's been turned down/off?
2431 [19:56:27] <Tenkawa> thats up to each site
2432 [19:56:46] <DoomPatrol> oic, hrm
2433 [19:56:48] *** Joins: crazeekennee (~ken_home@replaced-ip )
2434 [19:56:55] *** Joins: buspirate (~none@replaced-ip )
2435 [19:56:56] *** Quits: crazeekennee (~ken_home@replaced-ip ) (Read error: Connection reset by peer)
2436 [19:57:04] *** Joins: Buliarou1 (~gypsydang@replaced-ip )
2437 [19:57:07] *** Quits: rax- (~rax-@replaced-ip ) (Ping timeout: 245 seconds)
2438 [19:57:23] *** Quits: _jrjsmrtn (~jrjsmrtn@replaced-ip ) (Client Quit)
2439 [19:57:39] <jelly> dpkg, tell DoomPatrol about archive
2440 [19:57:44] <Tenkawa> i dont know what the "official" stance is but they are individual mirror sites after all
2441 [19:58:06] <DoomPatrol> jelly: awesome ty vm
2442 [19:58:07] <Tenkawa> thats a better answer
2443 [19:58:19] <jelly> Tenkawa: official mirrors use a script that does rsync --delete
2444 [19:58:30] *** Quits: Uberius (~Uberius@replaced-ip ) (Remote host closed the connection)
2445 [19:58:50] <Tenkawa> jelly: yeah pending they can be reached....
2446 [19:58:55] *** Joins: Uberius (~Uberius@replaced-ip )
2447 [19:59:14] *** Joins: crazeekennee (~ken_home@replaced-ip )
2448 [19:59:19] <jelly> if an upstream mirror can't be reached your mirror gets outdated quickly
2449 [19:59:21] *** Quits: pitelpan (~panos@replaced-ip ) (Quit: WeeChat 2.3)
2450 [19:59:26] <Tenkawa> yep
2451 [19:59:34] *** Quits: wireshark (~none@replaced-ip ) (Ping timeout: 272 seconds)
2452 [19:59:40] *** Joins: alboka (~tieri@replaced-ip )
2453 [19:59:42] <jelly> and gets thrown out of the list
2454 [20:00:06] *** Parts: diogenes_ (~diogenes_@replaced-ip ) ("vergissmeinnicht")
2455 [20:00:06] *** Quits: krukudilo (~krukudilo@replaced-ip ) (Quit: Leaving)
2456 [20:00:07] <jelly> and apt complains loudly after it's 14+ days old
2457 [20:00:08] *** Joins: RAX (~rax-@replaced-ip )
2458 [20:00:20] *** RAX is now known as rax-
2459 [20:00:22] <jelly> (not sure if apt from wheezy does)
2460 [20:00:34] <Tenkawa> good
2461 [20:01:00] *** Quits: alboka (~tieri@replaced-ip ) (Client Quit)
2462 [20:01:02] <Tenkawa> I wouldnt know.. I'm so picky i dont think my repo gets 4 days out of date
2463 [20:01:11] *** Quits: crazeekennee (~ken_home@replaced-ip ) (Client Quit)
2464 [20:01:13] *** Quits: dez (uid92154@replaced-ip ) (Quit: Connection closed for inactivity)
2465 [20:01:15] *** Joins: rpifan (~rpifan@replaced-ip )
2466 [20:03:59] *** Quits: puxavida (~comptekki@replaced-ip ) (Remote host closed the connection)
2467 [20:04:25] *** Quits: omonk (~omonk@replaced-ip ) (Quit: quit)
2468 [20:04:42] *** Quits: NetTerminalGene (~NetTermin@replaced-ip ) (Remote host closed the connection)
2469 [20:05:02] *** Quits: Gazooo (~Gazooo@replaced-ip##) (Quit: The Lounge - ##replaced-url
2470 [20:05:37] *** Quits: retpoline (~retpoline@replaced-ip ) (Quit: quitting)
2471 [20:06:00] *** Quits: cryptodan (~cryptodan@replaced-ip ) (Remote host closed the connection)
2472 [20:06:11] *** Joins: puxavida (~comptekki@replaced-ip )
2473 [20:06:42] *** Joins: gorgabal (~gorgabal@replaced-ip )
2474 [20:06:57] *** Joins: Gazooo (~Gazooo@replaced-ip )
2475 [20:07:22] *** Joins: omonk (~omonk@replaced-ip )
2476 [20:08:08] *** Quits: robs_ (~robs@replaced-ip ) (Ping timeout: 250 seconds)
2477 [20:09:05] *** Quits: toorop (~toorop@replaced-ip ) (Ping timeout: 246 seconds)
2478 [20:10:44] *** Joins: jcb2016 (~jcb2016@replaced-ip )
2479 [20:10:50] *** Quits: a_l_b (~a_l_b@replaced-ip ) (Quit: a_l_b)
2480 [20:10:53] *** Quits: buspirate (~none@replaced-ip ) (Ping timeout: 245 seconds)
2481 [20:10:58] <|aaron> anyone here familiar with the mirror ftpsync script? im trying to figure out how to pull down just specific releases
2482 [20:11:07] *** Quits: Sollg3r (~ejakuk@replaced-ip ) (Quit: Leaving)
2483 [20:11:21] *** Joins: silentjet (~jet@replaced-ip )
2484 [20:12:00] *** Joins: gator-fate (~perturb-c@replaced-ip )
2485 [20:12:43] *** Quits: czart (~czart@replaced-ip ) (Read error: Connection reset by peer)
2486 [20:13:41] *** Quits: gator-fate (~perturb-c@replaced-ip##) (Quit: ZNC 1.7.2 - ##replaced-url
2487 [20:14:01] *** debhelper sets mode: +l 1579
2488 [20:14:27] *** Quits: SmearedBeard (~SmearedBe@replaced-ip ) (Ping timeout: 240 seconds)
2489 [20:15:55] *** Quits: jcole (~jcole@replaced-ip ) (Remote host closed the connection)
2490 [20:16:18] *** Joins: toorop (~toorop@replaced-ip )
2491 [20:16:20] *** Quits: dastier (~dastier@replaced-ip ) (Remote host closed the connection)
2492 [20:16:25] *** Joins: jcole (~jcole@replaced-ip )
2493 [20:16:25] *** Joins: gator-fate (~perturb-c@replaced-ip )
2494 [20:16:48] *** Quits: gator-fate (~perturb-c@replaced-ip ) (Client Quit)
2495 [20:17:12] *** Joins: gator-fate (~perturb-c@replaced-ip )
2496 [20:19:27] *** Quits: esro (~esro@replaced-ip ) (Quit: Leaving)
2497 [20:19:29] *** Joins: DrWatson (~DrWatson_@replaced-ip )
2498 [20:20:34] *** Joins: BCMM (~BCMM@replaced-ip )
2499 [20:20:55] *** Quits: nulleip (~luiz@replaced-ip ) (Read error: Connection reset by peer)
2500 [20:21:48] *** Joins: nulleip (~luiz@replaced-ip )
2501 [20:22:07] *** Quits: oish (~charlie@replaced-ip ) (Ping timeout: 268 seconds)
2502 [20:22:11] *** Quits: p3rs3us (~jduro@replaced-ip ) (Quit: Leaving)
2503 [20:22:13] <jcb2016> can i boot a live usb of debian that is missing firmware. find the tarball with the firmware on another usb extract the tarball/firmware and modprobe it so i can get the firmware working? is this possible?
2504 [20:22:23] *** Quits: anonymous83719 (~anonymous@replaced-ip ) (Read error: Connection reset by peer)
2505 [20:22:31] <jcb2016> im looking at replaced-url
2506 [20:22:36] *** Joins: anonymous83719 (~anonymous@replaced-ip )
2507 [20:22:44] *** Quits: tower (~greg@replaced-ip ) (Ping timeout: 250 seconds)
2508 [20:23:07] *** Joins: tower (~greg@replaced-ip )
2509 [20:23:19] <ksk> yeah that should work somehow. gettin the unofficial installer with all nonfree firmware included saves you from trying it though..
2510 [20:23:57] *** Quits: n4dir (~n4dir@replaced-ip ) (Remote host closed the connection)
2511 [20:24:50] <Tenkawa> you can also stage a usb installer with firmware I thought
2512 [20:25:19] <jcb2016> don't want the installer i want to boot a live dvd/usb that wifi isn't working extract the missing firmware to the computer and mobdprobe it to get wifi working. can i do that?
2513 [20:25:20] *** Quits: flokuehn (~flokuehn@replaced-ip ) (Ping timeout: 250 seconds)
2514 [20:26:10] <Tenkawa> sure
2515 [20:26:11] *** Joins: buspirate (~none@replaced-ip )
2516 [20:26:23] <Tenkawa> thats what live usbs are for
2517 [20:26:38] <Tenkawa> but you need to stage it if its a non-free driver
2518 [20:26:58] <jcb2016> ok cool. oh i have another question. if i boot to a live usb with debian installed can i browse the usb drive while booted to it?
2519 [20:27:02] <Tenkawa> put the package on the usb stick
2520 [20:27:50] <|aaron> replaced-url
2521 [20:28:38] <Tenkawa> anyone feel free to correct me here but basicly you'd be running a self contained usb based installed
2522 [20:28:48] *** Joins: flokuehn (~flokuehn@replaced-ip )
2523 [20:29:33] <jcb2016> Tenkawa, replaced-url
2524 [20:29:53] *** Joins: SmearedBeard (~SmearedBe@replaced-ip )
2525 [20:30:18] <Tenkawa> yes you'd need to take that + somthing like rufus and write it to usb
2526 [20:30:18] <jcb2016> the firmware should be included on the usb when booted. just want to know can i browse the usb when its booted up so i can extract the firmware.
2527 [20:30:25] <Tenkawa> add it to the usb
2528 [20:30:51] *** Quits: rpifan (~rpifan@replaced-ip ) (Read error: Connection reset by peer)
2529 [20:30:57] *** Joins: rpifan_ (~rpifan@replaced-ip )
2530 [20:31:25] <Tenkawa> yes
2531 [20:31:38] <Tenkawa> if you use a tool like rufus
2532 [20:31:44] <Tenkawa> you can write to it
2533 [20:31:51] <jcb2016> tekk, ok so after i burn with rufus add the firmware on it then boot then i should be able to browse?
2534 [20:32:00] <jcb2016> Tenkawa*
2535 [20:32:41] <Tenkawa> after you boot it wont know the difference.. its harder in windows
2536 [20:32:42] <jcb2016> how do i brose the usb Tenkawa when its booted? is it a /dev/loop0 or do i have to remount or something?
2537 [20:33:03] *** Joins: Elirips_ (~Elirips@replaced-ip )
2538 [20:33:10] <Tenkawa> you "will" be in it
2539 [20:33:22] *** Quits: well_laid_lawn (~Jean-luc@replaced-ip ) (Ping timeout: 245 seconds)
2540 [20:33:28] <jcb2016> ok
2541 [20:33:49] <Tenkawa> thats why its live and you have to stage it before you boot to it
2542 [20:34:19] *** Quits: Elirips_ (~Elirips@replaced-ip ) (Client Quit)
2543 [20:34:25] *** Joins: dreamon_ (~dreamon@replaced-ip )
2544 [20:34:33] <jcb2016> how do you stage?
2545 [20:35:02] *** Quits: flokuehn (~flokuehn@replaced-ip ) (Ping timeout: 272 seconds)
2546 [20:35:06] <Tenkawa> add the firmware to /lib/firmware
2547 [20:35:36] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 268 seconds)
2548 [20:36:11] <jcb2016> so as root go to /lib/firmware and untar it there?
2549 [20:36:39] *** Joins: flokuehn (~flokuehn@replaced-ip )
2550 [20:36:39] <Tenkawa> tar -tvf first and check its structure
2551 [20:37:10] <Tenkawa> it might already have the whole structure or it might even only be source files
2552 [20:37:46] *** Joins: jnavila (~jnavila@replaced-ip )
2553 [20:37:57] <jcb2016> i already know wwhat firmwware to get iwlwifi
2554 [20:37:58] *** Quits: Slashman (~Slash@replaced-ip ) (Remote host closed the connection)
2555 [20:38:26] <Tenkawa> but what file are you looking at though?
2556 [20:38:49] *** Joins: neuraload (~marius@replaced-ip )
2557 [20:39:31] <jcb2016> what do you mean? when i ran the installer once it said i was missing iwlwifi something
2558 [20:39:43] <Tenkawa> the best way is to grab the .deb and install it with dpkg
2559 [20:39:48] <Tenkawa> right
2560 [20:39:59] *** Quits: toorop (~toorop@replaced-ip ) (Remote host closed the connection)
2561 [20:40:01] <Tenkawa> so you need to get that package
2562 [20:40:06] *** Joins: faw (~faw@replaced-ip )
2563 [20:40:20] <Tenkawa> thats not a "file"
2564 [20:40:20] <jcb2016> there is replaced-url
2565 [20:40:32] <jelly> jcb2016: presumably you don't have to browse anything other than /lib/firmware after live is booted, because the firmware has to be there to work at all
2566 [20:41:09] <jcb2016> ok
2567 [20:41:15] <jelly> is your goal to boot liveusb, or to install things, or what?
2568 [20:41:58] <jcb2016> jelly, i just want to boot the liveusb and have internet and browse and install etc.. just to do it i want to try debian on real hardware and not just virtualbox. virtualbox got me handy capped
2569 [20:42:06] <jcb2016> thanks Tenkawa
2570 [20:43:28] <jelly> then go and use that unofficial live image with firmware
2571 [20:45:33] *** Joins: Texou (~Texou@replaced-ip )
2572 [20:45:37] *** Joins: dez (uid92154@replaced-ip )
2573 [20:45:58] <jcb2016> jelly, last time i did that i booted the nonfree liveusb and nothing happend. i ran the installer and it worked looking for my firmware and connecting to wifi but it wanted to install debian. i don't want to install debian i just want to boot liveusb get wifi working and play around
2574 [20:46:25] <jcb2016> i will intsall debian when i get a real computer in the near future
2575 [20:46:40] *** Quits: flokuehn (~flokuehn@replaced-ip ) (Ping timeout: 255 seconds)
2576 [20:46:48] *** Quits: Adbray (~Adbray@replaced-ip ) (Remote host closed the connection)
2577 [20:47:09] *** Joins: Drain (~shaaf@replaced-ip )
2578 [20:47:23] <jelly> if the image for debian 9 did not work, and you're sure you've written it to usb correctly, try a live image for testing then
2579 [20:47:32] <jcb2016> ok
2580 [20:47:35] *** Quits: P1ersson (~P1ersson@replaced-ip ) (Ping timeout: 246 seconds)
2581 [20:47:42] *** Quits: Dra|n (~shaaf@replaced-ip ) (Ping timeout: 272 seconds)
2582 [20:47:46] <jelly> rufus and unetbootin make a mess out of debian's images
2583 [20:48:14] <jelly> you want to write the thing directly to whole-usb-stick-device
2584 [20:48:44] *** Joins: Olipro_ (~Olipro@replaced-ip )
2585 [20:48:44] *** Quits: Olipro_ (~Olipro@replaced-ip ) (Changing host)
2586 [20:48:44] *** Joins: Olipro_ (~Olipro@replaced-ip )
2587 [20:48:57] <jcb2016> im looking at replaced-url
2588 [20:49:43] <jelly> pick a weekly live and hope it works :-)
2589 [20:50:06] *** Quits: Olipro (~Olipro@replaced-ip ) (Ping timeout: 258 seconds)
2590 [20:50:06] *** Olipro_ is now known as Olipro
2591 [20:50:17] *** Quits: Zppix (uid182351@replaced-ip ) (Quit: Connection closed for inactivity)
2592 [20:50:38] *** Joins: aidansw (~aidansw@replaced-ip )
2593 [20:51:14] <jcb2016> ok thanks jelly
2594 [20:52:12] *** Quits: stefanc_diff (~stefanc_d@replaced-ip ) (Ping timeout: 250 seconds)
2595 [20:53:17] <jelly> !debian-next
2596 [20:53:17] <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.
2597 [20:53:31] <jelly> in case it works, you can ask further questions there
2598 [20:54:05] <jcb2016> ok
2599 [20:54:11] <jelly> or ask them here anyway, buster is in freeze and we might as well start answering uestions about it in the main channel
2600 [20:54:33] <jcb2016> jelly, if you don't like rufus or unetbootin what should i use in windows to burn the iso to usb?
2601 [20:54:39] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
2602 [20:54:42] <greycat> Yeah, it's been a general trend over the last few years that after a freeze, next-release questions start becoming gradually more accepted in #debian.
2603 [20:54:47] *** Joins: NullTerminator (~NullTermi@replaced-ip )
2604 [20:55:10] <greycat> Perhaps partly or mostly because people in #debian actually start *using* next-release around then.
2605 [20:55:34] <jelly> !win32diskimager
2606 [20:55:34] <dpkg> win32diskimager is much more reliable than <unetbootin> for copying ISO images to USB sticks and you can download it from replaced-url
2607 [20:55:39] <jelly> jcb2016: that thing I think
2608 [20:56:08] *** Joins: immortalinode (~marius@replaced-ip )
2609 [20:56:11] <jcb2016> thanks
2610 [20:56:24] <jelly> I have no idea if it still works on win10
2611 [20:56:44] *** Quits: immortalinode (~marius@replaced-ip ) (Client Quit)
2612 [20:57:02] *** Quits: neuraload (~marius@replaced-ip ) (Ping timeout: 246 seconds)
2613 [20:57:15] *** Joins: jmarsac (~jmarsac@replaced-ip )
2614 [20:58:07] *** Quits: Butt3rfly (~Butt3rfly@replaced-ip ) (Quit: and as the page turned, the words dived into my eyes and swam inside my brain like they had always lived there)
2615 [20:58:19] <jcb2016> it works i used it the other day
2616 [20:58:48] *** Quits: avalchev (~user@replaced-ip ) (Remote host closed the connection)
2617 [20:59:12] <Tenkawa> jelly: rufus has never went wrong for me once
2618 [20:59:41] *** Joins: Butt3rfly (~Butt3rfly@replaced-ip )
2619 [21:01:17] <jhutchins_wk> The fact that something has not broken for one person is not evidence of it's reliability.
2620 [21:01:36] <Tenkawa> or the opposite
2621 [21:02:01] *** Joins: toorop (~toorop@replaced-ip )
2622 [21:02:12] <Tenkawa> wheres the data?
2623 [21:02:12] *** Joins: Vizva (~Vizva@replaced-ip )
2624 [21:02:16] *** Joins: zegil (~zegil@replaced-ip )
2625 [21:02:16] *** Quits: zegil (~zegil@replaced-ip ) (Client Quit)
2626 [21:02:29] *** Joins: clemens3 (~clemens@replaced-ip )
2627 [21:04:13] <jhutchins_wk> Tenkawa: It's not really reversible, the fact that it does break in some circumstances and/or for some people is evidence of unreliability. Zero breakage in wide use indicates reliability.
2628 [21:04:47] <jhutchins_wk> Tenkawa: Data regarding rufus is annectdotal among Debian support people.
2629 [21:05:23] <jhutchins_wk> Tenkawa: We consistently see good results with win32diskimager so that's what we recommend.
2630 [21:06:11] <jhutchins_wk> Tenkawa: There are certain common errors people get with unetbootin so we don't recommend that. (Personally, I haven't ruled out user error on that, but if it's easy to make mistakes maybe it's a poor tool.)
2631 [21:06:12] <Tenkawa> and that in no way had anything to do with what I said.
2632 [21:06:21] <Tenkawa> I'm done speaking
2633 [21:06:33] <jcb2016> thanks jelly Tenkawa
2634 [21:06:36] *** Quits: jcb2016 (~jcb2016@replaced-ip ) (Quit: Leaving)
2635 [21:06:53] *** Parts: Tenkawa (~Tenkawa@replaced-ip ) ()
2636 [21:08:55] *** Joins: hbkfabio (~fabio@replaced-ip )
2637 [21:11:46] *** Joins: MScott (MScott@replaced-ip )
2638 [21:13:45] *** Joins: boycottg00gle (~user@replaced-ip )
2639 [21:14:00] *** Joins: GaneshR (~ganeshraj@replaced-ip )
2640 [21:14:34] *** Quits: upie2 (~upie@replaced-ip ) (Ping timeout: 255 seconds)
2641 [21:14:38] *** Quits: MScott (MScott@replaced-ip ) (Client Quit)
2642 [21:15:44] *** Joins: Darcidride (~Darcidrid@replaced-ip )
2643 [21:16:55] *** Joins: thelastjedi (~quassel@replaced-ip )
2644 [21:17:05] *** Quits: Tempesta (~Tempesta@replaced-ip ) (Read error: Connection reset by peer)
2645 [21:17:26] *** Joins: Tempesta (~Tempesta@replaced-ip )
2646 [21:17:26] *** Quits: Tempesta (~Tempesta@replaced-ip ) (Changing host)
2647 [21:17:26] *** Joins: Tempesta (~Tempesta@replaced-ip )
2648 [21:17:34] *** Quits: XmmD (~XmmD@replaced-ip ) (Remote host closed the connection)
2649 [21:18:58] *** Joins: XmmD (~XmmD@replaced-ip )
2650 [21:19:11] *** Quits: jez9999 (~user@replaced-ip ) ()
2651 [21:19:13] *** Quits: mtn (~mtn@replaced-ip ) (Quit: Konversation terminated!)
2652 [21:19:38] *** Quits: edgardoweb (~edgardowe@replaced-ip ) (Ping timeout: 245 seconds)
2653 [21:21:05] *** Joins: edgardoweb (~edgardowe@replaced-ip )
2654 [21:21:47] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 240 seconds)
2655 [21:21:53] *** Joins: aarwine (~aarwine@replaced-ip )
2656 [21:21:59] *** Joins: Elirips_ (~Elirips@replaced-ip )
2657 [21:22:27] *** Quits: Elirips_ (~Elirips@replaced-ip ) (Client Quit)
2658 [21:24:52] <aarwine> Does anyone know anything about a jessie-updates repo outage?
2659 [21:24:58] <aarwine> s/outage/issue/
2660 [21:25:16] *** Quits: dunkhel (~dunkhel@replaced-ip ) (Ping timeout: 250 seconds)
2661 [21:25:26] *** Quits: boycottg00gle (~user@replaced-ip ) (Remote host closed the connection)
2662 [21:25:33] <greycat> It no longer exists.
2663 [21:25:33] <jelly> !jessie-updates
2664 [21:25:34] <dpkg> jessie-updates was a suite providing updates to some packages (from <proposed-updates>) prior to a <point release>. All packages from jessie-updates were included in point releases. replaced-url
2665 [21:26:05] <jelly> !jessie sources.list
2666 [21:26:05] <dpkg> A suitable /etc/apt/sources.list for Debian 8 "Jessie" has two lines: "deb replaced-url
2667 [21:26:12] <jelly> aarwine: just comment it out
2668 [21:26:16] *** Joins: soee (~soee@replaced-ip )
2669 [21:26:59] <jelly> this could have been done better by ftp people, but... eh
2670 [21:28:27] <aarwine> are the updates merged into mainline jessie repo? where can I read more for future?
2671 [21:28:36] <aarwine> greycat: jelly: thanks :)
2672 [21:28:58] <greycat> 16:25 dpkg> jessie-updates was a suite providing updates to some packages (from <proposed-updates>) prior to a <point release>. All packages from jessie-updates were included in point releases.
2673 [21:29:33] <aarwine> ok, that makes sense
2674 [21:29:34] *** Quits: i1nfusion (~i1nfusion@replaced-ip ) (Remote host closed the connection)
2675 [21:30:08] *** Joins: i1nfusion (~i1nfusion@replaced-ip )
2676 [21:30:21] *** Joins: kreyren (~kreyren@replaced-ip )
2677 [21:31:34] *** Joins: faw (~faw@replaced-ip )
2678 [21:32:02] *** Quits: thelastjedi (~quassel@replaced-ip ) (Ping timeout: 272 seconds)
2679 [21:32:45] *** Joins: moosox (~telecom@replaced-ip )
2680 [21:33:09] *** Parts: moosox (~telecom@replaced-ip ) ()
2681 [21:33:35] *** Joins: Devoops (5ace5e7f@replaced-ip )
2682 [21:34:06] *** Joins: j0seph (~imj0seph@replaced-ip )
2683 [21:34:13] *** Joins: mnemonic (~semeion@replaced-ip )
2684 [21:34:30] *** Quits: semeion (~semeion@replaced-ip ) (Ping timeout: 246 seconds)
2685 [21:35:32] *** Joins: Ignacy (~Ignacy@replaced-ip )
2686 [21:36:26] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
2687 [21:37:09] *** Joins: tonyk (~tonyk@replaced-ip )
2688 [21:37:25] *** Quits: gorgabal (~gorgabal@replaced-ip ) (Quit: Leaving)
2689 [21:37:49] *** Quits: tonyk (~tonyk@replaced-ip ) (Client Quit)
2690 [21:37:51] *** Joins: Lxrowe (~Lxrowe@replaced-ip )
2691 [21:38:14] *** Joins: tonyk (~tonyk@replaced-ip )
2692 [21:39:22] *** Quits: Devoops (5ace5e7f@replaced-ip ) (Quit: Page closed)
2693 [21:40:27] *** Quits: Ryushin (chris@replaced-ip ) (Ping timeout: 240 seconds)
2694 [21:41:58] *** Quits: ae-35 (~ae-35@replaced-ip ) (Ping timeout: 246 seconds)
2695 [21:42:26] *** Joins: Dra|n (~shaaf@replaced-ip )
2696 [21:44:37] *** Joins: CaptainN (zelda@replaced-ip )
2697 [21:44:38] *** Quits: Drain (~shaaf@replaced-ip ) (Ping timeout: 250 seconds)
2698 [21:44:45] *** Quits: omonk (~omonk@replaced-ip ) (Quit: quit)
2699 [21:47:44] *** Joins: omonk (~omonk@replaced-ip )
2700 [21:48:50] *** Quits: j0seph (~imj0seph@replaced-ip ) (Remote host closed the connection)
2701 [21:49:54] *** Quits: SmearedBeard (~SmearedBe@replaced-ip ) (Ping timeout: 258 seconds)
2702 [21:51:05] *** Quits: Vizva (~Vizva@replaced-ip ) (Remote host closed the connection)
2703 [21:52:28] *** Quits: P67 (~irc@replaced-ip ) (Read error: Connection reset by peer)
2704 [21:55:31] *** Joins: thorr66 (~Thorr@replaced-ip )
2705 [21:56:33] *** Joins: aidansw (~aidansw@replaced-ip )
2706 [21:56:56] <aidansw> I was wondering, can I install a .deb to a removable drive?
2707 [21:57:10] *** Quits: jhutchins_wk (~jonathan@replaced-ip ) (Remote host closed the connection)
2708 [21:57:31] *** Joins: leorat (~rat@replaced-ip )
2709 [21:57:43] <greycat> does your removable drive have an installation of Debian on it?
2710 [21:58:12] <aidansw> haha
2711 [21:58:24] <greycat> so that's a "no"?
2712 [21:58:34] <aidansw> yeah, I see your point
2713 [21:58:49] <greycat> if it's just a disk and not a Debian then you can't "install" a Debian package on it, but you could extract the files out of one
2714 [21:59:12] <greycat> using dpkg -x, for example
2715 [21:59:23] <aidansw> Thanks I will have to see
2716 [21:59:43] <aidansw> As I am running a pc with 16 gb internal storage
2717 [21:59:54] <aidansw> but 32gb microsd
2718 [22:00:03] <jelly> ouch
2719 [22:00:25] <aidansw> yeah, this is what I get for fixing a chromebook
2720 [22:00:32] <aidansw> instead of just buying a laptop
2721 [22:01:01] <jelly> hopefully there's a sane filesystem type made just for flash, on that, not something like ext4
2722 [22:01:54] <jelly> because putting ext4 on cheap tiny flash and exercising it can make the flash die quickly
2723 [22:02:19] <aidansw> I'll keep that in mind
2724 [22:02:58] <aidansw> are you suggesting ntfs instead?
2725 [22:03:01] <tonyk> is there any filesystem good for flash?
2726 [22:03:18] <jelly> I'm suggesting investigating carefully
2727 [22:03:38] *** Quits: Dra|n (~shaaf@replaced-ip ) (Remote host closed the connection)
2728 [22:03:39] *** Joins: soee_ (~soee@replaced-ip )
2729 [22:03:42] *** Quits: soee (~soee@replaced-ip ) (Ping timeout: 250 seconds)
2730 [22:03:57] *** Joins: Dra|n (~shaaf@replaced-ip )
2731 [22:04:03] *** Parts: xVim (~xVim@replaced-ip ) ("Good night!")
2732 [22:04:06] *** Quits: minimal_life (~minimal_l@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2733 [22:04:28] <jelly> tonyk: yes but I don't remember which ones are both stable and still supported upstream and also available in debian
2734 [22:04:50] <jelly> eg. I'm pretty sure replaced-url
2735 [22:05:00] *** Quits: Raed (~Raed@replaced-ip ) (Quit: WeeChat 2.4)
2736 [22:05:03] <aidansw> xFAT seems to be pretty good
2737 [22:05:06] *** Quits: kreyren (~kreyren@replaced-ip ) (Remote host closed the connection)
2738 [22:05:17] <aidansw> exFAT*
2739 [22:05:24] <tonyk> whats that samsung one?
2740 [22:05:25] <aidansw> as that is what Android uses for sd cards
2741 [22:05:29] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 250 seconds)
2742 [22:05:32] <jelly> *fat does not have unix permissions and ownerships
2743 [22:05:52] *** Quits: f4cl3y (~f4cl3y@replaced-ip ) (Ping timeout: 250 seconds)
2744 [22:05:56] <aidansw> oh
2745 [22:06:05] <jelly> (or symlinks, or probably hardlinks)
2746 [22:06:21] <tonyk> F2FS, it was supposed to be for the linux kernel
2747 [22:06:29] <jelly> right
2748 [22:06:41] <aidansw> I don't see the issue with ext4, it is used for mobile device sd cards
2749 [22:06:51] <aidansw> which I'd presume would be throughly researched
2750 [22:06:56] *** Quits: ub (~ub@replaced-ip ) (Remote host closed the connection)
2751 [22:07:06] *** Joins: ub (~ubert@replaced-ip )
2752 [22:07:07] *** Joins: borisq (~boris@replaced-ip )
2753 [22:07:50] <jelly> using it for a couple hundred large media files and a dozen config files is somewhat differnet from running a linux distro
2754 [22:08:12] <aidansw> I know
2755 [22:08:18] <aidansw> I am not running the distro on it
2756 [22:08:34] <aidansw> I am running the distro on crouton on top of chromeos
2757 [22:08:43] <aidansw> the sd is just for files
2758 [22:09:13] *** Joins: Raed (~Raed@replaced-ip )
2759 [22:10:29] *** Quits: rsully (~rsully@replaced-ip ) (Quit: rsully)
2760 [22:11:24] *** Joins: Ryushin (chris@replaced-ip )
2761 [22:12:17] *** Quits: greycat (~wooledg@replaced-ip ) (Quit: They see me clawin' the love seat / They won't do nothin' 'cause I'm cute and furry)
2762 [22:12:53] *** Quits: yonder (~yonder@replaced-ip ) (Remote host closed the connection)
2763 [22:13:50] <aidansw> lol, greycats quit message
2764 [22:14:53] *** Quits: debsan (~debsan@replaced-ip ) (Remote host closed the connection)
2765 [22:15:19] *** Joins: debsan (~debsan@replaced-ip )
2766 [22:16:05] *** Quits: debsan (~debsan@replaced-ip ) (Changing host)
2767 [22:16:05] *** Joins: debsan (~debsan@replaced-ip )
2768 [22:17:04] *** Joins: winem_ (~quassel@replaced-ip )
2769 [22:18:04] *** Quits: krzych (krzych@replaced-ip ) (Remote host closed the connection)
2770 [22:18:08] *** Joins: bingbotboom (~bingbotbo@replaced-ip )
2771 [22:18:43] *** Joins: electro33 (uid613@replaced-ip )
2772 [22:19:11] *** Joins: volans (~volans@replaced-ip )
2773 [22:19:29] *** Quits: tombom_ (~tombom@replaced-ip ) (Quit: Leaving)
2774 [22:19:34] *** Joins: krzych (krzych@replaced-ip )
2775 [22:20:10] *** Quits: mandeep (~mandeep@replaced-ip ) (Ping timeout: 272 seconds)
2776 [22:20:35] *** Joins: endstille (~endstille@replaced-ip )
2777 [22:20:35] *** Quits: n_1-c_k (~n_1-c_k@replaced-ip ) (Read error: Connection reset by peer)
2778 [22:20:39] *** Quits: martian67 (~martian67@replaced-ip ) (Remote host closed the connection)
2779 [22:20:44] *** Quits: endstille (~endstille@replaced-ip ) (Client Quit)
2780 [22:20:56] *** Joins: martian67 (~martian67@replaced-ip )
2781 [22:21:32] *** Joins: n_1-c_k (~n_1-c_k@replaced-ip )
2782 [22:22:01] <aidansw> I just encourted a bizarre issue, although it may be with xfce4
2783 [22:22:17] <aidansw> but I can't type and move mouse at the same time..
2784 [22:22:22] <k-man> can we talk about oldstable here?
2785 [22:23:03] *** Joins: faw (~faw@replaced-ip )
2786 [22:23:14] <SerajewelKS> k-man: yeah. though not many people run it anymore so you may not get much response.
2787 [22:23:22] *** Joins: behanw (uid110099@replaced-ip )
2788 [22:23:33] <jelly> SerajewelKS: not many people _talk_ about it.
2789 [22:24:18] <jelly> grep Debian.8 /etc/ansible/hosts|wc -l ... 65
2790 [22:24:21] *** Quits: ongolaBoy (~ongolaBoy@replaced-ip ) (Quit: leaving)
2791 [22:24:59] <jelly> but let me make a guess
2792 [22:25:02] <jelly> !jessie-updates
2793 [22:25:03] <dpkg> jessie-updates was a suite providing updates to some packages (from <proposed-updates>) prior to a <point release>. All packages from jessie-updates were included in point releases. replaced-url
2794 [22:25:07] <jelly> !jessie sources.list
2795 [22:25:07] <dpkg> A suitable /etc/apt/sources.list for Debian 8 "Jessie" has two lines: "deb replaced-url
2796 [22:25:26] *** Quits: NullTerminator (~NullTermi@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2797 [22:25:27] *** Parts: volans (~volans@replaced-ip ) ("bazinga!")
2798 [22:26:35] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
2799 [22:26:54] *** Quits: allorder (~allorder@replaced-ip ) (Remote host closed the connection)
2800 [22:27:11] *** Joins: AlexPortable (uid7568@replaced-ip )
2801 [22:27:25] *** Joins: lastrodamo (~lastrodam@replaced-ip )
2802 [22:28:22] *** Joins: justinasvd (~james@replaced-ip )
2803 [22:28:25] <justinasvd> Morning, guys.
2804 [22:28:28] *** Joins: NullTerminator (~NullTermi@replaced-ip )
2805 [22:29:03] <justinasvd> I am running Gnome on current Debian testing. I am surprised that my Gnome runs on X11. I would have expected it to run on Wayland.
2806 [22:29:20] <justinasvd> What's the problem?
2807 [22:29:39] *** Joins: lek (~lek@replaced-ip )
2808 [22:30:07] <BCMM> justinasvd: does the default perhaps depend on the graphics driver used?
2809 [22:30:15] *** Joins: shibboleth (~shibbolet@replaced-ip )
2810 [22:30:18] <tonyk> there should be an option when logging in to run it on wayland
2811 [22:30:35] <justinasvd> I am using Intel drivers. Should be good in that regard.
2812 [22:30:50] *** Joins: Sollg3r (~ejakuk@replaced-ip )
2813 [22:31:03] <justinasvd> The newest Gnome on Buster no longer has Wayland option. Default is Wayland.
2814 [22:31:15] <tonyk> oh then idk
2815 [22:31:18] *** Parts: nulleip (~luiz@replaced-ip ) ()
2816 [22:31:20] <justinasvd> You have to specifically choose X11 there.
2817 [22:34:07] *** Quits: mspe (~mspe@replaced-ip ) (Ping timeout: 246 seconds)
2818 [22:34:29] *** Quits: hbkfabio (~fabio@replaced-ip ) (Quit: hbkfabio)
2819 [22:35:07] *** Quits: winem_ (~quassel@replaced-ip ) (Ping timeout: 240 seconds)
2820 [22:35:07] *** Joins: mspe (~mspe@replaced-ip )
2821 [22:35:59] <k-man> thanks SerajewelKS
2822 [22:36:23] *** Quits: Sollg3r (~ejakuk@replaced-ip ) (Remote host closed the connection)
2823 [22:36:37] *** Joins: Sollg3r (~ejakuk@replaced-ip )
2824 [22:36:40] <k-man> after old-stable repositories were moved to archive.debian.org, i updated my sources.list but I get this now: E: Release file for replaced-url
2825 [22:37:16] *** Quits: GaneshR (~ganeshraj@replaced-ip ) (Ping timeout: 272 seconds)
2826 [22:37:54] <jelly> !valid-until
2827 [22:37:54] <dpkg> rumour has it, valid-until is apt-get/aptitude -o Acquire::Check-Valid-Until=false ...
2828 [22:38:18] <jelly> k-man: ^ if you really need to keep that repo enabled
2829 [22:38:33] *** Quits: justinasvd (~james@replaced-ip ) (Quit: leaving)
2830 [22:39:11] *** Joins: dunkhel (~dunkhel@replaced-ip )
2831 [22:40:13] *** Joins: asterismo_l (~asterismo@replaced-ip )
2832 [22:43:55] *** Quits: zerotech (~zerotech@replaced-ip ) (Ping timeout: 246 seconds)
2833 [22:44:37] *** Quits: rpifan_ (~rpifan@replaced-ip ) (Remote host closed the connection)
2834 [22:44:39] *** Joins: djdduty (~djdduty@replaced-ip )
2835 [22:44:57] *** Joins: rpifan_ (~rpifan@replaced-ip )
2836 [22:46:57] *** Quits: CurryWurst (~CurryWurs@replaced-ip ) (Ping timeout: 268 seconds)
2837 [22:48:43] *** Joins: CurryWurst (~CurryWurs@replaced-ip )
2838 [22:48:45] *** Quits: Rosco2 (~RossGammo@replaced-ip ) (Quit: Leaving)
2839 [22:48:49] *** Quits: hipp (~hipp@replaced-ip ) (Quit: Leaving)
2840 [22:49:48] *** Joins: darkghost7 (~darkghost@replaced-ip )
2841 [22:49:49] *** Quits: ma27 (~ma27@replaced-ip ) (Quit: WeeChat 2.4)
2842 [22:49:55] *** Quits: Buliarou1 (~gypsydang@replaced-ip ) (Remote host closed the connection)
2843 [22:50:16] *** Quits: Buliarous (~gypsydang@replaced-ip ) (Remote host closed the connection)
2844 [22:50:24] *** Joins: ma27 (~ma27@replaced-ip )
2845 [22:50:48] *** Quits: thorr66 (~Thorr@replaced-ip ) (Quit: Leaving)
2846 [22:52:00] *** Joins: telcoguy____ (~telcoguy_@replaced-ip )
2847 [22:53:09] *** Quits: Poffer (~Poffer@replaced-ip ) (Quit: My iMac has gone to sleep. ZZZzzz…)
2848 [22:54:01] *** debhelper sets mode: +l 1573
2849 [22:55:15] *** Quits: Darcidride (~Darcidrid@replaced-ip ) (Remote host closed the connection)
2850 [22:55:25] *** Quits: soee_ (~soee@replaced-ip ) (Quit: Konversation terminated!)
2851 [22:56:52] *** Quits: NullTerminator (~NullTermi@replaced-ip ) (Quit: My MacBook has gone to sleep. ZZZzzz…)
2852 [22:57:22] *** Joins: Aussie_matt (~quassel@replaced-ip )
2853 [22:58:15] *** Quits: pringau (~pringau@replaced-ip ) (Remote host closed the connection)
2854 [22:58:32] <k-man> thanks jelly
2855 [22:59:03] *** Joins: volans (~volans@replaced-ip )
2856 [22:59:47] *** Joins: NullTerminator (~NullTermi@replaced-ip )
2857 [22:59:52] *** Quits: tonyk (~tonyk@replaced-ip ) (Quit: Client terminated!)
2858 [23:00:04] *** Joins: tonyk (~tonyk@replaced-ip )
2859 [23:00:10] *** Joins: bionade24 (~oskar@replaced-ip )
2860 [23:00:42] *** Quits: pingfloyd (~pingfloyd@replaced-ip ) (Quit: ☮ out)
2861 [23:01:56] *** mnemonic is now known as Guest78884
2862 [23:02:05] *** Joins: semeion (~semeion@replaced-ip )
2863 [23:02:32] *** Quits: phantomcircuit (~phantomci@replaced-ip ) (Ping timeout: 245 seconds)
2864 [23:03:19] *** Joins: Adbray (~Adbray@replaced-ip )
2865 [23:03:36] *** Quits: bingbotboom (~bingbotbo@replaced-ip ) (Ping timeout: 268 seconds)
2866 [23:03:45] *** Quits: mr_daemon (~supernaut@replaced-ip ) (Ping timeout: 252 seconds)
2867 [23:04:13] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 268 seconds)
2868 [23:04:37] *** Parts: volans (~volans@replaced-ip ) ("bazinga!")
2869 [23:04:49] *** Quits: bionade24 (~oskar@replaced-ip ) (Ping timeout: 255 seconds)
2870 [23:05:08] *** Quits: Guest78884 (~semeion@replaced-ip ) (Ping timeout: 272 seconds)
2871 [23:05:22] *** Joins: Buliarous (~gypsydang@replaced-ip )
2872 [23:06:03] *** Quits: jmarsac (~jmarsac@replaced-ip##) (Quit: Nettalk6 - ##replaced-url
2873 [23:06:04] *** Joins: phantomcircuit (~phantomci@replaced-ip )
2874 [23:06:19] *** Joins: aidansw (~aidansw@replaced-ip )
2875 [23:07:18] <aidansw> I have an issue with xinput settings that arises everytime I boot, and I can't change the defaults. Would my best option just write a script to run on boot?
2876 [23:07:57] *** Joins: martastain (~martastai@replaced-ip )
2877 [23:08:06] *** Joins: mandeep (~mandeep@replaced-ip )
2878 [23:09:05] *** Quits: scream_ (~scream@replaced-ip ) (Remote host closed the connection)
2879 [23:09:07] *** Quits: mandeep (~mandeep@replaced-ip ) (Remote host closed the connection)
2880 [23:10:22] *** Quits: jnavila (~jnavila@replaced-ip ) (Remote host closed the connection)
2881 [23:10:33] *** Quits: Makaveli7 (~Makaveli7@replaced-ip ) (Quit: Leaving)
2882 [23:11:12] *** Quits: dez (uid92154@replaced-ip ) (Quit: Connection closed for inactivity)
2883 [23:11:26] *** Quits: homaar (~homaar@replaced-ip ) (Ping timeout: 250 seconds)
2884 [23:11:35] *** Joins: mr_daemon (~supernaut@replaced-ip )
2885 [23:12:38] *** Quits: paulo (~paulo@replaced-ip ) (Quit: paulo)
2886 [23:13:08] *** Joins: faw (~faw@replaced-ip )
2887 [23:13:51] *** Joins: BrianG61UK_ (~BrianG61U@replaced-ip )
2888 [23:14:01] *** debhelper sets mode: +l 1567
2889 [23:16:32] *** Quits: BrianG61UK (~BrianG61U@replaced-ip ) (Ping timeout: 259 seconds)
2890 [23:17:21] *** Joins: jcb2016 (~jcb2016@replaced-ip )
2891 [23:17:31] *** Joins: BrianG61UK (~BrianG61U@replaced-ip )
2892 [23:18:05] <jcb2016> jelly, i booted up with buster and wifi worked automatically. why does a liveusb of buster have wifi work out of the box and stretch dosen't?
2893 [23:18:06] *** Quits: nibble_zero (~nibble_ze@replaced-ip ) (Quit: nibble_zero)
2894 [23:19:12] <jelly> jcb2016: "why are there bugs in software?"
2895 [23:19:29] <shibboleth> and?
2896 [23:19:36] <jelly> ¯\_(ツ)_/¯
2897 [23:19:38] <shibboleth> stretch is older?
2898 [23:19:38] *** Quits: ub (~ubert@replaced-ip ) (Ping timeout: 268 seconds)
2899 [23:19:40] <jcb2016> jelly, don't know.. i just know software has bugs and the devs need to fix them.
2900 [23:19:42] <shibboleth> older kernel?
2901 [23:19:52] <shibboleth> device support?
2902 [23:19:59] *** Quits: BrianG61UK_ (~BrianG61U@replaced-ip ) (Ping timeout: 258 seconds)
2903 [23:20:04] <shibboleth> "causality"?
2904 [23:21:27] *** Quits: chkbsd (~ucio@replaced-ip ) (Ping timeout: 240 seconds)
2905 [23:21:47] <jcb2016> i need to read up on the diff from stable and testing. testing seems to have what i need
2906 [23:23:18] <jcb2016> shibboleth, is that it? stretch is older. i thought older was newer since it is stable
2907 [23:24:30] *** Quits: Tom01 (~tom@replaced-ip ) (Remote host closed the connection)
2908 [23:24:58] *** Joins: chkbsd (~ucio@replaced-ip )
2909 [23:24:58] *** Quits: chkbsd (~ucio@replaced-ip ) (Changing host)
2910 [23:24:58] *** Joins: chkbsd (~ucio@replaced-ip )
2911 [23:27:15] *** Joins: sirfarquad (~sirfq@replaced-ip )
2912 [23:29:11] <jcb2016> well im excited :D
2913 [23:29:48] *** Joins: yonder (~yonder@replaced-ip )
2914 [23:31:21] *** Quits: woenx (~whoenx@replaced-ip ) (Remote host closed the connection)
2915 [23:31:42] <jcb2016> found a good guide on stable/testing replaced-url
2916 [23:31:55] *** Joins: karakedi (~eAC53C340@replaced-ip )
2917 [23:31:55] *** Quits: karakedi (~eAC53C340@replaced-ip ) (Changing host)
2918 [23:31:55] *** Joins: karakedi (~eAC53C340@replaced-ip )
2919 [23:32:47] *** Quits: jubo2 (~juboxi@replaced-ip ) (Quit: Konversation terminated!)
2920 [23:33:19] *** Quits: _0bitcount (~Big_Byte@replaced-ip ) (Quit: Leaving)
2921 [23:33:20] *** Quits: mase-tech (~mase-tech@replaced-ip ) (Quit: Leaving)
2922 [23:34:51] *** Quits: tmroland (~tmroland@replaced-ip ) (Quit: tmroland)
2923 [23:35:52] *** Quits: FightingFalcon (~ff@replaced-ip ) (Ping timeout: 255 seconds)
2924 [23:36:06] *** Quits: aidansw (~aidansw@replaced-ip ) (Quit: WeeChat 1.6)
2925 [23:37:02] *** Quits: Ignacy (~Ignacy@replaced-ip ) (Remote host closed the connection)
2926 [23:43:06] *** Joins: brokencycle (~brokencyc@replaced-ip )
2927 [23:44:01] *** debhelper sets mode: +l 1560
2928 [23:44:12] *** Quits: Piggy (~Piggy@replaced-ip ) (Quit: SOUIEEEE)
2929 [23:44:33] *** Joins: baloo (~baloo@replaced-ip )
2930 [23:44:45] *** Joins: Piggy (~Piggy@replaced-ip )
2931 [23:44:56] *** baloo is now known as Guest6058
2932 [23:45:25] <shibboleth> "this is why we can't have nice things"
2933 [23:46:30] *** Quits: lastrodamo (~lastrodam@replaced-ip ) (Quit: Quitte)
2934 [23:46:37] *** Quits: sussudio (~sussudio@replaced-ip ) (Quit: mreh.)
2935 [23:46:53] *** Quits: faw (~faw@replaced-ip ) (Ping timeout: 250 seconds)
2936 [23:47:13] *** Joins: sussudio (~sussudio@replaced-ip )
2937 [23:47:51] *** Joins: n4dir (~n4dir@replaced-ip )
2938 [23:47:52] *** Quits: towo` (~towo@replaced-ip ) (Remote host closed the connection)
2939 [23:48:42] *** Quits: martastain (~martastai@replaced-ip ) (Ping timeout: 268 seconds)
2940 [23:49:46] <jcb2016> shibboleth, how come?
2941 [23:50:20] *** Joins: maxxe (~maxxe@replaced-ip )
2942 [23:54:19] *** Quits: monkey-b (~monkey-b@replaced-ip ) (Ping timeout: 255 seconds)
2943 [23:54:42] *** Joins: monkey-b (~monkey-b@replaced-ip )
2944 [23:55:18] *** Joins: llucenic (~Thunderbi@replaced-ip )
2945 [23:55:38] *** Quits: dunkhel (~dunkhel@replaced-ip ) (Ping timeout: 250 seconds)
2946 [23:55:40] *** Quits: Spr1ng (~Spr1ng@replaced-ip ) (Quit: WeeChat 2.4)
2947 [23:57:11] <lilalaune> hi. i'm trying to unlock an encrypted partition the following command udisksctl unlock -b /dev/sda1 ..it asks me for a passphrase, which i enter. then i get this error message: No key available with this passphrase ..i'm sure the password is correct. (it should be the same i use when booting from that drive, right?)
2948 [23:58:49] *** Quits: ch0wn_ (~tmp@replaced-ip ) (Ping timeout: 255 seconds)
2949 [23:59:11] *** Quits: leorat (~rat@replaced-ip ) (Quit: leorat)
↑ top
context: nick names on moving displays as market values
#debian Freenode IRC channel closed on 2021-06-01
contact: a @ her0. be