LVM Logical Volume Management

From Wechat Public Number Let the Code Fly Rhel Topic 2: LVM Logical Volume Management - Disk Management (2) 2017-05-07 Let the Code Fly 1. Add 20G hard disk and create three new main partitions, size 5G, 5G and 10G respectively. If you are not familiar with partitioning, you can take a look at basic storage management. Change the syst ...

Posted by public-image on Tue, 02 Jul 2019 15:53:27 -0700

Linux special permission set_uid

Special permission set_uidBy default, under the newly installed Linux system, only one command has set_uid special privileges.Commands (files) with s privileges: To ensure that non-owner users have temporary ownership when using this command; set_uid special privileges for a file, provided that the file is an executable binary file (usually wit ...

Posted by dkjohnson on Sun, 23 Jun 2019 16:25:05 -0700

How to use yum to install software

background yum (all called Yellow dog Updater, Modified) is a Shell front-end package manager in Fedora, Red Hat and SUSE. Based on RPM package management, RPM packages can be downloaded and installed automatically from designated servers, dependency relationships can be handled automatically, and all dependent software packages can be instal ...

Posted by 2tonejoe on Mon, 20 May 2019 12:48:47 -0700

Insufficient disk space for data partition in Linux, how to mount the disk.

First, let's simulate the environment. The following image uses VMware to add a 300G (actual 200M~~manual funny--) hard disk device to me. Add them step by step.You need to restart your virtual machine after adding it to take effect. OK, then we have the environment.I have installed a 300G (200M) hard disk for our Server. Now let's mount it u ...

Posted by thallium6 on Sun, 12 May 2019 00:44:27 -0700

Scipy Foundation + Advancement

Python Science Computing Library-Scipy I. Introduction to Scipy 1.1. Introduction and Installation of Scipy Official website: http://www.scipy.org/SciPy Installation: Open cmd under C: Python 27 Scripts to execute: Execution: pip install scipy 1.2. Installation of Anaconda and Environment Building (Demonstration ...

Posted by Elizabeth on Sat, 11 May 2019 02:26:47 -0700

The latest Internet Micro Services Advanced Architecture Framework JAVA Complete Set of Projects (full 120G+)

1. Basic File Operations 1. Create and open files Format: file = open(filename,arguments) #Parameter description: #File: Customize, open, or create how the file will appear in the program #filename: Direct or relative path to write a file, if there is one, open it to read # When followed by w,w+,a, or a+, create a file an ...

Posted by mmcb on Thu, 09 May 2019 08:08:40 -0700

Tensorflow object detection API for creating and detecting your own datasets

Write before: The Tensorflow object detection API implements the creation of its own dataset and the detection of streaming accounts. Refer to the Dashen Blog for detailed steps and video explanations: https://blog.csdn.net/dy_guox/article/details/79111949 Environmental Science: Window 7 64X Anaconda 3 + python 3.5.2 +Ten ...

Posted by e4c5 on Sat, 27 Apr 2019 05:00:35 -0700

Automatic Operation and Maintenance-PXE Implementation of Automatic Installation System

Introduction to PXE Preboot Excution Environment Preboot Execution Environment Based on Client/Server network mode, it supports remote hosts to download images from remote servers through the network, and thus supports the installation of operating systems through the network. PXE can boot and install Windows,Linux and other operating systems ...

Posted by run_GMoney on Sat, 20 Apr 2019 23:06:33 -0700

[Keras Learning Notes] 7: MLP with more parameters over-fitting credit card fraud data sets

Read data and preprocess import keras from keras import layers import numpy as np from matplotlib import pyplot as plt import pandas as pd %matplotlib inline Using TensorFlow backend. # header=None means that the data file has no header, and the first line is the data. data = pd.read_csv("./data/credit-a.csv", header=None) d ...

Posted by bellaso on Wed, 17 Apr 2019 12:30:33 -0700

PXE+dhcp+tftp+http+kickstart batch network installation server

The pxe installation server written before forwarding: http://www.attacker.club/article/125 Service list dhcp: Assign IP addresses, specify startup files and tftp service addresses tftp-server: Transfer boot file http: Publish the iso image of CD-ROM pxelinux.0: The startup file of the system pxe is obtained by installing the syslinux packa ...

Posted by edcellgavin on Mon, 21 Jan 2019 18:57:12 -0800