Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. $ pwd
  2. /etc/network
  3. $ cat ../inittab
  4. cat: can't open '../inittab': No such file or directory
  5.  
  6. $ cat /etc/inittab
  7. <inittab output ...>
  8.  
  9. $ ls ..
  10. default/ inputrc moduli random-seed ssh_config sshd_config
  11. dhcp/ issue mtab@ resolv.conf@ ssh_host_dsa_key ssl/
  12. fstab ld.so.conf network/ rsyslog.conf ssh_host_dsa_key.pub sysconfig/
  13. fstab.bak ld.so.conf.d/ nsswitch.conf rsyslog.d/ ssh_host_ecdsa_key ts.conf
  14. group logrotate.conf os-release screenrc* ssh_host_ecdsa_key.pub udev/
  15. hostname logrotate.d/ passwd securetty ssh_host_key
  16. hosts ltrace.conf passwd- services ssh_host_key.pub
  17. init.d/ memstat.conf profile shadow ssh_host_rsa_key
  18. inittab mke2fs.conf protocols shadow- ssh_host_rsa_key.pub
  19. $ cd / ; ls -lid /etc
  20. 1547 drwxr-xr-x 12 root root 0 Jan 1 00:49 /etc/
  21. $ cd /etc ; ls -lid .
  22. 1547 drwxr-xr-x 12 root root 0 Jan 1 00:49 ./
  23. $ cd /etc/network ; ls -lid ..
  24. 1547 drwxr-xr-x 12 root root 0 Jan 1 00:49 ../
  25.  
  26. $ cd usr/
  27. $ ls ../etc
  28. ls: ../etc: No such file or directory
  29. $ cd ../etc
  30. $ cd network/
  31. $ ls ..
  32. default/ inputrc moduli random-seed ssh_config sshd_config
  33. dhcp/ issue mtab@ resolv.conf@ ssh_host_dsa_key ssl/
  34. fstab ld.so.conf network/ rsyslog.conf ssh_host_dsa_key.pub sysconfig/
  35. fstab.bak ld.so.conf.d/ nsswitch.conf rsyslog.d/ ssh_host_ecdsa_key ts.conf
  36. group logrotate.conf os-release screenrc* ssh_host_ecdsa_key.pub udev/
  37. hostname logrotate.d/ passwd securetty ssh_host_key
  38. hosts ltrace.conf passwd- services ssh_host_key.pub
  39. init.d/ memstat.conf profile shadow ssh_host_rsa_key
  40. inittab mke2fs.conf protocols shadow- ssh_host_rsa_key.pub
  41. $ ls ../../usr
  42. ls: ../../usr: No such file or directory
  43.  
  44. $ df
  45. Filesystem Size Used Available Use% Mounted on
  46. devtmpfs 204.2M 0 204.2M 0% /dev
  47. tmpfs 251.7M 0 251.7M 0% /dev/shm
  48. tmpfs 251.7M 76.0K 251.6M 0% /tmp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement