00:03:46 Or at least it was, I suppose; the ISO image seems to be corrupted; maybe it was not properly cleared, somehow? 00:25:24 [[Eul]] M https://esolangs.org/w/index.php?diff=97080&oldid=83513 * Backspace * (-17) Better layout 00:30:54 [[Eul]] https://esolangs.org/w/index.php?diff=97081&oldid=97080 * Backspace * (+131) Corrected mistakes 00:32:28 [[Eul]] https://esolangs.org/w/index.php?diff=97082&oldid=97081 * Backspace * (+0) /* Operators */ 00:37:34 -!- Lord_of_Life has quit (Ping timeout: 272 seconds). 00:38:33 -!- Lord_of_Life has joined. 01:38:43 -!- tromp has joined. 01:39:15 -!- tromp has quit (Client Quit). 02:00:12 -!- Cale has quit (Read error: Connection reset by peer). 02:00:22 -!- Cale has joined. 02:11:18 -!- ^[ has joined. 02:39:59 [[Prime numbers generator]] N https://esolangs.org/w/index.php?oldid=97083 * PixelatedStarfish * (+52) Created page with "It generates prime numbers. 2 5 7 11 13 17 19 23 duh" 02:40:55 [[Prime numbers generator]] https://esolangs.org/w/index.php?diff=97084&oldid=97083 * PixelatedStarfish * (+28) 02:41:36 …I'd expect to already have a page about that 02:41:43 and the new page doesn't seem to be that informative 02:42:10 [[Prime numbers generator]] https://esolangs.org/w/index.php?diff=97085&oldid=97084 * PixelatedStarfish * (+0) 02:44:02 -!- zzo38 has quit (Ping timeout: 260 seconds). 03:05:36 [[Special:Log/newusers]] create * Gaetgu * New user account 03:08:16 [[Esolang:Introduce yourself]] M https://esolangs.org/w/index.php?diff=97086&oldid=96648 * Gaetgu * (+111) I added my introduction1 03:24:35 -!- zzo38 has joined. 03:25:48 I was unable to make a backup because it says the file is too big. 03:26:27 (Maybe I will need to make a incremental backup?) 03:31:11 -!- ais523 has quit (Quit: quit). 03:55:53 What methods can I use to better split the backups? 04:17:48 [[Circles]] https://esolangs.org/w/index.php?diff=97087&oldid=77774 * Photon Niko * (+185) implemented 04:22:35 [[User:Photon Niko]] https://esolangs.org/w/index.php?diff=97088&oldid=91959 * Photon Niko * (+86) 04:35:36 (I have more files on my computer than before, so it will not fit in one compressed tape archive file) 04:37:59 (Before, I could split them into /home, /var, and everything else. I might need more splitting, which might have another advantage too) 04:55:38 zzo38: I use my very old script https://www.perlmonks.com/?node_id=922051 , but with 7z compression rather than gzip since cpus and RAM are now faster 04:56:41 I have a custom config file for it to split the file system to various groups, so eg. there's one for /usr , one for /var , one for photos (since that's a significant part of the backup) etc 04:56:55 and that script splits each group to multiple archives of limited size 04:57:41 as I mentioned earlier, I use this in single user mode, and on a bind mount of the root fs 04:58:40 currently I use 512 megabyte as the nominal size, though the script doesn't enforce that as a strict size limit, just approximage 04:59:18 I used a sizes back when I wrote backups to CD or DVD 04:59:21 OK, I will look in a few minutes. The total used space on my computer is 17G (according to df -h) 05:00:01 (don't use that script on windows) 05:01:04 that said, I'm probably not the right person to ask about making backups 05:01:25 I need to first write them to a USB (which is formatted with FAT32) and then to DVDs from there. (I do this in order to avoid problem with the hard drive resetting during the DVD recording, or if the DVD recording is interrupted for any other reason, I already have the backup files to try again) 05:02:59 the setting that I use to make that script compress with 7z is: cmd tar -c --null --no-recursion -T - -b 20 | 7z a /mnt/safe/bkp/bkp/bkp1810/all/$v.t7z -t7z -mx=3 -si$v.tar ; echo >&2 05:03:17 but it's possible that xz would be a better choice than 7z 05:30:15 Do you backup the entire system? If so, should --numeric-owner be used? (I am using --numeric-owner for backups, since the user names will not be known until it is restored) 05:33:45 zzo38: I don't think so, because without --numeric-owner , tar writes both the name and number into the archive. you can use --numeric-owner when extracting if you want to ignore the name. 05:34:35 OK (my idea was to do both, but that would also work) 05:34:36 I make "full backups" with this script, it's not useful for incremental or differential backups, but I may exclude some directories in the config 05:36:47 also if I have to restore the entire system (as opposed to just restore something that I accidentally deleted), I'm more likely to ignore most of the full backup and just start by installing a fresh debian, then restore /home and other parts of the backup, rather than restoring a full system. however, I haven't had the need to full restore from these backups since I started to use this script. 05:37:29 this also means that the backup script is largely untested, since I don't know if I can actually restore from it correctly 05:37:39 I definitely haven't done a test restore 05:41:38 I also use --one-file-system, although I suppose that is unnecessary if you are mounting it yourself 05:46:18 zzo38: this script gives an explicit list of files to tar, which is why it uses --no-recursion -T - 05:46:27 so --one-file-system does nothing 05:47:21 O, yes, OK 05:47:38 however, the script does try to skip mount points 05:48:12 search for "skipping xdev" in the script to see where 05:49:00 if you want to include multiple mounted file systems then you can include them explicitly 05:49:43 however, you have to manually exclude the directory where you're writing the backups, the script won't do that for you 05:50:10 if it were included that is 05:52:03 also you have to make sure not to make differnt archive filenames coincide 05:52:04 [[Truth-machine]] https://esolangs.org/w/index.php?diff=97089&oldid=96336 * ColorfulGalaxy * (+17) 05:52:17 such as because you're on a filesystem that truncates names to short 05:52:53 and there are like a hundred other stupid ways how you can lose data of course 05:56:18 Can I change the owner of a mounted FAT32 file system? 05:57:05 zzo38: you can at mount time with mount options, I don't know if you can for an already mounted one 05:57:45 -!- perlbot has quit (Ping timeout: 248 seconds). 05:57:59 -!- simcop2387 has quit (Ping timeout: 240 seconds). 06:00:22 OK, I figured out how to do 06:05:16 -!- simcop2387 has joined. 06:06:47 -!- perlbot has joined. 06:10:50 It is too late now, so I will make the rest of the backups tomorrow, and clean the inside of the computer and replace the SATA cable. (I hope) 06:13:30 -!- definitelya has joined. 06:14:15 I can hear all sorts of noises, and many of them are not from the hard drive (they may be from the fan). Even while the computer was off, I heard some noises. I do not even know if all of them are from the computer; some might not be the computer at all. There are no problems with temperature sensors, voltage sensors, fan sensors, and SMART diagnostics, and no files are unreadable, but the hard drive does sometimes reset. 06:16:39 Would it be better to leave the computer on or turn it off? 06:17:08 (I also do not know if there are insects in this room, or anything else wrong with the room) 06:22:03 (Well, I will leave it on for now) 06:23:25 -!- tromp has joined. 06:52:37 Computer is making too much noise today and I will have to turn it off (it did not make this much noise yesterday, I think?) 06:52:40 -!- zzo38 has quit (Quit: zzo38). 07:48:15 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 08:41:19 b_jonas: by "objective" I meant that the goal is to guess the title of the page 08:45:30 the information is there, just "hidden" behind the "info" ...well what do we call these today, in the distant past they'd have been buttons 08:53:38 [[Dimensional]] M https://esolangs.org/w/index.php?diff=97090&oldid=95984 * NutronStar45 * (+7) 09:10:34 [[User talk:Bangyen]] https://esolangs.org/w/index.php?diff=97091&oldid=85378 * NutronStar45 * (+335) /* Dimensional details */ new section 09:10:59 [[User talk:Bangyen]] M https://esolangs.org/w/index.php?diff=97092&oldid=97091 * NutronStar45 * (-8) 09:19:32 -!- Sgeo has quit (Read error: Connection reset by peer). 09:35:21 -!- tech_exorcist has joined. 10:25:52 https://twitter.com/andrejbauer/status/1528318449038024704 10:52:26 [[Dimensional]] https://esolangs.org/w/index.php?diff=97093&oldid=97090 * NutronStar45 * (+2464) 10:52:47 [[Dimensional]] M https://esolangs.org/w/index.php?diff=97094&oldid=97093 * NutronStar45 * (-13) 11:33:42 -!- sprout has quit (Ping timeout: 260 seconds). 11:41:33 -!- sprout has joined. 11:46:22 -!- sprout has quit (Ping timeout: 272 seconds). 11:48:10 -!- sprout has joined. 11:49:42 [[Minimal assembly language]] https://esolangs.org/w/index.php?diff=97095&oldid=96641 * Peter * (+3) /* Files */ 11:57:54 -!- sprout has quit (Ping timeout: 244 seconds). 11:58:06 -!- sprout has joined. 12:14:10 -!- sprout has quit (Ping timeout: 260 seconds). 12:14:23 -!- sprout has joined. 12:31:20 zzo38: if there are noises, you should perhaps check if there's too much dust in the camera, especially in the CPU fan, and clean it if there is. also make sure there isn't a loose cable touching the blades of any fan. 12:32:40 And of course make sure that the strange noises aren't coming from a speaker because you're playing some audio. 13:25:30 [[ALWCIDFEC]] https://esolangs.org/w/index.php?diff=97096&oldid=96587 * ChuckEsoteric08 * (+90) 15:10:56 -!- sprout has quit (Ping timeout: 272 seconds). 15:18:36 -!- sprout has joined. 15:18:54 -!- tromp has joined. 15:25:30 -!- sprout has quit (Ping timeout: 260 seconds). 15:29:09 -!- tech_exorcist_ has joined. 15:37:29 -!- tech_exorcist has quit (Remote host closed the connection). 15:54:31 -!- sprout has joined. 15:56:46 -!- __monty__ has joined. 15:57:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 16:04:44 -!- tromp has joined. 16:12:28 -!- sprout has quit (Ping timeout: 246 seconds). 16:31:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 16:53:08 -!- tromp has joined. 17:03:14 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:14:18 [[Headass]] https://esolangs.org/w/index.php?diff=97097&oldid=97046 * TheJonyMyster * (-6) 17:15:32 -!- sprout has joined. 17:21:26 -!- perlbot has quit (Quit: ZNC 1.8.2+deb2+b1 - https://znc.in). 17:22:32 -!- sprout has quit (Ping timeout: 260 seconds). 17:23:28 -!- perlbot has joined. 17:48:03 -!- tromp has joined. 17:52:20 -!- tromp has quit (Ping timeout: 244 seconds). 17:54:55 -!- `alex has quit (Ping timeout: 244 seconds). 17:55:25 -!- laerling has quit (Ping timeout: 256 seconds). 18:06:48 -!- `alex has joined. 18:12:06 -!- laerling has joined. 18:49:54 -!- sprout has joined. 19:06:22 -!- sprout has quit (Ping timeout: 260 seconds). 19:34:09 -!- tech_exorcist_ has quit (Quit: Disconnecting). 19:58:51 -!- Sgeo has joined. 20:13:25 -!- Sgeo_ has joined. 20:15:58 -!- Sgeo has quit (Ping timeout: 244 seconds). 21:16:56 -!- definitelya has quit (Quit: h). 22:08:04 -!- __monty__ has quit (Quit: leaving). 23:06:16 -!- zzo38 has joined. 23:12:52 I cleaned the inside of the computer, and replaced the SATA cable; it is less loud now and the temperature is lower. I notice no other differences yet. 23:19:31 It seems that still sometimes the hard drive is resetting