--- Log opened Sat Jan 09 00:01:00 2021 |
00:11 | | Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has quit [Connection closed] |
00:31 | | Kindamoody is now known as Kindamoody[zZz] |
01:09 | <&ToxicFrog> | And it has its own REPL implementation that is actually worse than 5.1's in some ways, so~ |
02:19 | | catalyst [catalyst@Nightstar-ejd4sd.cable.virginm.net] has joined #code |
04:19 | | Degi_ [Degi@Nightstar-d91doj.pool.telefonica.de] has joined #code |
04:21 | | Degi [Degi@Nightstar-8mrvkq.pool.telefonica.de] has quit [Ping timeout: 121 seconds] |
04:21 | | Degi_ is now known as Degi |
04:38 | | Vorntastic [uid293981@Nightstar-h2b233.irccloud.com] has joined #code |
04:38 | | mode/#code [+qo Vorntastic Vorntastic] by ChanServ |
04:50 | | VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has quit [Connection closed] |
04:50 | | VirusJTG [VirusJTG@Nightstar-42s.jso.104.208.IP] has joined #code |
04:50 | | mode/#code [+ao VirusJTG VirusJTG] by ChanServ |
06:57 | | Netsplit Deepthought.Nightstar.Net <-> Krikkit.Nightstar.Net quits: @PinkFreud |
07:12 | | celticminstrel [celticminst@Nightstar-98j9a3.dsl.bell.ca] has quit [[NS] Quit: And lo! The computer falls into a deep sleep, to awake again some other day!] |
07:34 | | Netsplit over, joins: @PinkFreud |
07:59 | | Pink [uid208117@Nightstar-h2b233.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity] |
08:59 | | SmithKurosaki [uid215460@Nightstar-ed0oqj.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity] |
09:31 | | Kindamoody[zZz] is now known as Kindamoody |
11:08 | | Emmy [Emmy@Nightstar-l49opt.fixed.kpn.net] has joined #code |
12:38 | | Kindamoody is now known as Kindamoody|afk |
13:36 | | catalyst_ [catalyst@Nightstar-8na.bmi.132.82.IP] has joined #code |
13:39 | | catalyst [catalyst@Nightstar-ejd4sd.cable.virginm.net] has quit [Ping timeout: 121 seconds] |
14:47 | | celticminstrel [celticminst@Nightstar-98j9a3.dsl.bell.ca] has joined #code |
14:47 | | mode/#code [+o celticminstrel] by ChanServ |
14:52 | | SmithKurosaki [uid215460@Nightstar-ed0oqj.irccloud.com] has joined #code |
14:55 | | Vornicus [Vorn@ServerAdministrator.Nightstar.Net] has joined #code |
14:55 | | mode/#code [+qo Vornicus Vornicus] by ChanServ |
15:17 | | catalyst [catalyst@Nightstar-6dh.equ.132.82.IP] has joined #code |
15:20 | | catalyst_ [catalyst@Nightstar-8na.bmi.132.82.IP] has quit [Ping timeout: 121 seconds] |
16:18 | | Vorntastic [uid293981@Nightstar-h2b233.irccloud.com] has quit [[NS] Quit: Connection closed for inactivity] |
16:41 | | Kindamoody|afk is now known as Kindamoody |
17:04 | | crystalclaw [crystalclaw@Nightstar-12q9ui.xyz] has quit [Ping timeout: 121 seconds] |
17:37 | | crystalclaw [crystalclaw@Nightstar-12q9ui.xyz] has joined #code |
17:37 | | mode/#code [+o crystalclaw] by ChanServ |
19:28 | < Yossarian> | So I'm taking a look at my old hard disks. First up is 64GB SSD. It has NTFS boot partition and NTFS main partition... I think I want to clone the boot partition in case I want to check out the contents of the .img in a virtual machine. |
19:33 | < Yossarian> | to use `dd` to backup the entire disk (/dev/sdf - in this case) does block size matter? |
19:36 | <@Tamber> | I usually use something like bs=1M (or more like 8M) because istr it speeds it up because it's moving as much as it can per transfer? (even if not necessarily the full 1M/8M) |
19:48 | < Yossarian> | if I clone the entire disk including the boot partition and my bs size isn't a multiple of the boot partition... can that possibly exlcude some of the data? |
19:49 | <&[R]> | No |
19:49 | < Yossarian> | source disk (/dev/sdf) is a solid state drive, so... no CHS or internal CHS via LBA |
19:49 | <&[R]> | It's solely an efficiency thing |
19:50 | <&[R]> | You don't even need to use dd |
19:50 | <&[R]> | You can use cat or pv |
19:50 | | * [R] ends up using pv|ssh occasionally |
19:50 | < Yossarian> | the larger you increase bs, higher possibility you run into copying a bad piece of data from if? |
19:51 | <&[R]> | That's not a factor in the possibility of getting bad data |
19:51 | < Yossarian> | or not quite? |
19:51 | < Yossarian> | later on, I'm gonna see if I can boot the .img inside qemu |
19:52 | < Yossarian> | 1<&[R]> You can use cat or pv * [R] ends up using pv|ssh occasionally |
19:52 | < Yossarian> | How's that? |
19:52 | <&[R]> | pv /dev/sdf | ssh HOST cat \> sdf.img |
19:52 | <&[R]> | Or |
19:53 | <&[R]> | ssh HOST cat \> sdf.img < sdf.img (note which < and > is escaped and which isn't) |
19:54 | | catalyst [catalyst@Nightstar-6dh.equ.132.82.IP] has quit [[NS] Quit: -a- Connection Timed Out] |
19:54 | < Yossarian> | pv? had to install it real quick, interesting tool: ` pv -EE /dev/sdf > disk-image.img ` |
19:56 | < Yossarian> | very interesting multi-tool |
19:58 | | catalyst [catalyst@Nightstar-6dh.equ.132.82.IP] has joined #code |
20:09 | < Yossarian> | [R]: It seems like Intel 8 Series C220 SATA Controller in AHCI mode (rev 5) is hot swappable. |
20:12 | <&[R]> | Neat |
21:02 | < Yossarian> | [R]: some reason the partition table is messed up, might have been that way without my intervention... it's an older SSD |
21:04 | < Yossarian> | Is there a specific command line option for qemu to enable KVM or is it done by default? |
21:04 | < Yossarian> | processor has VT-x support |
21:47 | | catalyst_ [catalyst@Nightstar-jebb88.dab.02.net] has joined #code |
21:50 | | catalyst [catalyst@Nightstar-6dh.equ.132.82.IP] has quit [Connection closed] |
22:02 | <&[R]> | -enable-kvm or -kvm, depends on the version |
22:02 | <&[R]> | Yossarian: ^ |
23:50 | | Emmy [Emmy@Nightstar-l49opt.fixed.kpn.net] has quit [Ping timeout: 121 seconds] |
23:57 | | Kindamoody is now known as Kindamoody[zZz] |
--- Log closed Sun Jan 10 00:00:01 2021 |