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
Backup and recovery of jetson nano system
After the system is installed, it needs to be backed up. How to restore it to other SD cards? The environment is Ubuntu 18.04, jetson system U disk, which is inserted in the form of U disk.
I. backup
1. First use the following command to confirm the device number of the u disk to be backed up
sudo fdisk -l
I'm sure it's / dev/sdc
2. Establ ...
Posted by Chief on Thu, 31 Oct 2019 12:12:20 -0700
Tomcat deployment in Centos
Create user
sudo useradd --system --home /opt/tomcat --shell /sbin/nologin --comment "tomcat user" --user-group tomcat
Deploying tomcat
Unzip the installation package:
tar -xvf apache-tomcat-9.0.21.tar.gz
Mobile decompression package:
sudo mv apache-tomcat-9.0.21 /opt/tomcat/apache-tomcat-9.0.21
To create a soft link:
sudo ln -s /opt/tomcat/ ...
Posted by xadmin on Tue, 29 Oct 2019 08:44:19 -0700
Configuration of ROS network communication
Part II: configuration of ROS network communication
brief introduction
Local area network configuration
Using dandelion VPN to realize remote networking
brief introduction
This article includes two aspects:
On the one hand, it is the simplest LAN, which can be completed without too much configur ...
Posted by jaronblake on Sun, 27 Oct 2019 23:00:33 -0700
fabric 1.4 environmental construction and pit summary
Summary of fabric 1.4 environment construction
1. Install dependent tools
1.1 install Git
sudo apt update
sudo apt install git
1.2 install Curl
sudo apt install curl
1.3 installing docker
//To check whether Docker has been installed on the system:
docker --version
//Not installed. Use the fo ...
Posted by PhpDog on Fri, 25 Oct 2019 01:35:21 -0700
Turn off the touch pad of laptop under ubuntu
I'm so tired of the touchpad that I need to beat...
When using a notebook, you often accidentally touch the touch screen, which causes the cursor to run around.
Method 1:
Very simple, just type sudo modprobe -r psmouseIf you want to open it, just remove - r.
Of course, you can also write a file with the bash you learned recently, and then swit ...
Posted by ShadowBlade72 on Wed, 23 Oct 2019 15:09:26 -0700
Install Opencv3.2.0 under Ubuntu 16.04
1. Download the opencv3.2.0 installation package and go to the official website: http://opencv.org/releases.html , select the source of version 3.2.0, and download opencv-3.2.0.zip.
2. Install some libraries required by opencv, and try to install them as much as possible:
sudo apt-get install build ...
Posted by bajer on Tue, 22 Oct 2019 12:18:15 -0700
Automatically deploy the code above git to the server
1. Configure gitlab runner on the computer
Reference document https://docs.gitlab.com/runner/install/osx.html
Installation:
sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64
add permission
sudo chmod +x ...
Posted by the_loser on Mon, 21 Oct 2019 07:41:24 -0700
jprofile remote monitoring JVM (spring boot project)
jprofile installation
Linux Server InstallationOfficial website address Choose:
After downloading, upload to the server under test under / opt, decompress, renamed: jprofiler11
Local Installation Clientmac Cracked Edition Download Address
Download and install according to the tutorial on the web p ...
Posted by arhunter on Sun, 13 Oct 2019 11:19:51 -0700
ELK-Hearthbeat for Service Monitoring
Hearthbeat, heartbeat, as its name implies, can be used to periodically detect whether the service is functioning properly.
Hearthbeat supports ICMP, TCP and HTTP, as well as TLS, authentication and proxy.
Hearthbeat can work seamlessly with Logstash, Elastic search and Kibana. Install Hearthbeat, add s ...
Posted by webster08 on Sun, 13 Oct 2019 11:13:50 -0700