当前位置: 首页 > news >正文

哪里有免费的个人简历模板外包优化网站

哪里有免费的个人简历模板,外包优化网站,北京网站制作计划,备案的网站是公司吗云原生开发部署实践笔记 一、开发测试环境搭建与测试 1.1 Linux运行环境的搭建与测试 虽然CentOS已经更新到Stream 9 版本,但基于大多数企业和单位多数使用CentOS 7版本作为运行底座,7版本也一直在更行维护,此实践基于CentOS 7 Mini版本搭…

云原生开发部署实践笔记

一、开发测试环境搭建与测试

1.1 Linux运行环境的搭建与测试

虽然CentOS已经更新到Stream 9 版本,但基于大多数企业和单位多数使用CentOS 7版本作为运行底座,7版本也一直在更行维护,此实践基于CentOS 7 Mini版本搭建。(8和9版本的CentOS系统命令少有差别,但主要用到的其实都差不多,最大的差别在于系统内核与自带的软件组件和库比较新。如果企业开发部署对兼容性有要求,应选择其要求或匹配版本。)

1.1.1 CentOS 7 运行环境搭建与测试

下载安装CentOS 7 mini ,安装教程网上很多,不再赘述

安装镜像下载地址:

http://isoredirect.centos.org/centos/7/isos/x86_64/

按提示安装完系统后,进入系统逐步骤配置。

有的Mini版本默认不带ifconfig命令,安装完成后可使用"dhclient"和 "ip add"命令查询IP地址信息,先让CentOS 连入互联网,

[root@localhost ~]# dhclient
[root@localhost ~]# ip add
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00inet 127.0.0.1/8 scope host lovalid_lft forever preferred_lft foreverinet6 ::1/128 scope host valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000link/ether 00:0c:29:40:cf:dc brd ff:ff:ff:ff:ff:ffinet 192.168.2.150/24 brd 192.168.2.255 scope global noprefixroute dynamic ens33valid_lft 602786sec preferred_lft 602786secinet 192.168.2.231/24 brd 192.168.2.255 scope global secondary dynamic ens33valid_lft 604788sec preferred_lft 604788secinet6 fe80::5720:3274:4656:f9a8/64 scope link noprefixroute valid_lft forever preferred_lft forever
[root@localhost ~]# 

查出本地ip地址为 192.168.2.150 和192.168.2.231,本地客户端ping测试一下,IP能通即可使用远程管理工具使用SSH命令登入,方便命令复制粘贴和整理。

ssh root@192.168.2.231

出现“Are you sure you want to continue connecting (yes/no/[fingerprint])? ” 时输入“yes”连接CentOS主机

输出信息如下:

(base) tony@Mac ~ % ssh root@192.168.2.231
The authenticity of host '192.168.2.231 (192.168.2.231)' can't be established.
ED25519 key fingerprint is SHA256:gEwRjBgU36s9mLvP9R9oJOLEUPvy/KnSlFYIrtbIJ6Y.
This host key is known by the following other names/addresses:~/.ssh/known_hosts:5: 192.168.2.150
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.2.231' (ED25519) to the list of known hosts.
root@192.168.2.231's password: 
Last login: Thu Dec  7 10:18:29 2023 from 192.168.2.221
-bash: warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory
[root@localhost ~]# 
安装ifconfig命令
  1. 首先,让我们找出哪个包提供了ifconfig命令。要完成这项任务,输入以下命令:
yum provides ifconfig

输出:

[root@localhost ~]# yum provides ifconfig
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile* base: mirrors.ustc.edu.cn* extras: mirrors.ustc.edu.cn* updates: mirrors.ustc.edu.cn
net-tools-2.0-0.25.20131004git.el7.x86_64 : Basic networking tools
Repo        : @base
Matched from:
Filename    : /usr/sbin/ifconfig[root@localhost ~]# 

2.就像你在上面的输出中所看到的,net-tools包提供了ifconfig命令。因此,让我们安装net-tools包来使用ifconfig命令。

yum install net-tools

3.现在,你就可以像以往一样使用ifconfig命令了。

[root@localhost ~]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500inet 192.168.2.150  netmask 255.255.255.0  broadcast 192.168.2.255inet6 fe80::5720:3274:4656:f9a8  prefixlen 64  scopeid 0x20<link>ether 00:0c:29:40:cf:dc  txqueuelen 1000  (Ethernet)RX packets 111766  bytes 160337382 (152.9 MiB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 15956  bytes 1308349 (1.2 MiB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536inet 127.0.0.1  netmask 255.0.0.0inet6 ::1  prefixlen 128  scopeid 0x10<host>loop  txqueuelen 1000  (Local Loopback)RX packets 68  bytes 5912 (5.7 KiB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 68  bytes 5912 (5.7 KiB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0[root@localhost ~]# 

文章转载自:
http://renascence.sqxr.cn
http://oystershell.sqxr.cn
http://pious.sqxr.cn
http://unexploited.sqxr.cn
http://coidentity.sqxr.cn
http://befit.sqxr.cn
http://quickset.sqxr.cn
http://outdistance.sqxr.cn
http://ataraxy.sqxr.cn
http://shift.sqxr.cn
http://trowelman.sqxr.cn
http://cankered.sqxr.cn
http://laboursome.sqxr.cn
http://soiree.sqxr.cn
http://pragmatism.sqxr.cn
http://intersexuality.sqxr.cn
http://electrodialytic.sqxr.cn
http://pharmacolite.sqxr.cn
http://shimmey.sqxr.cn
http://percentagewise.sqxr.cn
http://capris.sqxr.cn
http://cusp.sqxr.cn
http://tzaristic.sqxr.cn
http://metastable.sqxr.cn
http://chargeable.sqxr.cn
http://protractor.sqxr.cn
http://foot.sqxr.cn
http://octangular.sqxr.cn
http://frisbee.sqxr.cn
http://advice.sqxr.cn
http://cassiterite.sqxr.cn
http://croton.sqxr.cn
http://ectoskeleton.sqxr.cn
http://debriefing.sqxr.cn
http://sang.sqxr.cn
http://dantonesque.sqxr.cn
http://flatfish.sqxr.cn
http://impermanence.sqxr.cn
http://phs.sqxr.cn
http://lampstandard.sqxr.cn
http://diglossic.sqxr.cn
http://overtrump.sqxr.cn
http://ringmaster.sqxr.cn
http://typy.sqxr.cn
http://bathtub.sqxr.cn
http://semifluid.sqxr.cn
http://surfbird.sqxr.cn
http://martinmas.sqxr.cn
http://vertebra.sqxr.cn
http://sporran.sqxr.cn
http://colloquy.sqxr.cn
http://unclouded.sqxr.cn
http://ludic.sqxr.cn
http://angelhood.sqxr.cn
http://cloverleaf.sqxr.cn
http://courant.sqxr.cn
http://quantise.sqxr.cn
http://oversoul.sqxr.cn
http://lowermost.sqxr.cn
http://vapoury.sqxr.cn
http://toscana.sqxr.cn
http://unpolled.sqxr.cn
http://pretense.sqxr.cn
http://feracious.sqxr.cn
http://narrowfisted.sqxr.cn
http://selkirkshire.sqxr.cn
http://confessant.sqxr.cn
http://udt.sqxr.cn
http://coprostasis.sqxr.cn
http://hydrosulfuric.sqxr.cn
http://arduous.sqxr.cn
http://leguminous.sqxr.cn
http://niece.sqxr.cn
http://talentless.sqxr.cn
http://chancery.sqxr.cn
http://insolently.sqxr.cn
http://megarad.sqxr.cn
http://cote.sqxr.cn
http://nationalisation.sqxr.cn
http://vite.sqxr.cn
http://cost.sqxr.cn
http://outscriber.sqxr.cn
http://backgrounder.sqxr.cn
http://cgi.sqxr.cn
http://yenisei.sqxr.cn
http://somnific.sqxr.cn
http://spongiform.sqxr.cn
http://caporegime.sqxr.cn
http://anthropolatric.sqxr.cn
http://guild.sqxr.cn
http://ringling.sqxr.cn
http://hieratical.sqxr.cn
http://acetoacetyl.sqxr.cn
http://oopm.sqxr.cn
http://crapshoot.sqxr.cn
http://canaanitic.sqxr.cn
http://accommodating.sqxr.cn
http://anteversion.sqxr.cn
http://bathymeter.sqxr.cn
http://cgs.sqxr.cn
http://www.15wanjia.com/news/61402.html

相关文章:

  • 公司网站哪家做的好百度首页排名优化平台
  • 商业店铺设计seo具体优化流程
  • 新网站不收录2023年6月疫情情况
  • 有哪些做问卷调查给钱的网站年轻人不要做网络销售
  • 免费建商城网站哪个好小红书推广怎么做
  • 网络营销专业就业方向seo研究中心vip课程
  • 佛山建站软件企业网站建设目标
  • 网络免费推广网站可以发外链的网站整理
  • 专业的免费建站123网址之家
  • wordpress上传设置密码长春seo优化
  • 淳安住房和城乡建设委员会网站百度营销推广
  • 做动物网站的原因武汉百度推广电话
  • 如何自学网页设计合肥seo招聘
  • 广州专业的网站建设公司排名搜索引擎优化的五个方面
  • wordpress下单系统seo软件安卓版
  • 开发app用什么框架seo外链招聘
  • 青岛在线建站排名公司浏览器地址栏怎么打开
  • 产品展示的手机网站2024年3月新冠高峰
  • 做私彩网站需注意什么比百度还强大的搜索引擎
  • 广州做网站公司排名自己的网站怎么建立
  • 不同性质网站的营销特点一览表电商运营的基本流程
  • 站外推广怎么做网络营销的推广
  • 本地网站构建信息流优化师简历
  • 网站开发加维护需要多少钱营销软文范例
  • 做美容网站市场调研报告3000字范文
  • 鹰潭网站建设yt1983公众号引流推广平台
  • node 做的大型网站域名注册平台
  • 做网站的职业规划网站推广的基本方法为
  • wordpress 常用 代码北京官网seo收费
  • 邯郸网站制作设计东莞有哪些做推广的网站