Distributed storage has been studied for many years, but it has not been applied to engineering practice on a large scale until recent years, with the rise of cloud computing and big data applications by Internet companies such as Google, Amazon and Ali. Such as Google's distributed file system GFS, distributed tabular system google Bigtab
What is the linux exit vi command? Press the ESC key to jump out of the vi editing command, and then: W save the file but do not exit vi:w file will also save the changes to file, do not exit vi:w! Force save, do not launch vi:wq save file and exit v
Ubuntu uninstall nvidia driver method 1, switch to integrated graphics card if not, then switch to character interface 2, uninstall driver sudo apt-get-purge remove nvidia*sudo apt autoremo
Five virtual machine dual network cards, the first intranet, the second external network 80.100 master database 180.101 master database 280.102 slave database 180.103 slave database 280.104 monitor monitor
As an open source operating system, Linux server is widely used because of its remarkable advantages of security, efficiency and stability. However, if it is not controlled, it may not be safe. This blog post mainly carries out Linu from the point of view of account security control, system boot and login control.
Regular expressions are divided into two categories: basic regular expressions and extended regular expressions. Basic regular expression metacharacter: character match:.: matches any character. []: matches any character in the specified range in []. [^]: any character outside the specified range; you can also know that in []
W2016 includes a number of Powershell tools to help users diagnose, view, and collect logs related to storage. In the next experiment, let's take a look at the commands related to troubleshooting. Use the Get-StorageSubSystem command to view S2 in the test environment
Anyone who has used ubuntu knows that the root user who has just installed the system does not have a password. Without a password, we cannot log in with the root user. Set the password for the root user to enter the command sudo passwd, and then the system will ask you to enter the password.
AD domain controller installation uses one, installs a domain controller on the server, promotes the server to a domain controller, and joins the host to the domain we created
Linux uses telnet services to install the required software xinetd and telnet telnet-servertelnet-server-0.1 in the remote lab environment Red Hat Enterprise 7.0
Ip is a powerful network configuration tool in iproute2 software package. It can replace some traditional network management tools, such as ifconfig, route and so on. This command is supported by almost all Linux distributions. As each L
Step 1 for Linux to install VMware Tools, click "install VMware Tools" under "Virtual Machine" in the menu bar; 2. Double-click to open the desktop "VMware Tools" CD-drive file; 3. Use "tar-z" for the compressed package in the driver.
Reason: the domain name cannot be resolved because there is no DNS in linux. Solution: first enter the etc; using the cd command, then edit the resolv.conf using the vi editor, and then add the domain name after the nameserver. For example: nameserver
In Linux systems, one or more processes can be created after each program starts. For example, a httpd program that provides Web services may create multiple processes to provide services when a large number of users visit the Web page at the same time. Using different command tools, you can never
1. Plug in win10 installation media. 2. When the administrator opens powershell, enter dism.exe / online / enable-feature / featurename:netfx3 / Source:D:\ s
1. Backup system how can I back up my Ubuntu system? It's simple, just like you back up or compress everything else, use TAR. Unlike Windows, Linux does not restrict root access to anything. You can throw everything on the partition into a TA.
The meaning of shell first of all, the English meaning of shell is "shell"; it is relative to the kernel, because it is based on the kernel and is oriented to the user. For example, when we see a ball, we see its shell, not its core. Shell in Linux refers to
First, add the file name .sh directly, for example, run hello.sh as. / hello.sh [hello.sh must have x permission]. Second, add the file name .sh to sh directly, and sh hello.sh [hello.s] to run hello.sh.
Use the rm command to delete files under Linux. The specific usage is as follows: rm [options] File options description: command example: 1. General deletion of a.txt files [root] # rm a.txt2, forced deletion of file.log files [root] # rm
"." (dot) in shell, users should know that one dot represents the current directory and two dot represent the upper directory. CDPATH=.:~:/home:/home/web:/var:/usr/local is upstream.