HackerTrans
TopNewTrendsCommentsPastAskShowJobs

raimue

no profile record

Submissions

Show HN: Flaticron – mail notifications for pending Flatpak updates

github.com
1 points·by raimue·vor 2 Jahren·0 comments

A new Copilot key to kick off the year of AI-powered Windows PCs

blogs.windows.com
47 points·by raimue·vor 3 Jahren·85 comments

Apollo 11 vs. USB-C Chargers (2020)

forrestheller.com
502 points·by raimue·vor 3 Jahren·202 comments

Antarctic research base Vostok local time

mm.icann.org
8 points·by raimue·vor 3 Jahren·0 comments

A story of Docker, QEMU, and memfd_create()

raimue.blog
32 points·by raimue·vor 3 Jahren·3 comments

Microsoft SEC 8-K: IRS is seeking an additional tax payment of $29B

microsoft.gcs-web.com
215 points·by raimue·vor 3 Jahren·308 comments

comments

raimue
·vor 2 Jahren·discuss
I already explained above why the existence of linux/landlock.h is not sufficient. Why do you still question it? If you know a bit about system programming and how configure checks work, the change in itself is totally reasonable.
raimue
·vor 2 Jahren·discuss
Now we are running in circles. As you see in the git commit, the compile check was added because the existance of linux/landlock.h alone was not enough to check that the feature can be used.

This header defines the data types for the Linux kernel interface, but not how the syscall landlock_create_ruleset(2) will be issued. That is provided by libc either as a separate wrapper function (does not exist in glibc) or the implementation needs to use syscall(SYS_landlock_create_ruleset, ...), with the constant also being provided by libc. That is how it works for all syscalls and you won't be able to change this.
raimue
·vor 2 Jahren·discuss
Read the code of the check again. It mostly checks that the required SYS_* constants are defined to be able to use the syscalls. You can compile this on a system that does not have landlock enabled in the running kernel, but the libc (which imports the kernel system call interface) has to provide the syscall numbers.
raimue
·vor 3 Jahren·discuss
The question is whether you can expect this format to stay stable and reproducible across git versions. Remember the fallout from git 2.38 when the output of 'git archive' changed. Although for this backup use case it would just mean the next backup with a new format would make a full copy once.
raimue
·vor 3 Jahren·discuss
In the 2000s, Apple ran a big campaign with the phrase "I'm a Mac - I'm a PC" to highlight the difference.
raimue
·vor 3 Jahren·discuss
Back then, your suggestions were niche languages (and some still are) and are still not popular for embedded systems or network equipment. Large runtimes or huge static binaries are not suitable due to the memory and storage constraints.

You have to consider the surrounding ecosystem. Those interested in such languages are not necessarily those interested in contributing solutions to the problem space. Any project attempting to use such a language in OpenWrt would very likely not have survived until today.
raimue
·vor 3 Jahren·discuss
I think the confusion comes from the documentation where ssh(1) says that the command "is executed on the remote host instead of a login shell.". Which is true from the perspective of ssh(1) in the sense of the protocol. The client has no control over what the server does with that string.

However, sshd(8) clearly documents that it will always execute the login shell, even when a command has been passed. ("All commands are run under the user's login shell as specified in the system password database.")

Subsystems open secondary channels to communicate separately from stdin/stdout of the remote command. I used the X11 forwarding before to run a remote command with sudo without getting the password prompt interfering with the protocol: https://raimue.blog/2016/09/25/how-to-run-rsync-on-remote-ho...
raimue
·vor 3 Jahren·discuss
The author missed that sshd will always execute the user's shell and pass it the command with arguments as a `-c` argument. This means that the given command string will always be parsed by the remote shell. This is required to restrict users to certain commands with special shells like scponly or rbash.

When you keep in mind that the given command string will be parsed twice, first by your local shell and then again by the remote shell, it becomes clear why a running a remote ssh command behaves like this.
raimue
·vor 7 Jahren·discuss
The problem with IDLE is that it requires one TCP connection per folder you want to watch. The better alternative is NOTIFY, but in my experience, it is not as widely supported by server and client implementations.

https://tools.ietf.org/html/rfc5465