<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://beardedmaker.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Linux_Config_Files</id>
		<title>Linux Config Files - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://beardedmaker.com/wiki/index.php?action=history&amp;feed=atom&amp;title=Linux_Config_Files"/>
		<link rel="alternate" type="text/html" href="https://beardedmaker.com/wiki/index.php?title=Linux_Config_Files&amp;action=history"/>
		<updated>2026-04-26T14:27:30Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.27.4</generator>

	<entry>
		<id>https://beardedmaker.com/wiki/index.php?title=Linux_Config_Files&amp;diff=132&amp;oldid=prev</id>
		<title>Beard: Created page with &quot;&lt;pre&gt;/etc/issue - kernal info /etc/motd - greeting message for shell /etc/mtab - mounted devices, link of /proc/mounts. fix (rm /etc/mtab;ln -s /proc/mounts /etc/mtab) /etc/pa...&quot;</title>
		<link rel="alternate" type="text/html" href="https://beardedmaker.com/wiki/index.php?title=Linux_Config_Files&amp;diff=132&amp;oldid=prev"/>
				<updated>2016-02-29T21:10:49Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;pre&amp;gt;/etc/issue - kernal info /etc/motd - greeting message for shell /etc/mtab - mounted devices, link of /proc/mounts. fix (rm /etc/mtab;ln -s /proc/mounts /etc/mtab) /etc/pa...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;pre&amp;gt;/etc/issue - kernal info&lt;br /&gt;
/etc/motd - greeting message for shell&lt;br /&gt;
/etc/mtab - mounted devices, link of /proc/mounts. fix (rm /etc/mtab;ln -s /proc/mounts /etc/mtab)&lt;br /&gt;
/etc/passwd - users file&lt;br /&gt;
/etc/shadow - users hash file (name:password:last-mod:min:max:warn:inactive:expire:flag)&lt;br /&gt;
	name - login name	&lt;br /&gt;
	password - $1$=md5, $6$=sha512, $2a=blowfish, !=group password not available, *=disabled&lt;br /&gt;
	last-mod - days since password modified&lt;br /&gt;
	min - minimum days for password change&lt;br /&gt;
	max - maximum days for password change&lt;br /&gt;
	warn - days to warn before password expires&lt;br /&gt;
	inactive - days after expiration for account to be locked&lt;br /&gt;
	expire - expiration date in days since 1/1/1970&lt;br /&gt;
/etc/profile - script to run when shell is opened&lt;br /&gt;
/etc/bashrc - settings for non login shell&lt;br /&gt;
/etc/fstab - filesystem config&lt;br /&gt;
	&amp;lt;device&amp;gt; &amp;lt;mountpoint&amp;gt; &amp;lt;type&amp;gt; &amp;lt;options&amp;gt; 0 0&lt;br /&gt;
	device examples - &amp;quot;/dev/dsa1&amp;quot; or &amp;quot;UUID=&amp;lt;uuid&amp;gt;&amp;quot; or &amp;quot;LABEL=&amp;lt;label&amp;gt;&amp;quot;&lt;br /&gt;
	options:&lt;br /&gt;
		ro - read-only&lt;br /&gt;
		rw - read/write&lt;br /&gt;
		dev - interpret special devices on filesystem&lt;br /&gt;
		nodev - do not interpret devices&lt;br /&gt;
		exec - allow execute&lt;br /&gt;
		noexec - do not allow execute&lt;br /&gt;
		auto - automount&lt;br /&gt;
		noauto - no automount&lt;br /&gt;
		user - allow normal users&lt;br /&gt;
		nouser - root only&lt;br /&gt;
		guest - allow guest access&lt;br /&gt;
		exec - allow execute&lt;br /&gt;
		noexec - no execute&lt;br /&gt;
		suid - set uid&lt;br /&gt;
		nosuid - do not set uid&lt;br /&gt;
		sync - write as copying&lt;br /&gt;
		async - do not write as copying&lt;br /&gt;
		defaults - used defaults (rw,suid,dev,exec,auto,nouser,async)&lt;br /&gt;
		uid=&amp;lt;name or #&amp;gt; - set uid&lt;br /&gt;
		guid=&amp;lt;name or #&amp;gt; - set guid&lt;br /&gt;
		username=&amp;lt;name&amp;gt; = username for filesystem&lt;br /&gt;
		password=&amp;lt;pass&amp;gt; - password&lt;br /&gt;
		credentials=&amp;lt;file&amp;gt; - give credentials file instead of username and password&lt;br /&gt;
			format:	username=&amp;lt;name&amp;gt;&lt;br /&gt;
				password=&amp;lt;pass&amp;gt;&lt;br /&gt;
/etc/group - group config (group-name:password:group-ID:login-name-list)&lt;br /&gt;
/etc/hosts - IP and host name of hosts on the network&lt;br /&gt;
/etc/hostname - hostname of the system&lt;br /&gt;
/etc/services - services on the system&lt;br /&gt;
/etc/aliases - username aliases&lt;br /&gt;
/etc/sysconfig/network-scripts/ifcfg-&amp;lt;interface&amp;gt; - interface configurations&lt;br /&gt;
	DEVICE=&amp;lt;int&amp;gt;&lt;br /&gt;
	BOOTPROTO=&amp;lt;none/dhcp/bootp&amp;gt;&lt;br /&gt;
	ONBOOT=&amp;lt;yes/no&amp;gt; - activate on boot&lt;br /&gt;
	NETWORK=&amp;lt;addr&amp;gt;&lt;br /&gt;
	IPADDR=&amp;lt;addr&amp;gt;&lt;br /&gt;
	NETMASK=&amp;lt;mask&amp;gt;&lt;br /&gt;
	DHCP_HOSTNAME=&amp;lt;name&amp;gt; - only if dhcp server requires it (usually not)&lt;br /&gt;
	DNS1=&amp;lt;addr&amp;gt;&lt;br /&gt;
	DNS2=&amp;lt;addr&amp;gt;&lt;br /&gt;
	GATEWAY=&amp;lt;addr&amp;gt;&lt;br /&gt;
	MACADDR=&amp;lt;macaddr&amp;gt;&lt;br /&gt;
	SRCADDR=&amp;lt;addr&amp;gt; - source address for outgoing packets&lt;br /&gt;
	USERCTL=&amp;lt;yes/no&amp;gt; - yes allows non-root user control&lt;br /&gt;
/etc/sysconfig/network - contains network/hostname/domainname directives&lt;br /&gt;
	NETWORKING=&amp;lt;yes/no&amp;gt;&lt;br /&gt;
	HOSTNAME=&amp;lt;name or fqdn&amp;gt;&lt;br /&gt;
	DOMAINNAME=&amp;lt;name&amp;gt;&lt;br /&gt;
	GATEWAY=&amp;lt;addr&amp;gt;&lt;br /&gt;
	GATEWAYDEV=&amp;lt;interface&amp;gt; - use if multiple interfaces on same subnet&lt;br /&gt;
	NISDOMAIN=&amp;lt;name&amp;gt; - NIS domain&lt;br /&gt;
/etc/network/interfaces - interface configurations&lt;br /&gt;
	auto lo&lt;br /&gt;
	iface lo inet loopback&lt;br /&gt;
	auto eth0&lt;br /&gt;
	iface eth0 inet static #or dhcp&lt;br /&gt;
	address &amp;lt;addr&amp;gt;&lt;br /&gt;
	netmask &amp;lt;mask&amp;gt;&lt;br /&gt;
	gateway &amp;lt;gate&amp;gt;&lt;br /&gt;
	network &amp;lt;addr&amp;gt;&lt;br /&gt;
	broadcast &amp;lt;addr&amp;gt;&lt;br /&gt;
	dns-nameservers &amp;lt;addr&amp;gt;&lt;br /&gt;
	dns-search &amp;lt;domain&amp;gt;&lt;br /&gt;
	dns-domain &amp;lt;domain&amp;gt;&lt;br /&gt;
	metric &amp;lt;int&amp;gt; - metric for gateway&lt;br /&gt;
	hwaddress &amp;lt;mac&amp;gt;&lt;br /&gt;
	pre-up /path/script&lt;br /&gt;
	post-down /path/script&lt;br /&gt;
/etc/hostname - contains hostname in debian.&lt;br /&gt;
	run /etc/init.d/hostname.sh sets it. (it runs during boot also).&lt;br /&gt;
	In red hat, a line &amp;quot;HOSTNAME=name&amp;quot; may be in /etc/sysconfig/network.&lt;br /&gt;
	Hostname in config files must match entry in /etc/hosts.&lt;br /&gt;
/etc/inittab - init configurations and default runlevel&lt;br /&gt;
/etc/sudoers - sudoers file&lt;br /&gt;
	username ALL=(ALL) ALL&lt;br /&gt;
	%group ALL=(ALL) NOPASSWD: ALL&lt;br /&gt;
	%group hostname_or_ip=(as_user) OPTION:/bin/command1,/bin/command2 arg,/bin/command3&lt;br /&gt;
/etc/cups/printers.conf - printers&lt;br /&gt;
/etc/cups/cupsd.conf - cups daemon config&lt;br /&gt;
/usr/share/cups/model - directory containing ppd files&lt;br /&gt;
/etc/samba/smbusers - smb users&lt;br /&gt;
/etc/samba/smbpasswd - smb passwords (sometimes in different location)&lt;br /&gt;
/etc/yum.conf - yum configuration&lt;br /&gt;
/etc/yum.repos.d/*.repo - files containing repos&lt;br /&gt;
/etc/yum/yum-updatesd.conf - yum-updatesd config&lt;br /&gt;
/etc/logrotate.conf - logrotate config&lt;br /&gt;
/etc/resolv.conf - dns config&lt;br /&gt;
/etc/httpd/conf - directory of config files for apache&lt;br /&gt;
/etc/named.conf - BIND DNS config&lt;br /&gt;
/etc/bind - BIND config folder in Debian&lt;br /&gt;
/etc/rndc.key AND /etc/rndc.conf - name authentication for BIND&lt;br /&gt;
/etc/vsftpd/vsftpd.conf&lt;br /&gt;
/etc/grub.d/05_debian_theme - The WALLPAPER line controls grub background&lt;br /&gt;
/etc/default/grub - grub config. GRUB_CMDLINE_LINUX_DEFAULT line controls splash screen. =&amp;quot;quiet splash&amp;quot; OR =&amp;quot;&amp;quot;. use update-grub.&lt;br /&gt;
/etc/modules - default modules (sometimes modules.conf)&lt;br /&gt;
/etc/modprobe.d/blacklist.conf - module blacklist&lt;br /&gt;
/etc/logrotate.conf - log rotation config&lt;br /&gt;
/etc/exports - contains directories available in NFS&lt;br /&gt;
/etc/default/tftpd-hpa - configuration for tftpd&lt;br /&gt;
/etc/ssh/ssh_config - ssh config&lt;br /&gt;
/etc/xinetd.conf&lt;br /&gt;
/etc/xinetd.d - directory containing files named after daemons run by xinetd. file contains line like &amp;quot;disable = no&amp;quot;&lt;br /&gt;
/selinux&lt;br /&gt;
/etc/selinux/config&lt;br /&gt;
~/.ssh - ssh user files&lt;br /&gt;
/etc/ssh/ssh_known_hosts - hosts known to ssh&lt;br /&gt;
~/.local/share/Trash - trash directory&lt;br /&gt;
~/.config/chromium/Default - chromium config&lt;br /&gt;
~/.config/google-chrome/Default - chrome config&lt;br /&gt;
~/.gnome2/nautilus-scripts/ - place scripts in this directory to make them available in context menu&lt;br /&gt;
	when you right-click file(s), the URI(s) of the file(s) are put in a variable called $NAUTILUS_SCRIPT_SELECTED_URIS&lt;br /&gt;
&lt;br /&gt;
/etc/rc.d/ - init scripts and config&lt;br /&gt;
	can put scripts in init.d then put link in /etc/rc.d/rcX.d where X is the runlevel at which the scripts will be run.&lt;br /&gt;
	links in rcX.d have a K (kill) or S (start) then a number for the order in which to start/kill. ie S04httpd&lt;br /&gt;
	rc.local - custom startup script. run commands in background so they dont hang up the boot process.&lt;br /&gt;
	/etc/init.d is link of /etc/rc.d/init.d&lt;br /&gt;
	&lt;br /&gt;
/proc - numbered directories pertain to job numbers&lt;br /&gt;
/proc/net/arp - arp table&lt;br /&gt;
/var/cache/apt/archives - deb package dump&lt;br /&gt;
/etc/apt/sources.list - deb repo list&lt;br /&gt;
/var/cache/yum - yum cache&lt;br /&gt;
/var/lib/tftpboot - default directory for tftpd&lt;br /&gt;
&lt;br /&gt;
/boot/grub/grub.conf - grub configuration file&lt;br /&gt;
/boot/grub/menu.lst - some boot configurations.&lt;br /&gt;
	kernel line options:&lt;br /&gt;
		single - single user mode&lt;br /&gt;
		rhgb - run kernel splash&lt;br /&gt;
		quiet&lt;br /&gt;
		splash&lt;br /&gt;
		nosplash&lt;br /&gt;
		verbose&lt;br /&gt;
		nomodeset&lt;br /&gt;
		vga=XXX -  change screen resolution according to table&lt;br /&gt;
		Colours   640x480 800x600 1024x768 1280x1024 1600x1200&lt;br /&gt;
		--------+---------------------------------------------&lt;br /&gt;
		256     |   769     771      773      775       796&lt;br /&gt;
		32,768  |   784     787      790      793       797&lt;br /&gt;
		65,536  |   785     788      791      794       798&lt;br /&gt;
		16.8M   |   786     789      792      795       799&lt;br /&gt;
&lt;br /&gt;
runlevels:&lt;br /&gt;
	0 halt&lt;br /&gt;
	1 1user text&lt;br /&gt;
	2 multiuser text&lt;br /&gt;
	3 multiuser text, network&lt;br /&gt;
	4 user defined&lt;br /&gt;
	5 multiuser with x&lt;br /&gt;
	6 reboot&lt;br /&gt;
&lt;br /&gt;
/usr/share/mdm/themes/ - login screen themes for Mate (mdm)&lt;br /&gt;
/usr/share/backgrounds/linuxmint/default_background.jpg - background for lock screen on mint&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beard</name></author>	</entry>

	</feed>