当前位置: 首页 > 编程笔记 >

script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本

秦才
2023-03-14
本文向大家介绍script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本,包括了script_tool_for_linux.bash: Linux 环境下的 hosts 一键部署脚本的使用技巧和注意事项,需要的朋友参考一下

Linux 环境下的 hosts 一键部署脚本,由 @lstoars 贡献; @fluviusmagnus 提供增强版本。

官方网站:https://github.com/racaljk/hosts/tree/master/hosts_tools

#!/bin/sh
#
# script_tool_for_linux
#
# Use command: `sudo sh script_tool_for_linux.sh` or
#    `su -c 'sh script_tool_for_linux.sh'`
# to update your hosts file.
#
# WARNING: the script CAN NOT replace others' hosts rules.
#   If you have hosts rules provided by others, you may get conflict.
#
if [ `id -u` -eq 0 ]; then
 curl -fLo /tmp/fetchedhosts 'https://raw.githubusercontent.com/racaljk/hosts/master/hosts'
 sed -i '/# Copyright (c) 2014/,/# Modified hosts end/d' /etc/hosts

 sed -i "s/localhost/`hostname`/g" /tmp/fetchedhosts

 cat /tmp/fetchedhosts >> /etc/hosts
 rm -f /tmp/fetchedhosts

 echo 'Success.'
else
 echo 'Permission denied, are you root?'
fi
 类似资料:
  • 在开展实验之前,我们需要根据不同的平台提前安装相关依赖的软件包,具体需要的软件包如下: Rust 工具链 Rust 版本管理工具:rustup Rust 软件包管理工具:cargo Rust 编译器:rustc 等等 虚拟机软件:QEMU (版本至少支持 RISC-V 64) 具体安装的方法在不同平台上安装方式类似,但也有细微差别,后面会有具体说明。 安装 QEMU 根据不同平台,我们分为下面 3

  • 一、前置条件 Flume 需要依赖 JDK 1.8+,JDK 安装方式见本仓库: Linux 环境下 JDK 安装 二 、安装步骤 2.1 下载并解压 下载所需版本的 Flume,这里我下载的是 CDH 版本的 Flume。下载地址为:http://archive.cloudera.com/cdh5/cdh/5/ # 下载后进行解压 tar -zxvf flume-ng-1.6.0-cdh5.1

  • 一、安装Hive 1.1 下载并解压 下载所需版本的 Hive,这里我下载版本为 cdh5.15.2。下载地址:http://archive.cloudera.com/cdh5/cdh/5/ # 下载后进行解压 tar -zxvf hive-1.1.0-cdh5.15.2.tar.gz 1.2 配置环境变量 # vim /etc/profile 添加环境变量: export HIVE_HOM

  • 标签(空格分隔): EBOOKCHAIN PM2 NODEJS [TOC] 前言 部署前请先安装Ebookcoin 请参考官方wiki:https://github.com/Ebookcoin/ebookcoin/wiki/ pm2简介 Node.js默认单进程运行,对于32位系统最高可以使用512MB内存,对于64位最高可以使用1GB内存。对于多核CPU的计算机来说,这样做效率很低,因为只有一个

  • PWA 项目必须部署在 HTTPS 环境上才能够生效,主要是因为 Service Worker 只会在 HTTPS 环境下才能注册成功,我们不用担心在本地开发的时候 Service Worker 是否生效的问题,因为 Service Worker 在 localhost 和 127.0.0.1 的 host 下是能够注册成功的,这样可以确保我们在本地调试工作是能够顺利进行的。我们这里讲述的是如何部

  • 本文向大家介绍ubuntu16.4下用jexus部署ASP.NET Core环境,包括了ubuntu16.4下用jexus部署ASP.NET Core环境的使用技巧和注意事项,需要的朋友参考一下 上篇文章介绍了下用vs发布部署到iis环境,今天说下ubuntu下部署asp.net core,不需要安装.net core sdk,自带运行时方式部署,利用jexus服务器转发请求到asp.net co