Difference between revisions of "Conf.d"

From GhostBSD Wiki
Jump to: navigation, search
(Created page with "{{Welcome}} ==Introduction== Here we will find all scripts to run OpenRC on GhostBSD. ==Content== {|class="wikitable" style="width:96.5%;background:#FFFFFF; border:2px s...")
 
(Content)
Line 14: Line 14:
 
! scope="col" style="width: 350px;"|'''Description'''
 
! scope="col" style="width: 350px;"|'''Description'''
 
|-
 
|-
|/etc/conf.d/bootmisc||
+
|/etc/conf.d/bootmisc||Wipe the tmp paths completely or just selectively remove known; Write the initial dmesg log into /var/log/dmesg after boot; Save the previous dmesg log to dmesg.old
 
|-
 
|-
|/etc/conf.d/fsck||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?fsck(8) fsck]||file system consistency check and interactive repair
 
|-
 
|-
|/etc/conf.d/ipfw||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=ipfw&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html ipfw]||User interface for firewall, traffic shaper, packet scheduler,
 +
in-kernel NAT.
 
|-
 
|-
|/etc/conf.d/ldconfig||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=ldconfig&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html ldconfig]||configure the shared library cache
 
|-
 
|-
|/etc/conf.d/localmount||
+
|/etc/conf.d/localmount||Stop the unmounting of certain points. This could be useful for some NFS related work. Mark certain mount points as critical.
 
|-
 
|-
|/etc/conf.d/moused||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=moused&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html moused]||pass mouse data to the console driver
 
|-
 
|-
|/etc/conf.d/netmount||
+
|/etc/conf.d/netmount||You will need to set the dependencies in the netmount script to match the network configuration tools you are using. This should be done in this file by following the examples below, and not by changing the service script itself.
 
|-
 
|-
|/etc/conf.d/powerd||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=powerd&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html powerd]||system power control utility
 
|-
 
|-
|/etc/conf.d/rarpd||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=rarpd&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html rarpd]||reverse ARP daemon
 
|-
 
|-
|/etc/conf.d/savecore||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=savecore&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html savecore]||save a core dump of the operating system
 
|-
 
|-
|/etc/conf.d/staticroute||
+
|/etc/conf.d/staticroute||Static routes are defined differently depending on your operating system, so please be sure to use the correct syntax. Do not use this file to define the default route. In all settings, multiple routes should be separated using ; or new lines.
 
|-
 
|-
|/etc/conf.d/swap||
+
|/etc/conf.d/swap||If you are only using local swap partitions, you should not change this file. Otherwise, you need to uncomment the below rc_before line followed by the appropriate rc_need line.
 
|-
 
|-
|/etc/conf.d/syscons||
+
|/etc/conf.d/[https://www.freebsd.org/cgi/man.cgi?query=syscons&apropos=0&sektion=0&manpath=FreeBSD+12.1-RELEASE+and+Ports&arch=default&format=html syscons]||the console driver
 
|-
 
|-
|/etc/conf.d/tmpfiles||
+
|/etc/conf.d/tmpfiles||Extra options for tmpfiles.sh
 
|-
 
|-
|/etc/conf.d/urandom||
+
|/etc/conf.d/urandom||Sometimes you want to have urandom start before "localmount" (say for crypt swap), so you will need to customize this behavior.  If you have /var on a separate partition, then make sure this path lives on your root device somewhere.
 
|-
 
|-
 
!colspan="2"|'''Back to ''' [[image:Icon Disti GhostBSD.png|50px|link=/etc/]]'''/etc/'''
 
!colspan="2"|'''Back to ''' [[image:Icon Disti GhostBSD.png|50px|link=/etc/]]'''/etc/'''

Revision as of 14:46, 16 March 2020

Welcome to Icon Disti GhostBSD.png Conf.d.

Introduction

Here we will find all scripts to run OpenRC on GhostBSD.

Content

Name Description
/etc/conf.d/bootmisc Wipe the tmp paths completely or just selectively remove known; Write the initial dmesg log into /var/log/dmesg after boot; Save the previous dmesg log to dmesg.old
/etc/conf.d/fsck file system consistency check and interactive repair
/etc/conf.d/ipfw User interface for firewall, traffic shaper, packet scheduler,

in-kernel NAT.

/etc/conf.d/ldconfig configure the shared library cache
/etc/conf.d/localmount Stop the unmounting of certain points. This could be useful for some NFS related work. Mark certain mount points as critical.
/etc/conf.d/moused pass mouse data to the console driver
/etc/conf.d/netmount You will need to set the dependencies in the netmount script to match the network configuration tools you are using. This should be done in this file by following the examples below, and not by changing the service script itself.
/etc/conf.d/powerd system power control utility
/etc/conf.d/rarpd reverse ARP daemon
/etc/conf.d/savecore save a core dump of the operating system
/etc/conf.d/staticroute Static routes are defined differently depending on your operating system, so please be sure to use the correct syntax. Do not use this file to define the default route. In all settings, multiple routes should be separated using ; or new lines.
/etc/conf.d/swap If you are only using local swap partitions, you should not change this file. Otherwise, you need to uncomment the below rc_before line followed by the appropriate rc_need line.
/etc/conf.d/syscons the console driver
/etc/conf.d/tmpfiles Extra options for tmpfiles.sh
/etc/conf.d/urandom Sometimes you want to have urandom start before "localmount" (say for crypt swap), so you will need to customize this behavior. If you have /var on a separate partition, then make sure this path lives on your root device somewhere.
Back to Icon Disti GhostBSD.png/etc/