Advertisement
Guest User

dont copy me

a guest
May 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. /bin All binaries needed for the boot process and to run the system in single-user mode, including essential commands such as cd, ls, etc.
  2. /boot Holds files used during the boot process along with the Linux kernel itself
  3. /dev Contains device files for all hardware devices on the system
  4. /etc Files used by application subsystems such as mail, the Oracle database, etc.
  5. /etc/init.d Contains various service startup scripts
  6. /etc/profile.d Holds application setup scripts run by /etc/profile upon login
  7. /etc/rc.d Contains subdirectories which contain run level specific scripts
  8. /etc/rc.d/init.d run level initialization scripts
  9. /etc/rc.d/rc?.d Where ‘?’ is a number corresponding to the default run level. Contains symbolic links to scripts which are in /etc/rc.d/init.d. for services to be started and stopped at the indicated run level.
  10. /etc/skel Holds example dot files used to populate a new user’s home directory.
  11. /etc/X11 Contains subdirectories and configuration files for the X Window system
  12. /home User home directories
  13. /lib Some shared library directories, files, and links
  14. /mnt The typical mount point for the user-mountable devices such as floppy drives and CDROM
  15. /proc Virtual file system that provides system statistics. It doesn’t contain real files but provides an interface to runtime system information.
  16. /root Home directory for the root user
  17. /sbin Commands used by the super user for system administrative functions
  18. /tmp A standard repository for temporary files created by applications and users.
  19. /usr Directory contains subdirectories with source code, programs, libraries, documentation, etc.
  20. /usr/bin Contains commands available to normal users
  21. /usr/bin/X11 X Window system binaries
  22. /usr/include Holds include files used in C programs
  23. /usr/share Contains shared directories for man files, info files, etc.
  24. /usr/lib Library files searched by the linker when programs are compiled
  25. /usr/local/bin Common executable application files local to this system
  26. /usr/sbin Commands used by the super user for system administrative functions
  27. /var Administrative files such as log files, locks, spool files, and temporary files used by various utilities
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement