防止网站内容被复制的方法

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
</head>
<body>
    <div>
     
* 安装: apt-get install packs 
* apt-get update : 更新源 
* apt-get upgrade: 升级系统。 
* apt-get dist-upgrade: 智能升级。安装新软件包,删除废弃的软件包 
* apt-get -f install : -f == --fix broken 修复依赖 
* apt-get autoremove: 自动删除无用的软件 
* apt-get remove packages :删除软件 
* apt-get remove package --purge 删除包并清除配置文件 
* 清除所以删除包的残余配置文件: dpkg -l |grep ^rc|awk '{print $2}' |tr ["/n"] [" "]|sudo xargs dpkg -P 
* 安装软件时候包的临时存放目录 : /var/cache/apt/archives 
* 清除该目录: apt-get clean 
* 清除该目录的旧版本的软件缓存: apt-get autoclean 
* 查询软件some的依赖包: apt-cache depends some 
* 查询软件some被哪些包依赖: apt-get rdepends some 
* 搜索软件: apt-cache search name|regexp 
* 查看软件包的作用:apt-cache show package
* 查看一个软件的编译依赖库: apt-cache showsrc packagename|grep Build-Depends 
* 下载软件的源代码 : apt-get source packagename (注: sources.list 中应该有 deb-src 源)
* 安装软件包源码的同时, 安装其编译环境 :apt-get build-dep packagename (有deb-src源)
* 如何将本地光盘加入安装源列表: apt-cdrom add
    </div>

    <script>
        document.onselectstart=function() {return false;}   
        document.oncopy=function() {return false;}  
    </script>
</body>
</html>
原文地址:https://www.cnblogs.com/wuheng1991/p/5173546.html