code logs -> 2023 -> Sat, 06 May 2023< code.20230505.log - code.20230507.log >
--- Log opened Sat May 06 00:00:14 2023
00:43 macdjord [macdjord@Nightstar-gtlsth.dsl.bell.ca] has joined #code
00:43 mode/#code [+o macdjord] by ChanServ
01:05 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
01:05 mode/#code [+qo Vornicus Vornicus] by ChanServ
01:17 gizmore|2 [kvirc@Nightstar-qet7cq.dip0.t-ipconnect.de] has joined #code
01:19 gizmore [kvirc@Nightstar-lfppm2.dip0.t-ipconnect.de] has quit [Ping timeout: 121 seconds]
01:32 Emmy [Emmy@Nightstar-qo29c7.fixed.kpn.net] has quit [Ping timeout: 121 seconds]
01:57 Degi_ [Degi@Nightstar-ic2rgc.pool.telefonica.de] has joined #code
01:59 Degi [Degi@Nightstar-sv9ppf.pool.telefonica.de] has quit [Ping timeout: 121 seconds]
01:59 Degi_ is now known as Degi
04:31 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection closed]
05:13 macdjord [macdjord@Nightstar-gtlsth.dsl.bell.ca] has quit [Ping timeout: 121 seconds]
05:26 macdjord [macdjord@Nightstar-gtlsth.dsl.bell.ca] has joined #code
05:26 mode/#code [+o macdjord] by ChanServ
07:13 Kizor [a@Nightstar-nfsqa7.yok.fi] has quit [Ping timeout: 121 seconds]
09:03 Kindamoody[zZz] is now known as Kindamoody
09:18 Emmy [Emmy@Nightstar-qo29c7.fixed.kpn.net] has joined #code
09:40 Vorntastic [uid293981@Nightstar-phvupn.irccloud.com] has joined #code
09:40 mode/#code [+qo Vorntastic Vorntastic] by ChanServ
10:30 macdjord [macdjord@Nightstar-gtlsth.dsl.bell.ca] has quit [Ping timeout: 121 seconds]
11:32 abudhabi [abudhabi@Nightstar-1s65gm.adsl.tpnet.pl] has quit [Ping timeout: 121 seconds]
11:59 abudhabi [abudhabi@Nightstar-0hsd1c.internetdsl.tpnet.pl] has joined #code
12:04 Vorntastic [uid293981@Nightstar-phvupn.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity]
12:14 abudhabi [abudhabi@Nightstar-0hsd1c.internetdsl.tpnet.pl] has quit [Ping timeout: 121 seconds]
12:15 Kizor [a@Nightstar-nfsqa7.yok.fi] has joined #code
12:27 abudhabi [abudhabi@Nightstar-0hsd1c.internetdsl.tpnet.pl] has joined #code
12:54 Vorntastic [uid293981@Nightstar-phvupn.irccloud.com] has joined #code
12:54 mode/#code [+qo Vorntastic Vorntastic] by ChanServ
13:11 abudhabi [abudhabi@Nightstar-0hsd1c.internetdsl.tpnet.pl] has quit [Ping timeout: 121 seconds]
13:24 abudhabi [abudhabi@Nightstar-0hsd1c.internetdsl.tpnet.pl] has joined #code
13:41 himi [sjjf@Nightstar-v37cpe.internode.on.net] has quit [Ping timeout: 121 seconds]
13:45 himi [sjjf@Nightstar-v37cpe.internode.on.net] has joined #code
13:45 mode/#code [+o himi] by ChanServ
14:54 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code
14:54 mode/#code [+qo Vornicus Vornicus] by ChanServ
15:19 Kindamoody is now known as Kindamoody|out
16:36
< abudhabi>
It strikes me that github has become a replacement for the old-timey FTP servers offering miscellany in /pub.
16:45
<@celticminstrel>
XD
16:45
<@celticminstrel>
I keep my miscellany on my own hosting but yeah, it does seem like some people have started using GitHub like that.
16:48
< abudhabi>
I'm literally using it as a character sheet database for tabletop RPGs. 😄
17:12 Vorntastic [uid293981@Nightstar-phvupn.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity]
18:43
< abudhabi>
Hmmmm.
18:43
< abudhabi>
I'm pondering how to do a `dd` backup of my home folder.
18:45
< abudhabi>
Does this sort of thing need a live medium restart, or will it be sufficient to log out, then `dd` from a root prompt?
18:47
<&ToxicFrog>
You..can't dd a folder
18:47
<&ToxicFrog>
Like, the contents aren't going to be in a contiguous region of whatever block device the filesystem it's on lives on
18:48
<&ToxicFrog>
The closest you can come is a dd backup of the entire filesystem your home directory lives on
18:49
< abudhabi>
I suppose that also works, though it requires a bit more space.
18:59
< abudhabi>
OK. It also answers my question - this is a live medium run.
18:59 * abudhabi looks at usage analysis of /
18:59
< abudhabi>
Turns out /home accounts for almost 90% of this.
19:03
< abudhabi>
In other news: oh, wow. The PDF reader, after I've reinstalled the entire system, doesn't rescale the page when I click around in bookmarks.
19:03
< abudhabi>
Absolute QOL win.
19:03
< abudhabi>
I hated it when I was zoomed in at a readable scale, then I click a bookmark, and it rescales to show the entire damn page.
19:29
<&ToxicFrog>
Personally, I would take backups using a proper deduplicating backup system like borg -- dd is more for imaging entire devices where you need to be able to restore the filesystem in its entirety (or the entire disk, including the disklabel) to its original state
19:31
< abudhabi>
I kind of like the simplicity of "bring me everyone" that this solution brings. I am a grugbrain, and things being complicated isn't a positive.
19:32
<&ToxicFrog>
In that case -- switch to singleuser mode, umount home, dd it somewhere (possibly piped through a compression tool), mount it again.
19:32
<&McMartin>
I forget what the Linux equivalent of ditto is, but at the inside-the-filesystem level that would be the one.
19:32
< abudhabi>
ToxicFrog: Wait, what? You said above I can't just dd a folder.
19:33
<&McMartin>
(In that it copies files, preserves attributes, and replicates internal symlinks in a transportable way
19:33
<&McMartin>
I think TF is assuming that /home is its own volume
19:33
< abudhabi>
It's not. I've got /boot/efi and / and that's it.
19:36
<&ToxicFrog>
I was in fact assuming that. If /home is on the same filesystem as / you're going to have to boot a livesystem to do this safely.
20:07
< abudhabi>
Right.
20:58 macdjord [macdjord@Nightstar-gtlsth.dsl.bell.ca] has joined #code
20:58 mode/#code [+o macdjord] by ChanServ
21:08 Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection closed]
--- Log closed Sun May 07 00:00:15 2023
code logs -> 2023 -> Sat, 06 May 2023< code.20230505.log - code.20230507.log >

[ Latest log file ]