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

电子商务网站面临的安全隐患做公司+网站建设

电子商务网站面临的安全隐患,做公司+网站建设,网站开发流程包括,深圳福田最大网站公司编辑整理 by Staok。 注#xff1a;在 Github 上的原版文章日后可能会更新#xff0c;在其它位置发的不会跟进。文章的 Gitee 仓库地址#xff0c;Gitee 访问更流畅。 Ubuntu 下的包管理 / apt工具 包管理系统的功能和优点大致相同#xff0c;但打包格式和工具会因平台在 Github 上的原版文章日后可能会更新在其它位置发的不会跟进。文章的 Gitee 仓库地址Gitee 访问更流畅。 Ubuntu 下的包管理 / apt工具 包管理系统的功能和优点大致相同但打包格式和工具会因平台不同的 Linux 发行版而异如下表所示。 操作系统格式工具Debian.debapt, apt-cache, apt-get, dpkgUbuntu.debapt, apt-cache, apt-get, dpkgCentOS.rpmyumFedora.rpmdnfFreeBSDPorts, .txzmake, pkg 一般来说 Ubuntu 下很多软件是需要先自行提供源码使用源码自行编译编译完成以后使用命令 “install” 来安装到系统中。当然 Ubuntu 下也有其它的软件安装方法使用得最多的方法就是自行编译源码后进行安装尤其是嵌入式 Linux 开发。 自行对软件源码编译的一个好处是可以针对不同平台进行编译和部署。 我们利用软件包管理系统可以直接下载并安装所有通过认证的软件其中 Ubuntu 下我们用的最多的下载工具 APT 下载工具 APT 下载工具可以实现软件自动下载、配置、安装二进制或者源码的功能。 在我们使用 APT 工具下载安装或者更新软件的时候首先会在下载列表中与本机软件进行对比看一下需要下载哪些软件或者升级哪些软件默认情况下 APT 会下载并安装最新的软件包被安装的软件包所依赖的其它软件也会被下载安装或者更新非常智能省心。 包管理工具 apt Linux apt 命令 | 菜鸟教程 (runoob.com)。 # package 替换为 包名。 sudo apt-get update                         更新源 sudo apt-get upgrade                       更新已安装的包 sudo apt-get install package               安装包 sudo apt-get remove package                 删除包 ​ sudo apt-cache search package               搜索软件包 sudo apt-cache show package                 获取包的相关信息例如说明、大小、脚本等 ​ sudo apt-get install package --reinstall   重新安装包 sudo apt-get -f install                     修复安装 sudo apt-get remove package --purge         删除包包括配置文件等 sudo apt-get build-dep package             安装相关的编译环境 sudo apt-get dist-upgrade                   升级系统 sudo apt-cache depends package             了解使用该包依赖那些包 sudo apt-cache rdepends package             查看该包被那些包依赖 sudo apt-get source package                 下载该包的源代码 换源 和 添加系统变量 换源 Ubuntu Ports更换成阿里云镜像源-阿里云开发者社区 (aliyun.com)。 首先备份源列表sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup 编辑 /etc/apt/sources.list 文件在文件最前面添加镜像源 # 阿里源 deb https://mirrors.aliyun.com/ubuntu-ports/ xenial main restricted universe multiverse deb https://mirrors.aliyun.com/ubuntu-ports/ xenial-updates main restricted universe multiverse deb https://mirrors.aliyun.com/ubuntu-ports/ xenial-backports main restricted universe multiverse deb https://mirrors.aliyun.com/ubuntu-ports/ xenial-security main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse # deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse # deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse ​ # 清华源 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse# 中科大源 deb https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse ​ # 163源 deb http://mirrors.163.com/ubuntu/ bionic main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ bionic-security main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ bionic-updates main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ bionic-proposed main restricted universe multiverse deb http://mirrors.163.com/ubuntu/ bionic-backports main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ bionic-security main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ bionic-updates main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ bionic-proposed main restricted universe multiverse deb-src http://mirrors.163.com/ubuntu/ bionic-backports main restricted universe multiverse 更新源 sudo apt update sudo apt upgrade 添加系统变量 临时终端中键入 export PATH$PATH:目录/要添加的系统变量重启后丢失。 永久只对当前用户有效修改 ~/.bashrc 文件在行尾添加 export PATH$PATH:目录/要添加的系统变量然后终端键入 source ~/.bashrc 使之生效即可。 Ubuntu 下的卸载包 Ubuntu GUI 界面操作 使用 Synaptic 软件包管理器进行卸载。系统里面若没有 Synaptic Pack Manager 软件则在终端安装 sudo apt-get install synaptic具体使用方法。 使用 Ubuntu 的软件中心进行卸载。略。 Ubuntu 终端里操作 列出所有软件包以可翻页的形式dpkg --list | less以搜索特定包名的形式dpkg --list | grep -n python还可以加通配符很灵活。 卸载程序和所有配置文件sudo apt-get --purge remove package-name。 只卸载程序但保留配置文件sudo apt-get remove package-name。 删除没用的依赖包sudo apt-get autoremove package-name加上 --purge 选项就是程序和配置文件都删除。资源不紧张时此条慎用。
http://www.hkea.cn/news/14592771/

相关文章:

  • 加强网站内容建设的意见深圳网站建设与设计制作
  • 丽泽桥网站建设做一个小公司网站多少钱
  • 做手表网站用什么源码比较好设计说明室内设计
  • 做尾货的网站网页制作怎么做横条导航栏
  • 广州网站推广联盟微信小程序开发官方文档
  • 建立网站就是制作网页对吗深圳设计公司最新招聘
  • 传送门网站是怎么做的网站设计的基本步骤
  • 找人做网站!!! 网站定制开发中国商机网官网
  • 北京网站建设报价北京建王环境发展有限公司
  • 贵州建设厅网站怎样查询电工证wordpress 自定义布局
  • 运动网站源码搜索引擎优化代理
  • 青岛建站推广连锁加盟网站制作
  • 济宁手机网站建设公司佛山市网站建设 骏域动力
  • 上海高端定制网站公司我自己怎么建网站
  • 学网站开发推荐书图片在线编辑器免费
  • 怎么样免费给网站做优化中国搜索引擎大全
  • 玉林网站建设公司装企erp管理系统
  • 网站建设与管理的实训报告贵州企业展示型网站建设
  • 电子商务网站建设a卷广州天拓做网站吗
  • 车间管理系统中山做网站优化
  • 塔罗牌手机网站制作小型公众号开发
  • 东莞网站设计找谁网站建设佰金手指科杰二五
  • 兴山县铁路建设协调指挥部网站珠海网站建设平台
  • 美化wordpress后台宁波seo优化
  • 旅游网站网页设计方案我自己的网站
  • 美的企业微信网站外链网站推荐几个
  • 编写网站的语言有哪些响应式网站建设好么
  • 青岛网站建设公司怎么样国际新闻头条最新热点新闻
  • 做优惠券网站网站开发商外包
  • 连连建设跨境电商网站wordpress文章添加seo标题代码