Viewing profile — khrbtxyz
khrbtxyz
HN member- Joined
- Wed, Jun 24, 2020, 7:45 PM UTC
- HN karma
- 24
- Public activity
- 30 items
- HN profile
- View on Hacker News ↗
About khrbtxyz
No profile information was provided.
Recent public activity
-
comment
Comment #48853576
It is required mainly for VMs that use virbr0 and NAT. Networking options like macvtap don't need it.
-
comment
Comment #45421712
https://github.com/mariuz/linux-0.01 might give you some ideas.
-
comment
Comment #44137698
https://en.wikipedia.org/wiki/Load-link/store-conditional
-
comment
Comment #43840245
Another bit of trivia about the shebang support in Linux is that is possible to build the kernel without it. https://github.com/torvalds/linux/blob/master/fs/Kconfig.bin... config …
-
comment
Comment #43449817
I don't quite understand what --exec does. If I leave out --exec from example 3, is it supposed to prevent bash from executing other programs? $ landrun --log-level debug --ro /usr…
-
comment
Comment #42282582
Large projects like the Linux kernel, which are mostly C, use the preprocessor in .S files quite heavily. Linux has hardly any .s files. ~/linux$ find . -name '*.s' ./arch/x86/kern…
-
comment
Comment #42136997
Function typedefs make this less confusing by removing awkward parentheses. e.g. typedef int read_block_fn(void *context, u8 *buf, unsigned int block, size_t len); https://github.c…
-
comment
Comment #42002734
Nested virtualization needs at least an M3 https://developer.apple.com/documentation/virtualization/vzg... This is the sad situation on my M2 MacBook Pro :( $ swift repl Welcome to…
-
comment
Comment #41973826
This is form-over-function, classic Apple. They don't want to give even the slightest impression that they are selling a wired mouse.
-
comment
Comment #40808285
From a Raspberry Pi 5: L2 cache line is 128 Vendor ID: ARM Model name: Cortex-A76 $ lscpu -C NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE L1d 64K 256K 4 Data…
-
comment
Comment #40764868
There's a Python library that has been quite reliable for me for local control. $ python3 Python 3.12.4 (main, Jun 6 2024, 18:26:44) [Clang 15.0.0 (clang-1500.3.9.4)] on darwin Typ…
-
comment
Comment #40735146
Yes, these commands have way too many options for anyone to remember. The commands are best wrapped up in a script. An ISO install is usually a manual process that can take time, b…
- comment
-
comment
Comment #40733521
Most Linux distributions ship ready-made VM images which are easier to turn into VMs. See https://news.ycombinator.com/item?id=40610332
-
comment
Comment #40724120
https://www.apple.com/shop/product/HMJU2ZM/A/belkin-ethernet...
-
comment
Comment #40703587
The exact same thing happens with GCC 12 with 32-bit MIPS. #include char msg[] = "hello, world!\n"; int main(void) { register int syscall_no asm("v0") = __NR_write; register int ar…
-
comment
Comment #40610332
There's also virt-install, which is part of the Virt Manager package. https://github.com/virt-manager/virt-manager/blob/main/man/v... curl --output-dir $HOME/.local/share/libvirt/i…
-
comment
Comment #40604448
Returning both the ULA and global addresses should be okay. This is what my OpenWRT router does without any special setup. wk1 is one of my local machines. $ dig +short wk1 AAAA @1…
-
comment
Comment #39872733
Found it in the readline manual https://tiswww.cwru.edu/php/chet/readline/readline.html#inde... insert-comment (M-#) Without a numeric argument, the value of the comment-begin vari…
-
comment
Comment #39871746
Is this something special you have set up on your Mac? I keep getting screenshots when I hit command-shift-3. https://support.apple.com/en-us/102646
-
comment
Comment #39398219
Shebang scripts are supported directly by the kernel via the exec family of system calls, so ld.so shouldn't be involved. https://github.com/torvalds/linux/blob/master/fs/Kconfig.b…
-
comment
Comment #39161415
I happen to see hostnames for several of my devices at home. root@OpenWrt:~# ubus call dhcp ipv6leases | jq -r '.device["br-lan"].leases[].hostname' cp1 syn wk1 furnace cp1 5c 4b8 …
-
comment
Comment #38187916
I’m on Ventura 13.6.1. Looks like your which is a shell built-in as well. Try ls /usr/bin/cd
-
comment
Comment #38187782
$ uname Darwin $ which cd /usr/bin/cd
-
comment
Comment #37353853
The FreeBSD qcow2 can be used directly without running an install. The one that I used was FreeBSD-13.2-RELEASE-arm64-aarch64.qcow2 For OpenBSD, the installer works after adjusting…