cd /var/lib/apt sudo mv lists lists.old sudo mkdir -p lists/partial sudo apt-get update 转自: http://askubuntu.com/questions/198371/apt-encounters-errors-with-bad-gpg-keys…
The GPG keys listed for the "Extra Packages for Enterprise Linux 5 - x86_64" repository are already installed but they are not correct for this package.Check that the correct key URLs are configured for this repository. 置换PM-GPG-KEY [root@HM-174…
今天给树莓派换源,爆出N个这错误: W: GPG error: http://mirrors.neusoft.edu.cn/raspbian/raspbian wheezy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9165938D90FDDD2E 经过多番查找资料,解决了问题,记录下解决过程. 介绍: GPG是啥: 这玩意…
SSH Keys vs GPG Keys SSH Keys SSH keys allow you to establish a secure connection between your computer and GitLab. https://gitlab.com/help/ssh/README#generating-a-new-ssh-key-pair https://gitlab.com/help/ssh/README#locating-an-existing-ssh-key-pair…
最小安装: 1. 选择English 2. DATE & TIME 修改好本地时间 SOFTWARE SELECTION默认的Minimal Install就好 INSTALLATION DESTINATION选一下 然后,Begin Installation 3. ROOT PASSWORD设置ROOT密码 USER CREATION设置新用户,勾选Make this user administrator 等待安装完成,点Reboot按钮. 配置静态IPv4: $ systemctl stat…
https://www.gnupg.org/download/ mac 方式一:推荐 mac $ brew install gpg pinentry pinentry-mac $ echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf $ killall gpg-agent 如果使用期间发生错误,参考后面的 Inappropriate ioctl for device 配置…
首先在本地创建 SSH Keys $ ssh-keygen -t rsa -C "18817801185@163.com" 后面的邮箱即为 github 注册邮箱,之后会要求确认路径和输入密码,一路回车就行. 成功的话会在 ~/ 下生成 .ssh文件夹,进去,打开 id_rsa.pub,复制里面的key. 那么问题来了,如何进入到 ~/ 路径下找到 .ssh 文件夹呢? 使用命令 cd ~/.ssh 出现提示 "No such file or directory",…
jenkins+github配置完成后,能够实现在提交pull request或者直接push时,能够将提交的代码拉去一份到服务器本地,并自动merge:但是代码拉去下来了,部署环境的时候却需要输入登录服务器的登陆名跟密码:jenkins部署都是自动完成的,万一每次都需要输入用户名跟密码后,才能操作服务器上的代码进行环境部署,那就太不自动化了:所以需要配置ssh-key让git到服务器切换自如,不用再验证身份: github官网给的配置的文章链接:https://help.github.com/…
https://gist.github.com/fernandoaleman/1376720  How to sign your custom RPM package with GPG key 这是文件rpm-digital-signature.sh #rpm-digital-signature.sh # How to sign your custom RPM package with GPG key # Step: # Generate gpg key pair (public key and…
Creating GPG Keys - Fedora Project Wiki https://fedoraproject.org/wiki/Creating_GPG_Keys…
0. 无废话版本 需求: 有一堆 .deb 包,想把它们做成一个 APT 仓库,这样就可以用apk install pkgname进行安装了,这样一方面自己可以规避 dpkg -i xxx.deb 时候的依赖问题,另一方面也方便了其他人 解决方法: mkdir -p /opt/raspi-apt-repos/raspbian8 cp ~/Downloads/raspbian8/*.deb /opt/raspi-apt-repos/raspbian8 cd /opt/raspi-apt-repos…
SSH 为 Secure Shell 的缩写,由 IETF 的网络小组(Network Working Group)所制定.利用 SSH 协议可以有效防止远程管理过程中的信息泄露问题.简单说,SSH是一种网络协议,用于计算机之间的加密登录. 最早的时候,互联网通信都是明文通信,一旦被截获,内容就暴露无疑.1995年,芬兰学者Tatu Ylonen设计了SSH协议,将登录信息全部加密,成为互联网安全的一个基本解决方案,迅速在全世界获得推广,目前已经成为Linux系统的标准配置.如果要在Window…
全局配置 Vue.config is an object containing Vue's global configurations. You can modify its properties listed below before bootstrapping your application: Vue.config是包含Vue的全局配置的对象.在启动应用程序之前,可以修改下面列出的属性: 英文原文出自:https://vuejs.org/v2/api/#performance silent…
Introduction The RPM Package Manager (RPM) is an open packaging system that runs on Fedora as well as other Linux and UNIX systems. Red Hat and the Fedora Project encourage other vendors to use RPM for their own products. RPM is distributed under the…
安装步骤参官方 https://docs.microsoft.com/zh-cn/sql/linux/sql-server-linux-setup-ubuntu 执行命令如下: .Enter superuser mode. sudo su .Import the public repository GPG keys: curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - .Register the Micro…
1,安装时发现默认的源里面没有transmission-daemon包 pi@fynn:/etc/apt/sources.list.d $ sudo apt-get install transmission-daemon Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package transmission-daemon 2,…
在开发安卓应用中避免不了要使用到网络图片,获取网络图片很简单,但是需要付出一定的代价——流量.对于少数的图片而言问题不大,但如果手机应用中包含大量的图片,这势必会耗费用户的一定流量,如果我们不加以处理,每次打开应用都去网络获取图片,那么用户可就不乐意了,这里的处理就是指今天要讲的缓存策略(缓存层分为三层:内存层,磁盘层,网络层). 关于缓存层的工作,当我们第一次打开应用获取图片时,先到网络去下载图片,然后依次存入内存缓存,磁盘缓存,当我们再一次需要用到刚才下载的这张图片时,就不需要再重复的到网络…
这几天一直研究在安卓开发中图片应该如何处理,在网上翻了好多资料,这里做点小总结,如果朋友们有更好的解决方案,可以留言一起交流下. 内存缓存技术 在我们开发程序中要在界面上加载一张图片是件非常容易的事情,但如果是加载一堆图片呢?比如ListView,GridView这类的控件,随着屏幕滑动,图片加载也会越来越多,应用程序所可以使用的内存毕竟是有限的,如果一味的去加载图片,很容易导致OOM(Out Of Memory)内存溢出,导致程序崩溃. 这里我们一般的做法是将显示在屏幕之外的图片进行内存回收,…
Install MongoDB on Debian¶ This tutorial outlines the steps to install MongoDB on Debian systems. The tutorial uses .deb packages to install. While some Debian distributions include their own MongoDB packages, the official MongoDB packages are genera…
/** The handler class is the interface for dynamically loadable storage engines. Do not add ifdefs and take care when adding or changing virtual functions to avoid vtable confusion */ class handler :public Sql_alloc { public: typedef ulonglong Table_…
Linux Disibutaion:Ubuntu 16.04.1 LTS Web Server:Nginx.Kestrel 安装.net core sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list' sudo apt-key adv --key…
step_1 http://wiki.centos.org/AdditionalResources/Repositories/RPMForge step_2 http://wiki.centos.org/TipsAndTricks/MultimediaOnCentOS detail: Installing RPMforge RPMforge is a collaboration of Dag and other packagers. They provide over 5000 packages…
CentOS 下安装apt-get 最近在学习Linux系统时,网上好多帖子都是用apt-get里下载rpm包,于是就在Google上找了个CentOS下安装apt-get的方法 1.下载地址:http://pkgs.repoforge.org/rpmforge-release/ 2.根据自己的系统下载对应的包(我是CentOS 7,下载: rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm ) 3.双击安装,这一步做的其实就是将mirrors-rpmforge…
前言  Git是一个开源的分布式版本控制系统.其核心就在于版本控制.  在实际编码过程中,我们往往会忘记上次对文件的修改内容.若是刚刚修改的还好说,撤销操作即可.但若这是你昨天做的修改并关闭了IDE呢?所以我们需要有一个可以回退版本的工具.  Git还有另一个作用便是多人协作开发--将代码文件上传至云端,partner可以随时下载至自己的电脑,又可以随时做好修改再上传至云端.  我将学习Git分为三块,大家跟着我的步骤做一遍也就会了. 配置Git及配置Github 本地Git操作 远程推送操作…
转载自:http://blog.csdn.net/Mungo/article/details/78521832?locationNum=9&fps=1 本文介绍如何使用docker迅速搭建MySQL的运行环境. 使用docker hub镜像 查找镜像 首先查找Docker Hub上的mysql镜像,有两种方式: 其一,直接登录docker hub网站https://hub.docker.com/搜索,可以知道镜像地址为https://hub.docker.com/_/mysql/. 其二,可以使…
DiskLruCache这个类我记忆中是来自Google的一个开源项目,叫做BitmapFun,目的是更方便的加载bitmap.项目的源码:https://developer.android.com/training/displaying-bitmaps/index.html,这个项目中就有一个DiskLruCache类,用来做图片的磁盘缓存.了解缓存机制的朋友应该知道缓存应该做内存和磁盘两个,这个类提供的磁盘缓存用的是Lru(最近最少使用)算法.这个算法保证了经常使用的数据会被缓存,如果经常没…
mongodb官网 The mongodb-org-server package provides an initialization script that starts mongod with the /etc/mongod.conf configuration file. See Run MongoDB Community Edition for details on using this initialization script. These packages conflict wit…
#安装sudo apt install git要先到github官网建一个账号. #配置 你的github git config --global user.name "fanbrightup"//即是你在github中的用户名 git config --global user.email "fanbright@126.com" (可以先跳过这两步,现在用不到) 查看配置信息 git config --list 编辑配置信息 gedit ~/.gitconfig #…
http://www.git-scm.com/download/ http://www.git-scm.com/download/win http://www.git-scm.com/download/mac https://www.kernel.org/pub/software/scm/git/git-2.19.1.tar.gz https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.19.1.tar.xz Git via Git…
一个利用内存缓存和磁盘缓存图片的例子 public class BitmapCache { public static final String TAG = "debug"; private LruCache<String, Bitmap> mBitmapCache; public BitmapCache() { // 获取到可用内存的最大值,使用内存超出这个值会引起OutOfMemory异常. // LruCache 使用的缓存值,使用系统分配给应用程序大小的 1/8 i…