F5F Stay Refreshed Software Operating Systems linuxAny tips to find important files on Linux?

linuxAny tips to find important files on Linux?

linuxAny tips to find important files on Linux?

M
mminchich
Member
149
01-05-2016, 12:20 AM
#1
Hello! That's a great question. If you're getting started with Linux, it helps to understand what files do and how they work. Focus on learning common system files like confirmation files, logs, and directories. Use tools like `ls`, `cat`, and `grep` to explore them. Reading documentation or tutorials will also be helpful. Let me know if you need more guidance!
M
mminchich
01-05-2016, 12:20 AM #1

Hello! That's a great question. If you're getting started with Linux, it helps to understand what files do and how they work. Focus on learning common system files like confirmation files, logs, and directories. Use tools like `ls`, `cat`, and `grep` to explore them. Reading documentation or tutorials will also be helpful. Let me know if you need more guidance!

Q
Qandii
Member
233
01-05-2016, 04:27 AM
#2
Configuration documents, etc., are typically kept in /etc. Many of these have manual references you can access via the `man` utility. For instance, your SSH server settings reside in /etc/sshd_config; to explore all options, run `man sshd_config`. If you need guidance on system files, the fstab manual is useful for filesystem details. For display settings (X11), consult /etc/xorg.conf. Nearly every file in /etc comes with its own manual entry. The `apropos` command can help locate relevant man pages, such as for configuration topics. Start with the manual for the manual itself: `man man`. For other essential files, Linux users often already have a grasp of most, if not all, of these components. The core areas include:

- /etc – configuration files (see above)
- /usr – static data (read-only for most users) holding installed programs
- /usr/bin – user applications, similar to Windows Program Files
- /usr/lib – program libraries (akin to "Program Files")
- /usr/share – shared data files like icons and graphics
- /usr/include – header files for C/C++ programs
- /bin, /lib – executables and libraries (like Windows Program Files)
- /sbin, /usr/sbin – system programs and kernel modules
- /boot – bootloader, kernel, and initrd files
- /var – system-wide data (changes frequently)
- /tmp – temporary files, erased on reboot
- /var/tmp – temporary storage for users
- /home – personal directories (e.g., user folders)
- ~/.config, ~/.cache, ~/.local/share – user-specific settings
- /root, /media, /mnt – root directories and mount points
- /var/log, /proc, /sys – system information and process data
- /dev – virtual device interfaces for hardware interaction

These directories support various services, from graphical apps to system utilities. The manual pages provide detailed explanations for each section. When working with Linux, it’s wise to review the relevant manual before making changes. Many GUI tools automatically handle mounting these areas, but manual setup is common for custom configurations.
Q
Qandii
01-05-2016, 04:27 AM #2

Configuration documents, etc., are typically kept in /etc. Many of these have manual references you can access via the `man` utility. For instance, your SSH server settings reside in /etc/sshd_config; to explore all options, run `man sshd_config`. If you need guidance on system files, the fstab manual is useful for filesystem details. For display settings (X11), consult /etc/xorg.conf. Nearly every file in /etc comes with its own manual entry. The `apropos` command can help locate relevant man pages, such as for configuration topics. Start with the manual for the manual itself: `man man`. For other essential files, Linux users often already have a grasp of most, if not all, of these components. The core areas include:

- /etc – configuration files (see above)
- /usr – static data (read-only for most users) holding installed programs
- /usr/bin – user applications, similar to Windows Program Files
- /usr/lib – program libraries (akin to "Program Files")
- /usr/share – shared data files like icons and graphics
- /usr/include – header files for C/C++ programs
- /bin, /lib – executables and libraries (like Windows Program Files)
- /sbin, /usr/sbin – system programs and kernel modules
- /boot – bootloader, kernel, and initrd files
- /var – system-wide data (changes frequently)
- /tmp – temporary files, erased on reboot
- /var/tmp – temporary storage for users
- /home – personal directories (e.g., user folders)
- ~/.config, ~/.cache, ~/.local/share – user-specific settings
- /root, /media, /mnt – root directories and mount points
- /var/log, /proc, /sys – system information and process data
- /dev – virtual device interfaces for hardware interaction

These directories support various services, from graphical apps to system utilities. The manual pages provide detailed explanations for each section. When working with Linux, it’s wise to review the relevant manual before making changes. Many GUI tools automatically handle mounting these areas, but manual setup is common for custom configurations.

D
dafunkyfish78
Junior Member
28
01-05-2016, 06:14 AM
#3
Sure, happy to help. Appreciate the kind words! It's been helpful to understand how to search files by name and extensions in Linux. Thanks for your detailed explanation!
D
dafunkyfish78
01-05-2016, 06:14 AM #3

Sure, happy to help. Appreciate the kind words! It's been helpful to understand how to search files by name and extensions in Linux. Thanks for your detailed explanation!