Posts

Showing posts with the label Centos

Valorant requires a restart or loads slowly when entering the game. What can I do? I have an idea.

Valorant is a free first -person tactical shooting game developed by Riot Games, which combines the exact system of arms shooting and heroism. Players will be transformed into agents and will compete for target points using team collaboration, tactical layout and skills cooperation 5V5 offensive and defense stroke. The game has a low economic system and high competitiveness. Before each game start, buy weapons and armor according to tactical needs and use a combination of heroic skills to create the benefits of the battlefield. Its solid ballistic mechanism and map design require players for accurate purposes and tactical decision -making. At the same time, the rich character pool and skill combination give the game a strategic depth. If you have the problems you need to restart or slowly load while playing a "Varorant", try the following systematic solution: Network environment optimization is the main solution. Because valante servers can be introduced abroad, physical dist...

Linux 各部门目录或者文件夹大小,以及目录下文件大小命令,df/du

Image
1、df 命令 df 可以查看一级文件夹大小、使用比例、档案系统及其挂入点。 查看分区的文件系统:df -T 显示目前所有文件系统的可用空间:df -h 2、du 命令 du 可以查询文件或文件夹的磁盘使用空间。 列出home下面所有一级目录的一级目录文件大小:du -h --max-depth=1 /home/* 一般情况下,使用上面两个命令就够了。

Centos 安装 iftop 最简单的方法

安装源 yum -y install epel-release 安装iftop yum -y install iftop 使用iftop iftop -i eth0 -n -P

Centos 如何通过 yum 安装 iftop

经常使用网络的同学都知道,一些常见的网络命令必不可少,iftop就是其中之一,用于查看接口流量信息,非常的详细,下面就介绍一下,在Centos下如何 通过 yum 安装 iftop。 iftop 是一款流量监控分析工具,可以实时的查看分析和监控网卡的进出流量,Centos下一般直接用命令安装: yum -y install iftop 但是安装的时候,经常会出现如下的错误: Loaded plugins : fastestmirror Loading mirror speeds from cached hostfile * base : mirrors .nju .edu .cn * extras : mirrors .nju .edu .cn * updates : mirrors .nju .edu .cn No package iftop available . Error : Nothing to do 这个时候就需要改一下 yum 源,修改源有3种方法。 安装修改源 1. 通过 yum 安装 yum -y install epel-release 2. 通过 wget 安装 wget http://mirrors.aliyun.com/repo/Centos-7.repo -O /etc/yum.repos.d/CentOS-Base.repo yum clean cache yum makecache 2. 直接通过vim编辑 vim /etc/yum.repos.d/epel.repo 把下面这段粘进去 [epel] name =Extra Packages for Enterprise Linux 7 - $basearch #baseurl=http://download.fedoraproject.org/pub/epel/7/$basearch metalink =https://mirrors.fedoraproject.org/metalink?repo=epel- 7 &arch= $basearch failovermethod =priority enabled = 1 gpgcheck = 1 gpgkey =file:///etc/pki/rpm-gpg/RP...