1 List the installed dpkg package $ sudo dpkg --list 2 Reconfigure the package $ sudo dpkg-reconfigure <package-name> $ sudo dpkg-reconfigure tzdata $ sudo dpkg-reconfigure locales…
Show current machine architecture dpkg --print-architecture It's built-in to the currently installed dpkg package. Usage use 'package:architecture', eg. libc:i386 libc:amd64 只用'package'的话,安装的是current machine architecture Add architecture dpkg --add-a…
参考: dpkg: warning: files list file for package 'x' missing 解决 dpkg: warning: files list file for package 'x' missing 问题 在Ubuntu下通过apt-get安装软件或者更新时,出现大量的dpkg: warning日志: dpkg: warning: files list file for package 'libssh2-1:amd64' missing; assuming pa…
apt-get install <package> Downloads <package> and all of its dependencies, and installs or upgrades them. apt-get remove [--purge] <package> Removes <package> and any packages that depend on it. --purge specifies that packages shou…
ubuntu通过ppa源安装jdk时遇到如下问题: download failedOracle JDK 8 is NOT installed.dpkg: error processing package oracle-java8-installer (--configure): subprocess installed post-installation script returned error exit status 1Errors were encountered while proces…
安装 sudo dpkg -i DEB_PACKAGE 卸载 sudo dpkg -r PACKAGE_NAME 重新配置已安装的包 Reconfigure an existing package 例如: sudo dpkg-reconfigure keyboard-configuration 在终端输入之后,会进入重新配置keyboard的界面.…
升级R版本后,若重新安装所有的package将非常麻烦,可以尝试运行一下程序: 1)在旧版本中的R中运行 #--run in the old version of R setwd("C:/Temp/")  #注意要在C盘中新建Temp文件夹 packages <- installed.packages()[,"Package"] save(packages, file="Rpackages") 2)在新版本中的R运行 #--run in t…
It has been possible for some years to launch a web map from within R. A number of packages for doing this are available, including: RgoogleMaps, an interface to the Google Maps api leafletR, an early package for creating Leaflet maps with R rCharts,…
解决Sublime包管理package control 报错 There are no packages available for installation 真的是哔了狗了,要不是我机智的重新安装了一个新的,我特么都不知道错在哪. 解决1: 网上说是因为IPV6的问题,导致无法访问sublime的官网,于是在host中添加如下对应ip #sublime 50.116.34.243 sublime.wbond.net 解决2: 第一种方式如果能解决了,我压根就不看解决2,但是你既然看到了解决2,…
先了解下概念: jdk(java development kit),就是java的开发工具集,顾名思义就是做开发用的,其中包括javac,也就是java compiler等.jre(java runtime environment),就是java程序的运行环境.所写的java程序在经过javac编译后会形成字符行文件,这个java的中间文件,计算机是看不懂的,而这个文件是给jvm(java的虚拟机)用的,由jvm进行解释后形成机器语言给计算机.而这个jvm就在jre中,也就是说java程序的运行…
Linux软件安装 来源:https://segmentfault.com/a/1190000011200004?share_user=1030000007255638 一.安装包分类 在Linux平台下,软件包的类型可以划分为两类:源码包.二进制包. 源码包:即程序软件的源代码(一般也叫Tarball,即将软件的源码以tar打包后再压缩的资源包). 二进制包:如 Red Hat发行版的.rpm包,Debian发行版的.deb包. 这篇文章将要介绍的是Linux平台下的源码安装,关于二进制包的安…
摘要:软件厂商先在他们的系统上面编译好了我们用户所需要的软件,然后将这个编译好并可执行的软件直接发布给用户安装.不同的 Linux 发行版使用不同的打包系统,一般而言,大多数发行版分别属于两大包管理技术阵营: Debian 的”.deb”,和 Red Hat的”.rpm”.也有一些重要的例外,比方说 Gentoo, Slackware,和 Foresight,但大多数会使用这两个基本系统中的一个.这里将要介绍的是Debian系列发行版的dpkg与apt-*的详细使用方法. 注:本人系统版本[Ub…
apt list *python* Nosee123关注赞赏支持   Linux软件安装管理之--dpkg与apt-*详解 [Linux软件安装管理系列]- - 传送门: - -<Linux软件安装管理之--源码安装详解> - -<Linux软件安装管理之--RPM与YUM详解> - -<Linux软件安装管理之--dpkg与apt-*详解> 一.序言 上一篇文章<Linux软件安装管理之--源码安装详解>详细介绍了Linux平台下的源码包安装原理,虽然使用…
Linux软件安装管理之--dpkg与apt-*详解 [Linux软件安装管理系列]- - 传送门: - -<Linux软件安装管理之--源码安装详解> - -<Linux软件安装管理之--RPM与YUM详解> - -<Linux软件安装管理之--dpkg与apt-*详解> 一.序言 上一篇文章<Linux软件安装管理之--源码安装详解>详细介绍了Linux平台下的源码包安装原理,虽然使用源代码进行软件编译可以具有定制化的设置,但对于Linux distri…
inux软件安装管理之--dpkg与apt-*详解 Nosee123关注 0.5922017.09.12 17:47:44字数 3,894阅读 8,565 [Linux软件安装管理系列]- - 传送门: - -<Linux软件安装管理之--源码安装详解> - -<Linux软件安装管理之--RPM与YUM详解> - -<Linux软件安装管理之--dpkg与apt-*详解> 一.序言 上一篇文章<Linux软件安装管理之--源码安装详解>详细介绍了Linux…
参考:https://www.cnblogs.com/ae6623/p/5338049.html,解决2帮我解决问题. 解决Sublime包管理package control 报错 There are no packages available for installation 真的是哔了狗了,要不是我机智的重新安装了一个新的,我特么都不知道错在哪. 解决1: 网上说是因为IPV6的问题,导致无法访问sublime的官网,于是在host中添加如下对应ip #sublime 50.116.34.2…
转自: apt-get 总结 1.apt-get install <package_name> install a new package. 2.apt-get build-dep <package_name> search the repositories and install the build dependcies for <package_name>. build-dep causes apt-get to install/remove packages in…
Introduction Nginx is one of the most popular web servers in the world and is responsible for hosting some of the largest and highest-traffic sites on the internet. It is more resource-friendly than Apache in most cases and can be used as a web serve…
xfce4 dev tools实际上基本是封装了一些autoconf的宏函数 比如XDT_I18N: AC_DEFUN([XDT_I18N], [ dnl Substitute GETTEXT_PACKAGE variable GETTEXT_PACKAGE=m4_default([$], [AC_PACKAGE_TARNAME()]) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Name of defaul…
1,先到chrome官网下载一个安装包 http://www.google.com/intl/zh-CN/chrome/ 2,ctrl+alt+t 打开终端. 3,在终端里输入sudo apt-get -f update -f 是强制安装缺少的组件,不提示询问. 4,进入到home目录下面的download文件夹,执行下面命令 sudo dpkg -i google google-chrome-stable_current_amd64.deb 5,Dash主页里面搜索chrome就可以搜到,ok…
1.在Google chrome上面下载Chrome浏览器.选择正确的版本,我电脑是64位的所以选择的是[64 bit .deb (适用于 Debian/Ubuntu)]. google-Chrome 2.Ctrl+Alt+T 打开终端,进入你刚刚下载好的Chrome包存放的文件夹(我是直接下载到默认位置的): $ cd -/Downloads 3.使用dpkg命令安装Chrome包: $ sudo dpkg -i google-chrome-stable_current_amd64.deb 不…
Elementary OS Freya 0.3.2 was officially out for public. As previous release, it comes pre-installed with Midori browser – a clean, lightweight, simple but beautiful web browser. However I prefer to use Google Chrome than Midori. This post will show…
ubuntu-14.04下openerp安装记录1.安装PostgreSQL 数据库    a.安装         sudo apt-get install postgresql    安装后ubuntu系统会增加一个名为postgres的用户    b.设置PostgreSQL数据库用户(以ubuntu系统中的postgres用户进行设置)        进入postgres用户环境:sudo su postgres        为数据库创建一个名为openerp的新用户:createus…
/etc This is the nerve center of your system, it contains all system related configuration files in here or in its sub-directories. A "configuration file" is defined as a local file used to control the operation of a program; it must be static a…
dpkg(package manager for Debian): debian体系中的包管理工具. Commands: -i|--install <.deb file name> ... | -R|--recursive <directory> ... -r|--remove <package> ... | -a|--pending 1.查看已经安装的软件 $ dpkg -l Desired=Unknown/Install/Remove/Purge/Hold | St…
The packages we need for ubuntu12.04 and its derived destros are: libimobiledevices, libplist, libusbmuxd Mostly the important thing is libimobiledevices. and it has an official site: http://libimobiledevice.org   . You can download the sources codes…
RPM/DPKG 两大阵营简介 在 GNU/Linux( 以下简称 Linux) 操作系统中,RPM 和 DPKG 为最常见的两类软件包管理工具,他们分别应用于基于 RPM 软件包的 Linux 发行版本和 DEB 软件包的 Linux 发行版本.软件包管理工具的作用是提供在操作系统中安装,升级,卸载需要的软件的方法,并提供对系统中所有软件状态信息的查询. RPM 全称为 Redhat Package Manager,最早由 Red Hat 公司制定实施,随后被 GNU 开源操作系统接受并成为很…
转自:http://blog.csdn.net/carolzhang8406/article/details/14198219 在正式进入讨论之前,先贴几条非常有用的link: linux 发行版比较:http://zh.wikipedia.org/wiki/Linux%E5%8F%91%E8%A1%8C%E7%89%88%E6%AF%94%E8%BE%83 linux发行版列表:http://zh.wikipedia.org/wiki/Linux%E5%8F%91%E8%A1%8C%E7%89…
linux平台软件包管理: RPM/DPKG 两大阵营简介 在 GNU/Linux( 以下简称 Linux) 操作系统中,RPM 和 DPKG 为最常见的两类软件包管理工具,他们分别应用于基于 RPM 软件包的 Linux 发行版本(centos/suse/redhat)和 DEB 软件包的 Linux 发行版本(Ubuntu/debain).软件包管理工具的作用是提供在操作系统中安装,升级,卸载需要的软件的方法,并提供对系统中所有软件状态信息的查询. RPM 全称为 Redhat Packag…
转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具.解决方案和服务,赋能开发者.本有由葡萄城技术团队翻译并整理 自微软开始宣布拥抱开源以来,我认为微软发布的最棒的两大功能是:Visual Studio Code(VS Code)和Windows子系统Linux(WSL),有了这两者的结合,它为软件开发人员开辟了一条新的编写代码的途径. WSL使开发人员能够在Windows 10上运行Linux环境,而无需付出更多使用虚拟机时的开销.使用WSL,我们可以从Windows应用商店上安装大多…