Linux ordinary user performs sudo permission setting

Execute the command sudo useradd --help The error is reported as follows:fuyun is not in the sudoers file. This incident will be reported. Reason: the user does not have root permission temporarily Solution: modify sudoers file Switch to the root user, su -, run the visudo command, which is used ...

Posted by undecided name 01 on Thu, 31 Oct 2019 12:52:24 -0700

Programmer: using Python to realize the reverse Shell that can control broiler

First, initial knowledge 1.1 use Python to implement a reverse Shell that can manage multiple broilers. Why is it called a reverse Shell? The reverse is that broiler actively connects to our Server as Client to realize the management of multiple remote hosts! Learning skills: Understand the TCP protocolUnderstand C/S structure program design ...

Posted by mrkite on Wed, 30 Oct 2019 06:44:41 -0700

Starting jar with shell general script under Linux (microservice)

Starting jar with shell general script under Linux (microservice)   vim app_jar.sh #!/bin/bash #source /etc/profile # Auth: Liucx # Please change these parameters according to your real env. # set Java Home: Remember that dolphin only supports JDK8! JAVA_HOME=/usr/java/jdk1.8.0_162 # application directory cd `dirname $0` APP_HO ...

Posted by raquelzinha on Tue, 29 Oct 2019 14:18:49 -0700

Background management system constructed by React family bucket + material UI

I. Introduction A later management center built with React router DOM, Redux, Redux actions, Redux saga, reselect + material UI. II. Appendix+1. [online experience] (https://simpleroom.github.io): Account: < code > admin < / code > password: < code > 123456 < / code >+2. [source address: https://github.com/SimpleRoom/w ...

Posted by andrewburgess on Tue, 29 Oct 2019 03:43:55 -0700

The shell of 16 H Xiaoyang in Niuke beginner's monthly competition (difference + line tree)

Links: https://ac.nowcoder.com/acm/contest/949/HSource: niuke.com Title Description There are n shells in Xiaoyang's hands, each of which has a color, and the color of the first shell is colicoli coli. Now Xiaoyang has three operations: 1 l r x: add xx to the color value of all shells in the [l,r][l,r] range. 2 l r: ask the maximum va ...

Posted by s0me0ne on Mon, 28 Oct 2019 11:14:25 -0700

Analysis of the compiling process of u-boot

Article directory U-boot Makefile national construction process Host build environment configuration process Define host system architecture Define host operating system type Define SHELL script interpreter Set compile output directory Configuration process related to target machine mkconfig scrip ...

Posted by taya on Sat, 26 Oct 2019 23:17:31 -0700

python web crawler notes re regular expression

regular expression What is regular expression? Regular expression is a logical formula for string operation, which is to form a "regular string" with some specific characters defined in advance and the combination of these specific characters. This "regular string" is used to expr ...

Posted by southeastweb on Sat, 26 Oct 2019 20:26:11 -0700

Child process module of NodeJS

Article directory 1 Child Process module 1.1 INTRODUCTION 1.2 method 1.2.1 exec() 1.2.2 execFile() 1.2.3 spawn() 1.2.4 fork() 1.2.5 send() 1 Child Process module 1.1 INTRODUCTION The child process module is used to create a new child process. The running results of the subprocesses are sto ...

Posted by frizzo on Sat, 26 Oct 2019 19:46:18 -0700

Using ANSI ble to write playbook to automatically install ceph cluster in Huawei cloud batch configuration management tool

ansible, playbook, huaweiyun, ceph First, purchase the virtual machine needed to build the ceph cluster on Huawei cloud:       Then purchase the storage disk required by ceph     Mount the purchased disk to the virtual machine used to build ceph Installing ansible on the springboard machine Check the ansible vers ...

Posted by Mattyspatty on Sat, 26 Oct 2019 10:10:30 -0700

Simple use of Scrapy framework

I. installation dependency #Windows platform 1,pip3 install wheel 3,pip3 install lxml 4,pip3 install pyopenssl 5,pip3 install pywin32 #If not, go to the official website https://sourceforge.net/projects/pywin32/files/pywin32/ 6,pip3 install twisted #If you can't go to the official website: http://www.lfd.uci.edu/~gohlke/pyt ...

Posted by ddrudik on Tue, 22 Oct 2019 09:32:37 -0700