DNS in Binder process communication
DNS in Binder process communication ----- servicemanager
Just as "DNS" in the Internet needs to be ready before browsing all kinds of web pages, so service manager needs to be in a normal state before someone uses Binder.
Next, we briefly introduce service manager.
1. When to start
Since someone needs to be ready befo ...
Posted by teongkia on Wed, 06 Nov 2019 14:01:59 -0800
oracle installation and visit [3] to install oracle 11g in CentOS7
After understanding the installation of Oracle 10g and 11g in win10, this article will cover the installation of Oracle 11g in CentOS 7.
1. Preconditions
CentOS7 workstation installed
jdk8 has been installed
2. Software download
Baidu SkyDrive
Links: https://pan.baidu.com/s/1u3Qjguim-7Z-4GoHDF8Pxg
Extraction code: gwig
3. Co ...
Posted by limey on Wed, 06 Nov 2019 13:01:31 -0800
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
Startup, shutdown and view of firewall and selinux under Linux
Under CentOS7.X:
1. firewall
View firewall status:
[root@localhost sunan]# systemctl status firewalld.service
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
Where Active is inactive ( ...
Posted by kts on Mon, 21 Oct 2019 08:16:16 -0700
File Processor-sed
sed workflow
Sed is an online, non-interactive editor that processes one line of content at a time. When processing, the currently processed rows are stored in a temporary buffer, called pattern space, and then the contents of the buffer are processed with sed command. After processing, the contents of the buffer are sent to the screen. Then ...
Posted by risi on Fri, 11 Oct 2019 03:13:46 -0700
Automatically install CentOS 7.6 using PXE
I. demand
Base new to 300 servers, need to install the operating system version 7.6 of CentOS, choose to use PXE for batch installation.
II. Preparations
Use the layer-2 switch to connect the server without the operating system installed, so as to avoid affecting the normal server of the current network.
Upload the operating system image to ...
Posted by karenn1 on Sat, 05 Oct 2019 14:47:46 -0700
Linux Service Control and Running Level
How to control the running state of the service? How to switch different levels of operation?
service control
ntsysv
Imitating graphical interactive interface, centralized configuration of various service startup status
level 35: Manage services at the specified runlevel, not just at the current runlevel.
[root@localhost ~]# ntsysv --level ...
Posted by miha on Sat, 05 Oct 2019 10:53:10 -0700
Construction of LVS Load Balancing Cluster Based on NAT Model
Topology required for the experiment:
First, three machines shut down selinux and firewall.
[root@hostlocal ~]# systemctl stop firewalld
[root@hostlocal ~]# iptables -F
[root@hostlocal ~]# setenforce 0 // temporary, if permanently closed, modify / etc/sysconfig/selinux and change enforcing to disable ...
Posted by PlasmaDragon on Mon, 30 Sep 2019 02:37:55 -0700
Binder Subsystem for Android System
Today, let's take a look at Binder, a subsystem of the Android system.Let's start with the Binder subsystem, which is one of the methods used for interprocess communication in Android systems.So why learn the binder system?With the binder subsystem in hand, we can have a good understanding of how Android system processes communicate with each ...
Posted by phpdeveloper82 on Mon, 16 Sep 2019 18:25:02 -0700
Ansible Profile
Profile Details
Most of the configuration files are comment line default configuration items.The file follows the INI format and is divided into several categories of configurations, which are described below.Before that, take a look at where the profile is stored and how to get the profile template from the official website.
Location of profi ...
Posted by Christoph09 on Fri, 23 Aug 2019 13:11:34 -0700