Linux is a UNIX-like operating system that is free to use and spread freely; the Linux operating system is embedded with the TCP/IP protocol stack, and the protocol software has routing and forwarding functions; routing and forwarding relies on the installation of multiple blocks in the host as a router. Network card, when a certain network card receives a data packet, the system kernel will query the routing table according to the destination IP address of the data packet, and then send the data packet to another network card based on the query results, and finally send the data packet out through this network card.
#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.
What is linux used for?
Linux, the full name is GNU/Linux, is a UNIX-like operating system that is free to use and spread freely. Its kernel is composed of First released by Linus Benedict Torvalds on October 5, 1991, it is mainly inspired by the ideas of Minix and Unix. It is a POSIX-based multi-user, multi-tasking, support Multi-threaded and multi-CPU operating systems. It supports 32-bit and 64-bit hardware and can run major Unix software tools, applications and network protocols.
Linux inherits the network-centric design philosophy of Unix and is a multi-user network operating system with stable performance. There are hundreds of different Linux distributions, such as Debian and Archlinux based on community development, and Red Hat Enterprise Linux, SUSE, Oracle Linux, etc. based on commercial development.
On November 20, 2022, Linux submitted the last batch of drm-intel-next function patches, and Linux 6.2 will usher in official support for Intel Sharp independent graphics.
Main features
Basic idea
The basic idea of Linux has two points: first, everything is a file; second, every file All have definite uses. The first one is that everything in the system is boiled down to a file, including commands, hardware and software devices, operating systems, processes, etc. For the operating system kernel, they are all regarded as files with their own characteristics or types. . As for Linux being based on Unix, it is largely because the basic ideas of the two are very similar.
Completely free
Linux is a free operating system. Users can obtain it for free through the Internet or other channels, and can modify its source code at will. This is something other operating systems cannot do. It is precisely because of this that countless programmers from all over the world have participated in the modification and writing of Linux. Programmers can change it according to their own interests and inspirations. This allows Linux to absorb the essence of countless programmers and continue to grow.
Fully compatible with POSIX1.0 standard
This makes it possible to run common DOS and Windows programs through corresponding emulators under Linux. This lays the foundation for users to switch from Windows to Linux. When many users consider using Linux, they think about whether programs that were previously common under Windows can run normally, and this eliminates their doubts.
Multi-user, multi-tasking
Linux supports multiple users. Each user has its own special rights for its own file device, ensuring that users do not affect each other. Multitasking is one of the most important features of modern computers. Linux can enable multiple programs to run simultaneously and independently.
Good interface
Linux has both character interface and graphical interface. In the character interface, users can input corresponding instructions through the keyboard to perform operations. It also provides an X-Window system similar to the Windows graphical interface, which users can operate using the mouse. The X-Window environment is similar to Windows. It can be said to be a Linux version of Windows.
Support multiple platforms
Linux can run on a variety of hardware platforms, such as platforms with x86, 680x0, SPARC, Alpha and other processors. In addition, Linux is an embedded operating system that can run on handheld computers, set-top boxes or game consoles. The Linux 2.4 kernel released in January 2001 has fully supported the Intel64-bit chip architecture. At the same time, Linux also supports multi-processor technology. Multiple processors work at the same time, greatly improving system performance.
System advantages
Code open source
Linux is composed of many microkernels, and its source code is completely open source;
The network function is powerful
.Linux inherits the characteristics of Unix and has very powerful network functions. It supports all Internet protocols, including TCP/IPv4, TCP/IPv6 and link layer topology programs, etc., and can utilize the Unix network Features develop a new protocol stack;
system tool chain is complete
Linux system tool chain is complete, a suitable development environment can be configured with simple operations, which can simplify the development process and reduce simulation during development Tool obstacles make the system highly portable;
System functions
System kernel routing and forwarding
Linux operating system has TCP embedded /IP protocol stack, the protocol software has routing and forwarding functions. Routing and forwarding rely on multiple network cards installed in the host as a router. When a certain network card receives a data packet, the system kernel will query the routing table based on the destination IP address of the data packet, and then send the data packet to another network card based on the query results. , and finally the data packet is sent out through this network card. The processing process of this host is the core function completed by the router.
The routing function is implemented by modifying the Linux system kernel parameter ip_forward. The system uses the sysctl command to configure and display the kernel parameters in the /proc/sys directory. First, enter: cat /proc/sys/net/ipv4/ip_forwad on the command line to check whether the IP forwarding function is enabled in the Linux kernel. If the result is 1, it indicates that the routing forwarding function has been enabled; if the result is 0, it indicates that it has not been enabled. For security reasons, the Linux kernel prohibits packet routing and forwarding by default. In Linux systems, there are two ways to enable the forwarding function: temporary and permanent.
Temporarily enable: This method only works for the current session and will no longer be enabled after the system restarts. Temporarily enabled command format: sysctl–wnet.ipv4.ip_forward=1.
Permanently enabled: To permanently enable the IP forwarding function, change the statement line "net.ipv4.ip_forward=0" in the configuration file /etc/sysctl.conf to "net.ipv4. ip_forward=1", save the configuration file and execute the command sysctl–p/etc/sysctl.conf, the configuration will be enabled immediately.
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of What is linux used for?. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version
Useful JavaScript development tools

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