Tag:Ubuntu

Ubuntu下如何删除旧内核

如果登录的时候碰到提示/boot分区空间已满,类似 => /boot is using 99.1% of 235MB 或者更新版本的时候报/boot分区空间已满,导致更新报错,并且无法安装或者卸载文件, Unpacking linux-image-3.13.0-65-generic (3.13.0-65.105) ... dpkg: error processing archive /var/cache/apt/archives/linux-image-3.13.0-65-generic_3.13.0-65.105_amd64.deb (--unpack): cannot copy extracted data for './boot/System.map-3.13.0-65-generic' to '/boot/System.map-3.13.0-65-generic.dpkg-new': failed to write…

Read More

在Ubuntu下安装RPostgreSQL

在Windows上安装RPostgreSQL非常简单, install.packages("RPostgreSQL") 但同样都命令在Ubuntu(Linux)环境下就会遇到如下错误, checking for "/libpq-fe.h"... no configure: creating ./config.status config.status: creating src/Makevars gcc -std=gnu99 -I/usr/share/R/include -DNDEBUG -I -fpic -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c RS-DBI.c -o…

Read More

PostgreSQL9.5 下安装MADlib

下载安装MADlib前的准备工作,安装编译环境和必要的组件: apt-get update apt-get install build-essential m4 postgresql-server-dev-9.5 \ postgresql-plpython-9.5 git cmake 下载、编译、安装MADlib: git clone https://github.com/apache/incubator-madlib cd incubator-madlib ./configure make install 部署MADlib到指定数据库 /usr/local/madlib/bin/madpack -p postgres -c postgres@127.0.0.1/test install  

Read More

Ubuntu下安装Rattle

Rattle是基于R的一款可视化挖掘工具,是众多知名R GUI的一个,这里介绍下Ubuntu下安装Rattle的注意事项, install.packages("rattle") * installing *source* package ‘RGtk2’ ... ** package ‘RGtk2’ successfully unpacked and MD5 sums checked checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes…

Read More