For instance `matrix-commander` message can easily be seen by others, as it takes time see [Benjamin-Loison/matrix-commander/issues/16](https://github.com/Benjamin-Loison/matrix-commander/issues/16).
Issue raised in the Unix Stack Exchange questions 454807 and 17164.
Issue raised in the Unix Stack Exchange questions [454807](https://unix.stackexchange.com/q/454807) and [17164](https://unix.stackexchange.com/q/17164).
does not return anything but seems to work as wanted.
mount | grep '^proc'
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime,hidepid=invisible)
```bash
mount /proc -o remount,hidepid=2
```
does not return anything but seems to work as wanted.
```bash
mount | grep '^proc'
```
```
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime,hidepid=invisible)
```
https://ubuntuforums.org/archive/index.php/t-2443493.html does not seem helpful.
Could give a try to `/etc/fstab`, see [the Super User question 1858984](https://superuser.com/q/1858984).
```bash
ls -l /initrd.img
```
```
lrwxrwxrwx 1 root root 30 Oct 6 11:33 /initrd.img -> boot/initrd.img-6.1.0-26-amd64
```
Source: [the Unix Stack Exchange answer 508555](https://unix.stackexchange.com/a/508555)
I don't want a crontab solution as the statement may not be the first one run, hence may leak some stuff on reboot.
Related to [Benjamin_Loison/cron/issues/21](https://codeberg.org/Benjamin_Loison/cron/issues/21).
-rw-r--r-- 1 root root 37M Oct 6 11:33 /boot/initrd.img-6.1.0-26-amd64
file /boot/initrd.img-6.1.0-26-amd64
/boot/initrd.img-6.1.0-26-amd64: gzip compressed data, was "mkinitramfs-MAIN_axY3t3", last modified: Sun Oct 6 09:33:46 2024, from Unix, original size modulo 2^32 134572032
```bash
ls -lh /boot/initrd.img-6.1.0-26-amd64
```
```
-rw-r--r-- 1 root root 37M Oct 6 11:33 /boot/initrd.img-6.1.0-26-amd64
```
```bash
file /boot/initrd.img-6.1.0-26-amd64
```
```
/boot/initrd.img-6.1.0-26-amd64: gzip compressed data, was "mkinitramfs-MAIN_axY3t3", last modified: Sun Oct 6 09:33:46 2024, from Unix, original size modulo 2^32 134572032
```
Command 'mkinitramfs' is available in the following places
* /sbin/mkinitramfs
* /usr/sbin/mkinitramfs
The command could not be located because '/usr/sbin:/sbin' is not included in the PATH environment variable.
This is most likely caused by the lack of administrative privileges associated with your user account.
mkinitramfs: command not found
```bash
mkinitramfs
```
<details>
<summary>Output:</summary>
```
Command 'mkinitramfs' is available in the following places
* /sbin/mkinitramfs
* /usr/sbin/mkinitramfs
The command could not be located because '/usr/sbin:/sbin' is not included in the PATH environment variable.
This is most likely caused by the lack of administrative privileges associated with your user account.
mkinitramfs: command not found
```
</details>
Usage: mkinitramfs [option]... -o outfile [version]
Options:
-c compress Override COMPRESS setting in initramfs.conf.
-d confdir Specify an alternative configuration directory.
-l level Override COMPRESSLEVEL setting in initramfs.conf.
-k Keep temporary directory used to make the image.
-o outfile Write to outfile.
-r root Override ROOT setting in initramfs.conf.
See mkinitramfs(8) for further details.
```bash
sudo mkinitramfs
```
<details>
<summary>Output:</summary>
```
Usage: mkinitramfs [option]... -o outfile [version]
Options:
-c compress Override COMPRESS setting in initramfs.conf.
-d confdir Specify an alternative configuration directory.
-l level Override COMPRESSLEVEL setting in initramfs.conf.
-k Keep temporary directory used to make the image.
-o outfile Write to outfile.
-r root Override ROOT setting in initramfs.conf.
See mkinitramfs(8) for further details.
```
</details>
[The Unix Stack Exchange answer 508437](https://unix.stackexchange.com/a/508437):
<details>
<summary><code>/etc/fstab</code>:</summary>
```
proc /proc proc defaults,hidepid=2 0 0
```
</details>
results at reboot in:
```bash
grep '^proc' /proc/mounts
```
```
proc /proc proc rw,relatime,hidepid=invisible 0 0
```
What are last 2 bits for? They seem to be respectively for backup and fsck (source: https://linuxconfig.org/how-fstab-works-introduction-to-the-etc-fstab-file-on-linux), so not relevant here.
Can see how much the computer (CPU, RAM, Internet and disk (per disk precise) used and bandwidth) is being used (possibly used by the system or other users, maybe showing the distribution by user would be interesting)? To figure out if running something will be efficient or wait someone else finishing something.
Can see how much the computer (CPU, RAM, Internet and disk (per disk precise) used and bandwidth) is being used (possibly used by the system or other users, maybe showing the distribution by user would be interesting)? To figure out if running something will be efficient or wait someone else finishing something.
<details>
<summary>See the messages:</summary>
```
-----BEGIN PGP MESSAGE-----
hF4DTQa9Wom5MBgSAQdAXw50dwh0aoeVOqECMb3fekyCi6t6NwWOAiOn9p1ncTsw
3TBIQr1j7AzksikBFrRPEOQb/BPd5mM/puKO7u39T/jfBebpZSTw/bpNfFQq7kbU
0sAeAWZcguRPq3AveuIXl5IJDvWO88jYi3BXh1dYXwmo3X54mZqIenKV+cZpn0SW
ZIBCsZiUKeYt/O7WNK1z3GVFCrFwkrAgjilSMzkZVgrjSSvaVCHWU4lIAkar6rOA
uZ/LK+RRkYfju1W7/2hhaqc8lMfC2yy17PRUUkVoZ+gM5Mrzp/bHjx3oNWc3T/yx
W3AZ2jEp/6bi7vL97Olr10x5PP3FBZZkb918DAONy/ky+TSZ5jjai02r37g2/ibN
PuvdOH6rxNORiPEx9hZrP3P0F8rVGrTBZAup72NKXBUp
=l5Wn
-----END PGP MESSAGE-----
```
</details>
Related to [Benjamin_Loison/NVIDIA/issues/3](https://codeberg.org/Benjamin_Loison/NVIDIA/issues/3).
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
For instance
matrix-commandermessage can easily be seen by others, as it takes time see Benjamin-Loison/matrix-commander/issues/16.DuckDuckGo and Google search Linux users to see commands executed by others.
Issue raised in the Unix Stack Exchange questions 454807 and 17164.
does not return anything but seems to work as wanted.
does not return anything.
DuckDuckGo and Google search Debian change mount proc options.
Output:
https://ubuntuforums.org/archive/index.php/t-2443493.html does not seem helpful.
Could give a try to
/etc/fstab, see the Super User question 1858984.DuckDuckGo search Debian hidepid on reboot.
Source: the Unix Stack Exchange answer 508555
I don't want a crontab solution as the statement may not be the first one run, hence may leak some stuff on reboot.
Related to Benjamin_Loison/cron/issues/21.
Output:
Output:
The Unix Stack Exchange answer 508437:
/etc/fstab:results at reboot in:
What are last 2 bits for? They seem to be respectively for backup and fsck (source: https://linuxconfig.org/how-fstab-works-introduction-to-the-etc-fstab-file-on-linux), so not relevant here.
/etc/fstab:DuckDuckGo search /etc/fstab syntax.
For reference
htopandps aux.Can see how much the computer (CPU, RAM, Internet and disk (per disk precise) used and bandwidth) is being used (possibly used by the system or other users, maybe showing the distribution by user would be interesting)? To figure out if running something will be efficient or wait someone else finishing something.
See the messages:
Related to Benjamin_Loison/NVIDIA/issues/3.
Would help Benjamin_Loison/openssh/issues/39.
Related to Benjamin_Loison/apptainer/issues/21.