Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. /boot/vmlinuz # The Linux Kernel file.
  2. /dev/hda # Device file for the first IDE HDD (Hard Disk Drive)
  3. /dev/hdc # Device file for the IDE Cdrom, commonly
  4. /dev/null # A pseudo device, that don’t exist. Sometime garbage output is redirected to /dev/null, so that it gets lost, forever.
  5. /etc/bashrc # Contains system defaults and aliases used by bash shell.
  6. /etc/crontab # A shell script to run specified commands on a predefined time Interval.
  7. /etc/exports # Information of the file system available on network.
  8. /etc/fstab # Information of Disk Drive and their mount point.
  9. /etc/group # Information of Security Group.
  10. /etc/grub.conf # grub bootloader configuration file.
  11. /etc/init.d # Service startup Script.
  12. /etc/lilo.conf # lilo bootloader configuration file.
  13. /etc/hosts # Information of Ip addresses and corresponding host names.
  14. /etc/hosts.allow # List of hosts allowed to access services on the local machine.
  15. /etc/host.deny # List of hosts denied to access services on the local machine.
  16. /etc/inittab # INIT process and their interaction at various run level.
  17. /etc/issue # Allows to edit the pre-login message.
  18. /etc/modules.conf # Configuration files for system modules.
  19. /etc/motd # motd stands for Message Of The Day, The Message users gets upon login.
  20. /etc/mtab # Currently mounted blocks information.
  21. /etc/passwd # Contains password of system users in a shadow file, a security implementation.
  22. /etc/printcap # Printer Information
  23. /etc/profile # Bash shell defaults
  24. /etc/profile.d # Application script, executed after login.
  25. /etc/rc.d # Information about run level specific script.
  26. /etc/rc.d/init.d # Run Level Initialisation Script.
  27. /etc/resolv.conf # Domain Name Servers (DNS) being used by System.
  28. /etc/securetty # Terminal List, where root login is possible.
  29. /etc/skel # Script that populates new user home directory.
  30. /etc/termcap # An ASCII file that defines the behaviour of Terminal, console and printers.
  31. /etc/X11 # Configuration files of X-window System.
  32. /usr/bin # Normal user executable commands.
  33. /usr/bin/X11 # Binaries of X windows System.
  34. /usr/include # Contains include files used by ‘c‘ program.
  35. /usr/share # Shared directories of man files, info files, etc.
  36. /usr/lib # Library files which are required during program compilation.
  37. /usr/sbin # Commands for Super User, for System Administration.
  38. /proc/cpuinfo # CPU Information
  39. /proc/filesystems # File-system Information being used currently.
  40. /proc/interrupts # Information about the current interrupts being utilised currently.
  41. /proc/ioports # Contains all the Input/Output addresses used by devices on the server.
  42. /proc/meminfo # Memory Usages Information.
  43. /proc/modules # Currently using kernel module.
  44. /proc/mount # Mounted File-system Information.
  45. /proc/stat # Detailed Statistics of the current System.
  46. /proc/swaps # Swap File Information.
  47. /version # Linux Version Information.
  48. /var/log/lastlog # log of last boot process.
  49. /var/log/messages # log of messages produced by syslog daemon at boot.
  50. /var/log/wtmp # list login time and duration of each user on the system currently.
Add Comment
Please, Sign In to add comment