ssh.rst
changeset 2546 d1bb9d4ecb30
parent 2538 1f827ee55f7c
child 2554 c83fb8d3809f
equal deleted inserted replaced
2545:01700c00999d 2546:d1bb9d4ecb30
   215      userauth_pubkey: key type ssh-dss not in PubkeyAcceptedKeyTypes
   215      userauth_pubkey: key type ssh-dss not in PubkeyAcceptedKeyTypes
   216 
   216 
   217    add ``PubkeyAcceptedKeyTypes *`` or ``PubkeyAcceptedKeyTypes=+ssh-dss`` to
   217    add ``PubkeyAcceptedKeyTypes *`` or ``PubkeyAcceptedKeyTypes=+ssh-dss`` to
   218    ``/etc/ssh/sshd_config`` but DSS keys are depricated at all.
   218    ``/etc/ssh/sshd_config`` but DSS keys are depricated at all.
   219 
   219 
       
   220 Dealing with inode
       
   221 ==================
       
   222 
       
   223 Linux / UNIX file system API has a notion of inode: the address of file as a unique number.
       
   224 
       
   225 To list inodes for a file::
       
   226 
       
   227   stat $FILE
       
   228 
       
   229 To list inodes for a group of files::
       
   230 
       
   231   ls -i -l
       
   232 
       
   233 You can reference inode in ``find`` query::
       
   234 
       
   235   find . -inum $INODE -delete
       
   236