CentOS7安装备忘2

安装过程中不联网,安装完成也不要立刻联网,先关闭远程的服务后再联网更新。
安装默认使用English,目的是生成的Home下所有文件夹都是英文的,方便使用。

==============
打开设置,找到语言;
下面添加输入法:Chinese (Intelligent Pinyin)

Settings \ Region & Language
Input Sources (+)
Chinese (Intelligent Pinyin)
-----------------
上面可以修改使用语言,重启后生效。
重启后会提示,是否将文件夹的名称修改为中文,建议不要修改,保留英文名称的文件夹名称。
====================

安装好后,关闭或卸载不需要的服务及功能

安装提前下载好的nefs文件系统支持包,可以挂载ntfs格式的分区。可选
rpm -Uvh ntfs-3g-2017.3.23-6.sdl7.x86_64.rpm

移除远程服务:
[root@localhost /]# rpm -qa |grep ssh
  libssh2-1.4.3-10.el7_2.1.x86_64
  openssh-7.4p1-16.el7.x86_64
  openssh-server-7.4p1-16.el7.x86_64
  openssh-clients-7.4p1-16.el7.x86_64
[root@localhost /]# yum remove openssh*

[root@localhost /]# rpm -qa |grep vnc
  gtk-vnc2-0.7.0-3.el7.x86_64
  tigervnc-server-minimal-1.8.0-5.el7.x86_64
  gvnc-0.7.0-3.el7.x86_64
  tigervnc-license-1.8.0-5.el7.noarch
[root@localhost /]# yum remove *vnc*
以上远程服务不卸载,至少关闭掉,使用时再开。
==================

检查更多:
# netstat -tulpn
# netstat -tulp
# systemctl list-sockets
========================
不需要可以直接移除 yum remove ...
不确定可以关闭
systemctl status ... 查看状态
systemctl stop ... 停止,重启后会恢复
systemctl disable ... 解除自启动
========================
25端口的mail相关服务,
systemctl status postfix
systemctl stop postfix
yum remove postfix
========================

systemctl status chronyd
systemctl stop chronyd
yum remove chrony
========================
network(不要删除,)
systemctl status avahi-daemon.socket avahi-daemon.service
systemctl stop avahi-daemon.socket avahi-daemon.service
systemctl disable avahi-daemon.socket avahi-daemon.service
========================
631端口 print服务
systemctl stop cups.path cups.service cups.socket
systemctl status cups.path cups.service cups.socket
systemctl disable cups.path cups.service cups.socket
========================

systemctl stop rpcbind.service rpcbind.socket rpcbind.target
systemctl status rpcbind.service rpcbind.socket rpcbind.target
systemctl disable rpcbind.service rpcbind.socket rpcbind.target
========================

打开防火墙,默认区域改为block

连接网络,防火墙的网络连接区域改为block(右上方改为永久修改,否则重启后设置就恢复初始了)

yum update
添加源

。。。

=========================

关闭或删除不必要的服务后:

仅剩下dns服务, 1080的python2是后来安装的ss; 5353是chrome的dns.

[root@MiWiFi-R3-srv LibreOffice6.2]# netstat -tulp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 
tcp 0 0 MiWiFi-R3-srv:domain 0.0.0.0:* LISTEN 4798/dnsmasq 
tcp 0 0 localhost:socks 0.0.0.0:* LISTEN 9406/python2 
udp 0 0 MiWiFi-R3-srv:domain 0.0.0.0:* 4798/dnsmasq 
udp 0 0 0.0.0.0:bootps 0.0.0.0:* 4798/dnsmasq 
udp 0 0 0.0.0.0:bootpc 0.0.0.0:* 27118/dhclient 
udp 0 0 localhost:socks 0.0.0.0:* 9406/python2 
udp 0 0 224.0.0.251:mdns 0.0.0.0:* 12997/chrome --type 
udp 0 0 224.0.0.251:mdns 0.0.0.0:* 12950/chrome 
[root@MiWiFi-R3-srv LibreOffice6.2]# netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name 
tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN 4798/dnsmasq 
tcp 0 0 127.0.0.1:1080 0.0.0.0:* LISTEN 9406/python2 
udp 0 0 192.168.122.1:53 0.0.0.0:* 4798/dnsmasq 
udp 0 0 0.0.0.0:67 0.0.0.0:* 4798/dnsmasq 
udp 0 0 0.0.0.0:68 0.0.0.0:* 27118/dhclient 
udp 0 0 127.0.0.1:1080 0.0.0.0:* 9406/python2 
udp 0 0 224.0.0.251:5353 0.0.0.0:* 12997/chrome --type 
udp 0 0 224.0.0.251:5353 0.0.0.0:* 12950/chrome 
[root@MiWiFi-R3-srv LibreOffice6.2]#

=============================

https://www.howtoing.com/remove-unwanted-services-in-centos-7

CentOS安装备忘2的更多相关文章

  1. 安装 CentOS 后的系统配置及软件安装备忘

    安装 CentOS 后的系统配置及软件安装备忘 // */ // ]]>   安装 CentOS 后的系统配置及软件安装备忘 Table of Contents 1 Linux 自举过程 1.1 ...

  2. MSDE2008安装备忘

    MSDE2008安装备忘(适用于WIN7 8 10) 1.系统中必须要VC8.0,即VC2005运行库.2.系统中必须要有.net framework2.0.3.5.4.6运行库.3.windows防 ...

  3. Sublime Text4(Build 4126) 安装备忘

    Sublime Text4(Build 4126) 安装备忘 sublime text 4126 PJ已测可用 打开浏览器进入网站https://hexed.it 打开sublime text4安装目 ...

  4. centos,nginx安装备忘

    # ssh 登录慢解决 vim /etc/ssh/sshd_config UseDNS no # add limitsvi /etc/security/limits.conf* soft nproc ...

  5. CentOS7安装备忘

    ======1 下载CentOS镜像文件:https://www.centos.org/download/http://isoredirect.centos.org/centos/7/isos/x86 ...

  6. Linux服务器软件安装备忘

    1.Centos安装Mysql --安装 yum install mysql-server 卸载 yum -e mysql-server --设置为开机启动 chkconfig mysqld on - ...

  7. windows下matplotlib编译安装备忘

    windows下,codeblocks,mingw安装matplotlib. python下一些源码的编译安装,备忘. matplotlib官网编译好的版本只支持到3.3.我不慎刚下了python3. ...

  8. Mint17 一些安装备忘

    1,中文输入法: sudo apt-add-repository ppa:fcitx-team/dailybuild-fcitx-master sudo apt-get update sudo apt ...

  9. oracle 驱动安装备忘

    ubuntu 从oracle官网下载两个必须的rpm包(这里选择的是version12.1.0.2.0, 64位操作系统) oracle-instantclient12.1-basic-12.1.0. ...

随机推荐

  1. 【框架】selenium运行失败后自动截图(三)

    思路: 1.写一个类继承TestListenerAdapter,覆写onTestFailure()方法 2.在onTestFailure方法里,调用selenium的TakesScreenShot的g ...

  2. shell shell基本概述

    SHELL的概念 SHELL是一个命令行解释器,它为用户提供了一个向Linux内核发送请求以便运行程序的界面系统级程序, 用户可以用shell来启动,挂起,停止甚至是编写一些程序. ​ Shell还是 ...

  3. ROM、PROM、EPROM、EEPROM、FLASH ROM、FLASH、eMMC

    ROM(Read Only Memory,只读存储器)芯片:在微机的发展初期,BIOS都存放在ROM芯片中.ROM内部的资料是在ROM的制造工序中,在工厂里用特殊的方法被烧录进去的,其中的内容只能读不 ...

  4. Spring Boot 如何极简入门?

    Spring Boot已成为当今最流行的微服务开发框架,本文是如何使用Spring Boot快速开始Web微服务开发的指南,我们将创建一个可运行的包含内嵌Web容器(默认使用的是Tomcat)的可运行 ...

  5. 中国队再创佳绩,IOI2018喜获四金

    第30届国际信息学奥林匹克竞赛(IOI2018)于9月1日-8日在日本筑波举行,共有来自87个国家(地区)的335名选手参赛.    中国代表队四名选手经过努力拼搏,获得金牌.其中,杨懋龙(湖南长沙市 ...

  6. Date与时间戳的相互转换(Java)

      1.Date对象转换为时间戳 Date date = new Date(); long times = date.getTime(); System.out.println(times); 效果如 ...

  7. centos7安装配置zabbix4.0

    zabbix01    198.8.8.211    zabbix-server4.0 zabbix02    198.8.8.212    zabbix-agent4.0 一:zabbix服务端环境 ...

  8. jvm的基本结构以及各部分详解(转)

    原文链接:https://www.cnblogs.com/zwbg/p/6194470.html 1.java虚拟机的基本结构 图: 1.类加载器子系统从文件系统或者网络中加载Class信息,类信息( ...

  9. 给定两个数组,这两个数组是排序好的,让你求这两个数组合到一起之后第K大的数。

    题目:给定两个数组,这两个数组是排序好的,让你求这两个数组合到一起之后第K大的数. 解题思路: 首先取得数组a的中位数a[aMid],然后在b中二分查找a[aMid],得到b[bMid],b[bSt] ...

  10. Python 默认值字典

    from collections import defaultdict # 默认值字典 dd = defaultdict(lambda: "胡辣汤") # callable 可调用 ...