VIM+Vundle development environment
VIM+Vundle development environment
Environment construction
Upgrade apt get
Command line execution
apt-get -u dist-upgrade
Install git
Command line execution
sudo apt-get install git
Install vim
Command line execution
sudo apt-get install vim
Install vundle
Command line execution
git clone https:/ ...
Posted by jmcc on Sun, 03 May 2020 02:27:23 -0700
Using upnp to configure router port mapping under ubuntu
Using the command line tool MiniUPnP client
Installation method:
Download the source code here and compile it as follows:
make
sudo checkinstall
This way, you can uninstall it later.
usage method:
Usage : upnpc [options] -a ip port external_port protocol [duration]
Add port redirection
upnpc [ ...
Posted by phpeanuts on Thu, 30 Apr 2020 19:39:27 -0700
Open STF installation (linux)
The first method relies on the following:
The basic commands depend on the following (the following are debian linux like commands)
sudo apt-get update
sudo apt-get install -y git
sudo apt-get install -y curl
sudo apt-get install -y android-tools-adb
sudo apt-get install -y python
sudo apt-get install -y autoco ...
Posted by john-formby on Thu, 30 Apr 2020 03:09:32 -0700
Ansible playbook Vault encryption
Ansible playbook Vault encryption details and use cases
Host Planning
Add user account
Explain:
1. Login accounts used by operations and maintenance personnel;
2. All businesses are placed under / app / in the "home directory of yun users" to avoid the disorder of business data;
3. This user is also used by ansible because almo ...
Posted by dopey on Tue, 28 Apr 2020 09:56:43 -0700
Configuration and beautification of Ubuntu after installation
Configuration and Beautification after Ubuntu Installation (2)
The previous article described a series of basic configurations after the installation of ubuntu, which are already available for daily use. This article describes the installation of IDE and some other configurations.
1. Install SSR
Download SSR Client
git clone https://githu ...
Posted by tbare on Tue, 21 Apr 2020 09:23:20 -0700
Mirai-botnet Environment Setup Steps
I. Preparation1.Mirai uses two programming languages, C and Go, to store data in a database, so the following commands are required for the software to be installed in advance:
sudo apt-get install git
sudo apt-get install gcc
sudo apt-get install golang
sudo apt-get install electric-fence
sudo apt-get install mysql-server mysql-client ...
Posted by tempa on Thu, 16 Apr 2020 18:08:26 -0700
Intranet penetration: sunny ngrok Linux starts from the start
Some users need to start the service when the system is powered on. This article will explain how to start the Ngrok client automatically when the system is powered on under Linux.
This article supports Ubuntu, raspberry pie, Centos7, Debian series of systems.
If the Centos system does not have start stop daemon installed, see Centos install st ...
Posted by greg252 on Sun, 12 Apr 2020 09:07:28 -0700
Ubuntu TFTP service building and exception maintenance
TFTP is a file transfer protocol similar to FTP, but it does not require user authentication and cannot list directories. The TFTP server always listens for requests from PXE clients on the network. When it detects that PXE client requests PXE service in the network, it will provide network data package containing boot ...
Posted by Vermillion on Thu, 09 Apr 2020 11:03:26 -0700
Installing MySql database on ubuntu and connecting database service through C/C + + language
Development environment: ubuntu-17.10.1-desktop-amd64
Download link: https://www.ubuntu.com/download/desktop
1. Install mysql through apt get
sudo apt-get install mysql-server mysql-client
Note: my ubuntu-16 version can't be installed, so I can't find the corresponding website, so we can update the software source through ...
Posted by djs1 on Sun, 05 Apr 2020 11:12:17 -0700
The nature of creating users in linux
ref:
Parameters for the useradd command
/etc/default/useradd configuration file
/Files in etc/skel directory
Create a user manually
ref:
http://blog.csdn.net/ouyang_peng/article/details/8732928
http://blog.sina.com.cn/s/blog_6a58bdf40102v2zf.html
Parameters for the useradd command
[vincent@localhost ~]$ use ...
Posted by ghettopixel on Sat, 04 Apr 2020 15:03:48 -0700