Removed unrelated data.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 07 Feb 2023 00:39:25 +0200
changeset 2554 c83fb8d3809f
parent 2553 11f741239f16
child 2555 70383fa8bf12
Removed unrelated data.
ssh.rst
--- a/ssh.rst	Sun Jan 22 17:27:27 2023 +0200
+++ b/ssh.rst	Tue Feb 07 00:39:25 2023 +0200
@@ -217,20 +217,3 @@
    add ``PubkeyAcceptedKeyTypes *`` or ``PubkeyAcceptedKeyTypes=+ssh-dss`` to
    ``/etc/ssh/sshd_config`` but DSS keys are depricated at all.
 
-Dealing with inode
-==================
-
-Linux / UNIX file system API has a notion of inode: the address of file as a unique number.
-
-To list inodes for a file::
-
-  stat $FILE
-
-To list inodes for a group of files::
-
-  ls -i -l
-
-You can reference inode in ``find`` query::
-
-  find . -inum $INODE -delete
-