What does linux rc mean?
linux rc is the abbreviation of runcom, and is also the rc that appears in ".cshrc" or "/etc/rc"; rc comes from runcom, which first appeared in the MIT CTSS system in 1965; in some scenarios , will execute multiple commands stored in the file, which we call runcom, which is the abbreviation of run commands.
What does linux rc mean?
The full meaning of Linux rc
This comes from the prehistoric era of the Unix system (1961 -1969), at the beginning, MIT developed a Compatible Time-Sharing System (CTSS). (Although the functions of this CTSS are not as good as those of later Unix systems, they are older and older.)
There is a feature about command scripts in the CTSS system called
runcom.
In order to pay tribute to the runcom feature of CTSS, an early version of Unix system,
rc was used as the startup file name of the operating system in later Unix systems.
Date in programming language starts from 1970-01-01,
You can also feel the "seniority" of the CTSS system from the side.
Meaning
rc =
RunCom
run commands, also called "runcom", and this kind of file is also called a runcom ( a runcom)."
Example
- .bashrc
bash running command
- .vimrc
Vim’s running command
- .npmrc
npm’s running command
. is expressed as Hidden files.
leung@wuyujin ~ % ls -al | grep rc$ -rw------- 1 leung staff 33 5 13 20:34 .npmrc -rw-r--r-- 1 leung staff 116 5 13 21:20 .yarnrc -rw-r--r-- 1 leung staff 55 6 2 20:00 .zshrc
ReferenceWhat does rc mean in bashr, zshrc, vimrc etc?
What does rc mean in bashr, zshrc, vimrc etc? For the meaning of
rc, you may see the following:
- run commands
- resource control
- run control
- runtime configuration
rc is the abbreviation of
runcom.
rc = RunCom is the
rc# that appears in
.cshrc
or /etc/rc
##rc
comes from runcom
, which first appeared in the MIT CTSS system in 1965. In some scenarios, (we) will execute multiple commands
stored in the file, which we call runcom
that is, running commands## Abbreviation for #run commands.
In addition, the file used to store commands is called: a runcom
.
The rc
in Unix file naming comes from this old allusion.
— Brian Kernighan & Dennis Ritchie, as told to Vicki BrownAlso ESR states that in Run-Control Files:
Evidence is found in:
rc
The suffix is traced back all the way, and you will find that it actually exists in CTSS, the granddaddy of Unix systems. In the ancient system of CTSS, there is a command script feature called:
runcom
. So in the early days of Unix,
rc
was used as the file name of the operating system startup script to recall/pay tribute to CTSS runcom. So I think:
rc is the abbreviation of
runcom
<h2>
<a id="CTSSCompatible_TimeSharing_System_70"></a>CTSS(Compatible Time-Sharing System)兼容分时系统</h2>
<p>Unix系统的背景<br> 1961-1969:史前时代<br> CTSS(Compatible Time-Sharing System,兼容分时系统),以MIT为首的开发小组,小而简单的实验室原型。<br> Multics(Multiplexed Information and Computing System,多路信息与计算系统),庞大而负责,不堪重负。<br> Unics(Uniplexed information and Computing System,单路信息与计算系统),返璞归真,走上正道。<br> 1969-1971:创世纪<br> ……</p>
<h2>
<a id="_Unix__Frequently_Asked_Questions_17_Frequent_postingSection__What_does_some_strange_unix_command_name_stand_for_82"></a>参考 Unix - Frequently Asked Questions (1/7) [Frequent posting]Section - What does {some strange unix command name} stand for</h2>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">1.3) What does {some strange unix command name} stand for?
awk = "Aho Weinberger and Kernighan"
This language was named by its authors, Al Aho, Peter
Weinberger and Brian Kernighan.
grep = "Global Regular Expression Print"
grep comes from the ed command to print all lines matching a
certain pattern
g/re/p
where "re" is a "regular expression".
fgrep = "Fixed GREP".
fgrep searches for fixed strings only. The "f" does not stand
for "fast" - in fact, "fgrep foobar *.c" is usually slower than
"egrep foobar *.c" (Yes, this is kind of surprising. Try it.)
Fgrep still has its uses though, and may be useful when searching
a file for a larger number of strings than egrep can handle.
egrep = "Extended GREP"
egrep uses fancier regular expressions than grep. Many people
use egrep all the time, since it has some more sophisticated
internal algorithms than grep or fgrep, and is usually the
fastest of the three programs.
cat = "CATenate"
catenate is an obscure word meaning "to connect in a series",
which is what the "cat" command does to one or more files. Not
to be confused with C/A/T, the Computer Aided Typesetter.
gecos = "General Electric Comprehensive Operating Supervisor"
When GE's large systems division was sold to Honeywell,
Honeywell dropped the "E" from "GECOS".
Unix's password file has a "pw_gecos" field. The name is a
real holdover from the early days. Dennis Ritchie has reported:
"Sometimes we sent printer output or batch jobs
to the GCOS machine. The gcos field in the password file
was a place to stash the information for the $IDENT card.
Not elegant."
nroff = "New ROFF"
troff = "Typesetter new ROFF"
These are descendants of "roff", which was a re-implementation
of the Multics "runoff" program (a program that you'd use to
"run off" a good copy of a document).
tee = T
From plumbing terminology for a T-shaped pipe splitter.
bss = "Block Started by Symbol"
Dennis Ritchie says:
Actually the acronym (in the sense we took it up; it may
have other credible etymologies) is "Block Started by
Symbol." It was a pseudo-op in FAP (Fortran Assembly [-er?]
Program), an assembler for the IBM 704-709-7090-7094
machines. It defined its label and set aside space for a
given number of words. There was another pseudo-op, BES,
"Block Ended by Symbol" that did the same except that the
label was defined by the last assigned word + 1. (On these
machines Fortran arrays were stored backwards in storage
and were 1-origin.)
The usage is reasonably appropriate, because just as with
standard Unix loaders, the space assigned didn't have to be
punched literally into the object deck but was represented
by a count somewhere.
biff = "BIFF"
This command, which turns on asynchronous mail notification,
was actually named after a dog at Berkeley.
I can confirm the origin of biff, if you're interested.
Biff was Heidi Stettner's dog, back when Heidi (and I, and
Bill Joy) were all grad students at U.C. Berkeley and the
early versions of BSD were being developed. Biff was
popular among the residents of Evans Hall, and was known
for barking at the mailman, hence the name of the command.
Confirmation courtesy of Eric Cooper, Carnegie Mellon University
rc (as in ".cshrc" or "/etc/rc") = "RunCom"
"rc" derives from "runcom", from the MIT CTSS system, ca. 1965.
'There was a facility that would execute a bunch of
commands stored in a file; it was called "runcom" for "run
commands", and the file began to be called "a runcom."
"rc" in Unix is a fossil from that usage.'
Brian Kernighan & Dennis Ritchie, as told to Vicki Brown
"rc" is also the name of the shell from the new Plan 9
operating system.
Perl = "Practical Extraction and Report Language"
Perl = "Pathologically Eclectic Rubbish Lister"
The Perl language is Larry Wall's highly popular
freely-available completely portable text, process, and file
manipulation tool that bridges the gap between shell and C
programming (or between doing it on the command line and
pulling your hair out). For further information, see the
Usenet newsgroup comp.lang.perl.misc.
Don Libes' book "Life with Unix" contains lots more of these
tidbits.</pre><div class="contentsignin">Copy after login</div></div>
相关推荐:《Linux视频教程》
The above is the detailed content of What does linux rc mean?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











In Debian systems, the log files of the Tigervnc server are usually stored in the .vnc folder in the user's home directory. If you run Tigervnc as a specific user, the log file name is usually similar to xf:1.log, where xf:1 represents the username. To view these logs, you can use the following command: cat~/.vnc/xf:1.log Or, you can open the log file using a text editor: nano~/.vnc/xf:1.log Please note that accessing and viewing log files may require root permissions, depending on the security settings of the system.

The readdir function in the Debian system is a system call used to read directory contents and is often used in C programming. This article will explain how to integrate readdir with other tools to enhance its functionality. Method 1: Combining C language program and pipeline First, write a C program to call the readdir function and output the result: #include#include#include#includeintmain(intargc,char*argv[]){DIR*dir;structdirent*entry;if(argc!=2){

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

Install PHPStorm on the Debian system to easily solve your PHP development environment! The following steps will guide you through the entire installation process. Installation steps: Download PHPStorm: Visit the official website of JetBrains and download the latest version of PHPStorm. Unzip the installation package: After downloading using wget or curl, unzip it to the specified directory (for example /opt). Command example: wgethttps://download.jetbrains.com/phpstorm/phpstorm-2024.3.5.tar.gztar-xzfphpstorm-2024.3.5.tar.gz

This article describes how to clean useless software packages and free up disk space in the Debian system. Step 1: Update the package list Make sure your package list is up to date: sudoaptupdate Step 2: View installed packages Use the following command to view all installed packages: dpkg--get-selections|grep-vdeinstall Step 3: Identify redundant packages Use the aptitude tool to find packages that are no longer needed. aptitude will provide suggestions to help you safely delete packages: sudoaptitudesearch '~pimportant' This command lists the tags

This article introduces how to troubleshoot memory leaks through Tomcat logs and related tools. 1. Memory monitoring and heap dump First, use tools such as JVisualVM or jstat to monitor Tomcat's memory usage in real time, observe the changes in the heap memory, and determine whether there is a memory leak. Once a leak is suspected, use the jmap command to generate a heap dump file (heap.bin): jmap-dump:format=b,file=heap.bin, which is the Tomcat process ID. 2. Heap dump file analysis Use EclipseMemoryAnalyzerTool (MAT) or other tools to open the heap.bin file and analyze the memory.

To ensure the security of OpenSSL on the Debian system, please follow the following steps: 1. System update: First, update your Debian system to the latest version. Use the following command to update the package list and upgrade all installed software: sudoaptupdatesudoaptupgrade 2. Version confirmation: Check the current OpenSSL version: opensslversion 3. OpenSSL upgrade: If the version is too old, please upgrade. Method 1: Direct upgrade (recommended): Use the following command to directly upgrade to the latest stable version of OpenSSL: sudoaptinstall--only-upgrade

This article discusses how to improve Hadoop data processing efficiency on Debian systems. Optimization strategies cover hardware upgrades, operating system parameter adjustments, Hadoop configuration modifications, and the use of efficient algorithms and tools. 1. Hardware resource strengthening ensures that all nodes have consistent hardware configurations, especially paying attention to CPU, memory and network equipment performance. Choosing high-performance hardware components is essential to improve overall processing speed. 2. Operating system tunes file descriptors and network connections: Modify the /etc/security/limits.conf file to increase the upper limit of file descriptors and network connections allowed to be opened at the same time by the system. JVM parameter adjustment: Adjust in hadoop-env.sh file
