Changes between Version 13 and Version 14 of OMD
- Timestamp:
- 05/24/22 04:18:18 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OMD
v13 v14 118 118 119 119 2. chmod +s "$(which ping)" from this [https://superuser.com/questions/1702163/ping-socket-operation-not-permitted-ubuntu-docker-image ref] 120 121 before change 122 {{{ 123 [root@BU debian]# ls -l /bin/ping 124 -rwxr-xr-x 1 root root 47704 Mar 9 2021 /bin/ping 125 }}} 126 after change 127 {{{ 128 [root@BU debian]# chmod +s "$(which ping)" 129 [root@BU debian]# which ping 130 /bin/ping 131 [root@BU debian]# ls -l /bin/ping 132 -rwsr-sr-x 1 root root 47704 Mar 9 2021 /bin/ping 133 }}}