Mounting Aliyun OSS to Local Use Based on OSSFS
Summary:
Limitations
Compared with the local file system, the function and performance provided by ossfs have some limitations. Specifically include:
Random or additional writing of a file results in rewriting of the entire file.
Metadata operations, such as list directory, have poor performance because they require remote access to oss se ...
Posted by Digwood on Sun, 07 Jul 2019 16:23:42 -0700
Linux Software Source (Learning Notes)
I. Basic Operation
Source change:
Note 1: There are spaces in the command, but they don't seem obvious.
Note the content guidance added in source. list:
http://wiki.ubuntu.org.cn/%E6%BA%90%E5%88%97%E8%A1%A8
What I am using now is Netease (Guangdong Guangzhou Telecom/Unicom Gigabit Dual-Line Access) http://mirrors.163.com/ubuntu/
sud ...
Posted by javamint on Sun, 07 Jul 2019 11:42:39 -0700
Installation and unloading of docker under Cento system
Introduction to Docker
Docker An open source application container engine that allows developers to package their applications and dependencies into a portable container and then publish them to any popular application. Linux Virtualization can also be achieved on machines. Containers are completely sandboxed with no interfaces (similar ...
Posted by jeff_valken on Fri, 05 Jul 2019 17:43:59 -0700
Some Commands Usually Used in Linux for System Performance Tuning
Have a good laugh
When we are young, we often make faces in the mirror. When we are old, the mirror is even. 2. Boys are poor, or they don't know how to struggle, girls are rich, or a piece of cake will be coaxed away. 3. If marriage is the grave of love, then I expect someone to bury me. 4. Sleep is an art. Nobody can stop me from pursuing a ...
Posted by fypstudent on Thu, 04 Jul 2019 14:12:29 -0700
Ansible Automation Operations and Maintenance Tool
1. Ansible architecture
Ansible's help documentation:http://www.ansible.com.cn/index.html
2. Introduction to YAML Language
Basic Rules
All members of the list (list, [,,,...]) begin with the same indentation level and begin with "-". Requirements - A space must be followed.
- apple
- banana
- orange
- pear
Corresponding python outp ...
Posted by tanju on Tue, 02 Jul 2019 10:54:00 -0700
zabbix remote command configuration
1. zabbix remote command:1.1 Function: Restart service; Restart the server through IPMI interface. Functions that any custom script can accomplish: cleaning disk space, virtual machine instance migration, etc.1.2 Related attributes: Tatget list: The target ho ...
Posted by 7khat on Mon, 01 Jul 2019 13:29:35 -0700
First Experience of SQL On Linux
First Experience of SQL On Linux
Note: Blog is timeliness. Content changes with updates. The time is May 22, 2017.
The version of SQL On Linux will be officially released soon. This article has been installed and operated in common use. It feels good. Say less nonsense, please see.
Installation: Installing SQL Services and Related Com ...
Posted by Lonepig on Fri, 28 Jun 2019 16:36:28 -0700
MongoDB(1) Install, Start and Connect to shell
MongoDB Installation and Startup
1. Installation
1.1 windows Edition
click https://www.mongodb.com/download-center?jmp=nav#community
Download the msi file on the mongodb official website. Double-click to run it. There is nothing to explain.
1.2 Linux Edition
curl -O https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.4.3.tgz # ...
Posted by latinofever on Wed, 26 Jun 2019 11:58:44 -0700
K-Nearest Neighbor Algorithms
1. K-Nearest Neighbor Algorithms
The configuration is as follows
System Ubuntu Kylin
IDE Pycharm Community
Language Python 3
2. Module Installation
After installing Python 3 and IDE, we need to first install the relevant modules (i.e. function libraries) so that we can complete the next study.
1. pip3 installation
sudo apt- ...
Posted by swissmissflash on Sat, 22 Jun 2019 17:35:57 -0700
Using python to crawl articles on prose websites
image.png
Configure python 2.7
bs4
requests
Install sudo pip install bs4 with pip
sudo pip install requests
Brief description of the use of bs4 because it is crawling the web page, so we introduce find and find_all
The difference between find_all and find_all is that different find returns the first tag and the content in the tag ...
Posted by massimoGornatti on Sat, 22 Jun 2019 11:32:39 -0700