由买买提看人间百态

topics

全部话题 - 话题: dpkg
1 2 3 下页 末页 (共3页)
z****t
发帖数: 1090
1
对 我刚在也想 不如看看哪些脚本里有这句
但没有bootchart 还是现在正常了才没有的
$ grep "uname -r" /var/lib/dpkg/info/*
/var/lib/dpkg/info/libc6.preinst: kernel_rev=$(uname -r | sed 's/\([0-9
]*\.[0-9]*\.\)\([0-9]*\)\
(.*\)/\2/')
/var/lib/dpkg/info/libc6.preinst: kernel_ver=`uname -r`
/var/lib/dpkg/info/libc6.preinst: kernel_ver=`uname -r`
/var/lib/dpkg/info/linux-image-2.6.32-25-generic.prerm:chop($running=`uname
-r`);
/var/lib/dpkg/info/linux-image-2.6.35-22-generic.prerm:chop($running=`uname
-r`);
/var/lib/... 阅读全帖
z****t
发帖数: 1090
2
标题是起着玩的,吸引眼球。 但还是头一次碰到问题网上找不到任何线索来解决了。

用了10.10几天没什么问题, 今天突然用软件中心或新立得安装删除软件时 突然有了
这个错误 dpkg: version
'uname -r' has bad syntax
取不到内核版本,导致后面的错误。 还以为是dpkg的问题,但试着重装过dpkg不行,
同样的错误; 试着从live
cd重装dpkg也是同样的错误。 现在怀疑是shell的问题, shell执行的时候'uname
-r' 没有当成命令执行。 但
不知道可以怎么解决, 换个shell吗 有没有问题。 ubuntu默认的shell是 /bin/bash
dpkg: version 'uname -r' has bad syntax: version string has embedded spaces
dpkg: version 'uname -r' has bad syntax: version string has embedded spaces
dpkg: version 'uname -r' has bad synt... 阅读全帖
y***d
发帖数: 2330
3
dpkg 这个程序里面有这个字符串,应该是对 dpkg 的调用出的问题;
如果想折腾,你可以,比如,把 dpkg 改名成 xxx,写一个新的 dpkg,里面调用 xxx
,并且记录点啥东西,或者 sleep 一会,让你有机会截获它。
z****t
发帖数: 1090
4
下面是我刚刚在live cd下招待sudo apt-get upgrade时 的情况
前面有个Removing bootchart... 是因为这个错误第一次发生在我要删除bootchart时, 后来就一直有错 所
以bootchart实际上并没有删掉
...

Extracting templates from packages: 100%
Can not write log, openpty() failed (/dev/pts not mounted?)
(Reading database ... 210385 files and directories currently installed.)
Removing bootchart ...
dpkg: version 'uname -r' has bad syntax: version string has embedded spaces
dpkg: version 'uname -r' has bad syntax: v... 阅读全帖
z****t
发帖数: 1090
5
再执行了一下删除bootchart, 错误如下
$ sudo apt-get remove bootchart
[sudo] password for zebrat:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be REMOVED:
bootchart
0 upgraded, 0 newly installed, 1 to remove and 42 not upgraded.
1 not fully installed or removed.
After this operation, 127kB disk space will be freed.
Do you want to continue [Y/n]? Y
(Reading database ... 210385 files and directories currently installed.)
Removing bo... 阅读全帖
z****t
发帖数: 1090
6
贴个从一最开始的错误 也许这个installArchives有线索
installArchives() failed: Selecting previously deselected package ttf-ubuntu
-title.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database .... 阅读全帖
z****t
发帖数: 1090
7
网上找了个用live cd修复系统的方法 准备试试 不知道会不会管用 但我昨天用
live cd重装dpkg是有同样的错误
put you livecd in and restart...then just lo on to livecd....
then open terminal
type
sudo mkdir /mnt/repair
sudo mount /dev/?d?? /mnt/repair
*noted that ?d? mean part of your ubuntu root partition....it might be sda1.
..or hdb1 or sdb or whatever...depend where you install your ubuntu....
sudo chroot /mnt/repair su
sudo apt-get update
sudo apt-get upgrade
sudo aptitude upgrade
sudo apt-get -f install
sudo dpkg --configure -a
sudo... 阅读全帖
z****t
发帖数: 1090
8
有点线索了
/var/lib/dpkg/info/bootchart.preinst 里面有一句。 跟那个 bug类似
if dpkg --compare-versions "$2" lt "0.90.2-1"; then
。。。
那个fix是什么意思, 怎么操作的?
z****t
发帖数: 1090
9
可能就是这样
$ echo “uname -r”
uname -r
$ echo `uname -r`
2.6.35-22-generic
可以怎么查 bootchart那几个脚本里我都看了一下 没有这句
前面提到 在bootchart.postinst里有这样一句
if dpkg --compare-versions "$2" lt "0.90.2-1"
那我是不是应该改成
if dpkg --compare-versions `$2` lt '0.90.2-1'
但是$2是参数, 不是命令, 用"好象也可以。
z****t
发帖数: 1090
10
对 interactive的shell是bash 我的ls -l /bin/sh -> dash
我也怀疑这个 现在是不管执行都会有这个问题 因为一进安装或者删除后都要更新
很多东东 就都要用到kernel
号 可能是这个脚本在每次更新软件时都会被调用 我怎么能跟踪看哪个脚本出
的错?
另外问题是,如果是ubuntu bug, 奇怪怎么好象就我用这个问题。 我也没干什么, 就
是在线升级到10.10, 都
是正常使用而已。
曾经也试过用live cd的/var/lib/dpkg/available 来替代系统的 也不行。

y***d
发帖数: 2330
11
不知道怎么跟踪,version string has embedded spaces 存在于 /usr/bin/dpkg,看
看谁调用它?
或者重装...
z****t
发帖数: 1090
12
/usr/sbin/dpkg-statoverride 是个二进制文件
你是说把root删掉那种重装? 但怕太麻烦了 这么多软件得重装 虽然我/home是
另外一个分区
对 live cd会不会有什么恢复的功能
y***d
发帖数: 2330
13
“dpkg: version 'uname -r' has bad syntax: version string has embedded
spaces"
这个之前 log 说啥,可能也有帮助。

sda1.
N****w
发帖数: 21578
14
把 dpkg 的源码拿来编译个 dbg 版调试调试哈

什么用 也不想它每次启动就生
z****t
发帖数: 1090
15
不会啊
我现在非常怀疑这个问题就是bootchart搞得鬼 加上dpkg自己对安装过程中出错的时
候处理不当
z****t
发帖数: 1090
16
下面就是bootchart.postinst的代码 很短啊
#!/bin/sh -e
# This script can be called in the following ways:
#
# After the package was installed:
# configure
#
#
# If prerm fails during upgrade or fails on failed upgrade:
# abort-upgrade
#
# If prerm fails during deconfiguration of a package:
# abort-deconfigure in-favour
# removing
#
# If prerm fails during replacement due to co... 阅读全帖
n*****t
发帖数: 22014
17
# grep "uname -r" /var/lib/dpkg/info/*
look look which script has problem

for python support...
w*j
发帖数: 336
18
使用的是http://jeff.doozan.com/debian/的script, 安装完debian后,在第STEP 2,运行dpkg-reconfigure locales, 但进行不下去了,说/usr/sbin/dpkg-reconfigure: locales is not installed。求解,谢谢
root@debian:~# dpkg-reconfigure locales
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line
75.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debco... 阅读全帖
a****9
发帖数: 418
19
来自主题: Linux版 - ubuntu10.10 cups升级出问题
现在情况:
> sudo apt-get upgrade
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to
correct the problem.
> sudo dpkg --configure -a
dpkg: error processing cups (--configure):
Package is in a very bad inconsistent state - you should
reinstall it before attempting configuration.
Errors were encountered while processing:
cups
> sudo apt-get install --reinstall cups
无法progress,停在那里不动了
有人碰到这个问题么
s******n
发帖数: 6806
20
来自主题: Linux版 - 远程桌面实现不少...
我第一次弄的时候也是弄了很久,这是当时我保存的安装步骤,
后来我都是这么设置的。ubuntu下面的,debian应该也是一样的。
Step 0. Make sure you installed openssh-server package.
Step 1. Download NX deb packages, and then install packages,
(assume that packages are in current directory, file names may be different)
"sudo dpkg -i nxclient_3.2.0-9_i386.deb"
"sudo dpkg -i nxnode_3.2.0-5_i386.deb"
"sudo dpkg -i nxserver_3.2.0-7_i386.deb"
Step 2. Test the server
"cd /usr/NX/bin"
"sudo ./nxserver --status"
Step 3. Open sshd-config file,
"sudo nano /etc/ssh/s
r****y
发帖数: 26819
21
来自主题: Apple版 - XBMC for iPad 可以硬解1080P!
不错,虽然post install的script出了点小错,但还是装上了,能用。
Setting up org.xbmc.xbmc-atv2 (10.0-0) ...
No matching processes were found
dpkg: error processing org.xbmc.xbmc-atv2 (--configure):
subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
org.xbmc.xbmc-atv2
E: Sub-process /usr/bin/dpkg returned an error code (1)
P****e
发帖数: 385
22
回到ios4.2.1(apple tv 4.1.1),结果看天翼还是看到5-10分钟左右就
崩溃,后来发现是xbmc自己每隔5-10分钟就崩溃。具体安装过程如下:
之前上到ios 4.3有问题,于是去http://www.felixbruns.de/iPod/firmware/ 下载了一个4.2.1的firmware,然后用pwnage做了一个AppleTV2,1_4.2.1_8C154_Custom_Restore。从itunes 10.1.1 restore,一切顺利。
用apt-get装xbmc,安装的时候蹦出几行错:
Setting up org.xbmc.xbmc-atv2 (10.0-7) ...
No matching processes were found
dpkg: error processing org.xbmc.xbmc-atv2 (--configure):
subprocess post-installation script returned error exit status 1
Errors were encountered while proces... 阅读全帖
m*d
发帖数: 7658
23
来自主题: Hardware版 - 在 Dockstar 上安装 shadowsocks server
升级了kernel,做uImage成功,但是uInitrd没有成功
mkimage -A arm -O linux -C none -T kernel -a 0x60008000 -e 0x60008000 -n
Linux-3.18.5-oxnas-tld-1 -d zImage-3.18.5-oxnas-tld-1.fdt uImage
mkimage -A arm -O linux -T ramdisk -C gzip -a 0x60000000 -e 0x60000000 -n
initramfs-3.18.5-oxnas-tld-1 -d /boot/initrd.img-3.18.5-oxnas-tld-1 /boot/
uInitrd
执行第二行命令时,报错说没有/boot/initrd.img-3.18.5-oxnas-tld-1
/boot/initrd.img-3.18.5-oxnas-tld-1从哪里来?
我已经装过
dpkg -i linux-image-3.18.5-oxnas-tld-1_1_armel.deb
dpkg -i linux-header... 阅读全帖
m*********g
发帖数: 273
24
I need to see the output of these commands,
$ dpkg -l | grep xserver
$ lspci
$ dpkg -l | grep compiz
J*****w
发帖数: 544
25
来自主题: Linux版 - Chinese input in Ubuntu
I have a really old pc and I installed Ubuntu 7.0.4 recently.
My problem is there is no Chinese input.
http://ccat.sas.upenn.edu/~nsivin/chinp.html
This solution didn't work for me. Coz i can't find the option for "Chinese"
in "language support".
I tried to use aptitude to download "language-pack-zh". Always got errors:
E: can't get the key for /var/lib/dpkg/lock -- open (11 Resources
temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another
process u
z*********n
发帖数: 94654
26
dpkg --get-selections
对了,你进入text mode以后最好先把gdm kill了再重新config xorg
sudo killall gdm
然后sudo dpkg-reconfigure xserver-xorg,然后一步步来
F*******i
发帖数: 190
27
来自主题: Linux版 - debian apt-get error:
Setting up ia32-libwmf0.2-7 (0.2.8.4-6.1~22) ...
W: libwmf0.2-7: Application not found.
dpkg: error processing ia32-libwmf0.2-7 (--configure):
subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
ia32-libwmf0.2-7
E: Sub-process /usr/bin/dpkg returned an error code (1)
请问有什么办法可以去掉这个error 吗?
Thanks!
r****t
发帖数: 10904
28
modprobe -l
dpkg -l *nvidia* | grep ii
or check
/var/lib/dpkg/status
But I am on debian
z****u
发帖数: 3461
29
卸载源里的fqterm
到fqterm官网下deb
装完后禁止升级fqterm
echo "fqterm hold" | sudo dpkg --set-selections
另外,附上恢复升级的命令:
echo "fqterm install" | sudo dpkg --set-selections
n******7
发帖数: 12463
30
ubuntu 不用rpm, 用dpkg
dpkg -l python
n******7
发帖数: 12463
31
已经很蛋疼了
安装就折腾了大半天
这些年都是用wubi或者vm装linux
已经忘记了以前怎么用grub4dos搞定无光盘安装
最后还是用万能u盘工具搞定
然后wifi一直不正常,测试了四个地方,两个地方ok,两个地方奇慢
没能fix,debian换成lmde稍好一点
今天用gui工具安装更新,过会儿居然屏保死了
杀了屏保继续,一会儿没管,居然X没动静了
都杀了重启,还好dpkg --configure -a可以修复
这多年了 gnome的菜单还是那么乱(我实际用的cinnamon),我一直没搞明白system 跟
adminstration 两个分类有啥区别
刚看到一个不错的是,装dpkg装virtualbox因为包依赖挂了,apt装了包之后vb安装自
动恢复了,挺智能
对自己发誓再不折腾了,用linux干点有意义的事情先
z****u
发帖数: 3461
32
来自主题: Linux版 - debian cron到底怎么弄?
你真的装了cron吗。。。
$ dpkg -S /etc/crontab
cron: /etc/crontab
$ dpkg -S /usr/bin/crontab
cron: /usr/bin/crontab
如果以上两个文件都存在的话,看看下面这个
http://askubuntu.com/questions/337204/cron-daily-jobs-not-runni

daily
r****t
发帖数: 10904
33
来自主题: Programming版 - repast 请进: python debian安装问题
那你基本上已经成功了不是?
dpkg -P 可能不会 remove 你很多东西。我就是按你说的最土的方法 remove 再装上的
,10 来分钟就行了。
dpkg-reconfigure python-matplotlib 这样我似乎试过,成不成就不 sure 了。
python-matplotlib 是个依赖比较复杂的包。

的,
M****e
发帖数: 1132
34
step 2中,哪些命令需要执行啊?=====之间的也需要吗?好像我一个命令也没有啊。
POST INSTALL STEPS:
===================
ntpdate pool.ntp.org
dpkg-reconfigure tzdata
dpkg-reconfigure locales
edit /etc/hostname to change the hostname.
change /etc/sources.list to closest repository
apt-get update
apt-get dist-upgrade - to make sure you have the latest updates.
Install build environment
=========================
apt-get -y install make gcc
apt-get -y install g++
apt-get -y install libxml2 libxml2-dev
... ...
m****m
发帖数: 2452
35
来自主题: _voip版 - 安装过程中没有空间了
DOCKSTAR可以从USB盘启动了。然后按TheSun的帖子
里说的第二步开始做。
在装到这一步的时候:
apt-get -y install apache2 libapache2-mod-php5 php-pear
报说没有空间了。重启,再RUN这个,就出现下面的错误:
E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to
correct the problem.
不知道如何解决这个问题。USB盘是4GB的,分成了下面的区:
Device Boot Start End Blocks Id System
/dev/sda1 1 63 506016 83 Linux
/dev/sda2 64 95 257040 82 Linux swap / Solaris
/dev/sda3 96 48... 阅读全帖
p*****n
发帖数: 1415
36
来自主题: Taiwan版 - 你们这些台湾同胞啊!

以下是介绍大乘
也是大乘看不起小乘的例子 我没说错吧 大乘是看不起小乘
http://www.gc-dpkg.org.tw/new_page_4.htm
三乘成佛之道
释迦牟尼佛用了一生中四十五年的时间,教导众生究竟解脱之道,除了寻求自我的解脱
,还须度众生解脱。于公元二千五百年前,佛陀就在波罗奈城的鹿野苑初说四圣谛度五
比丘。自第一次转法轮以来,佛陀深奥的教义确实使世人受益无穷、受用不尽。
佛陀说︰「人人皆可成佛,成为觉悟者」。由于佛陀的教义是全面性、有伸缩性的,是
为了方便配合每一位学佛者的智力、学识程度、理解能力、性格、动机以及生活习惯等
,因此促成三乘的形成,把佛法的精华列为︰小乘、大乘及密乘(或金刚乘)三种。
原始小乘原有十八部,但目前所存在的唯有「上座部」,故此成为小乘的总代表。小乘
是修持声闻及缘觉的法门,以修身自利为宗旨,最终达到涅盘,而不须顾及利益众生。
小乘中的声闻乘主修四圣谛证得最高果位,即「阿罗汉果」。声闻乘最后的目的是彻底
地将个人和外在的干扰和污染去除,因为这由消极的情绪及自私的欲望所引起的不净物
,只会给本来平静的心带来不必要的烦恼。所谓「阿罗汉
s***y
发帖数: 2607
37
来自主题: PhotoGear版 - Re: hulu for xbmc 又可以用了 (转载)
【 以下文字转载自 Apple 讨论区 】
发信人: shkid (shanghai kid), 信区: Apple
标 题: Re: hulu for xbmc 又可以用了
发信站: BBS 未名空间站 (Tue Aug 30 13:39:08 2011, 美东)
修好了。按以下几部走,就可以用了。
1。先更新XBMC, LOGIN:root PASSWORD:alpine
cd /private/var/tmp
wget http://mirrors.xbmc.org/nightlies/darwin/atv2/xbmc-20110830-51df69b-master-atv2.deb
dpkg -i xbmc-20110830-51df69b-master-atv2.deb
rm xbmc-20110830-51df69b-master-atv2.deb
2。设置葫芦
选720, 1800K 和CDN: AKAMAI
n******7
发帖数: 12463
38
想重新装一个vim,也许直接覆盖就好,但是还是想知道如何卸载原有的程序?
mac os有没有类似 rpm 或者 dpkg 的东西?
我知道有macvim,但是就是想要一个terminal里面的vim
I*l
发帖数: 1649
39
自己装一个到别的地方,然后在path里把它加到最前面就行了
rpm dpkg的话可以试试macport或者fink,不过算第三方的,不能manage系统自带的
x***q
发帖数: 4953
40
1 iREB RC4 http://www.ih8sn0w.com/ 这个作用是把apple TV进入DFU
2 use Seas0nPass get .ispw file
http://support.firecore.com/entries/387605
3. plug in apple tv, open itunes, 用2产生的.ispw file restore
4. Now you have ssh ability in your apple tv, just plug power and hdmi cable
, then install nitoTV using:
http://wiki.awkwardtv.org/wiki/NitoTV_Take_3
5. unplug all cables and then re-plug them, you should see nitotv
6. follow this one
http://forum.xbmc.org/showpost.php?p=766977&postcount=22
7. install xbmc f... 阅读全帖
y*w
发帖数: 125
41
我的简化版:
1 use Seas0nPass to create customed .ispw file
2 put atv2 into DFU mode: plug in usb, press menu + play together. I use Pwn
tool to guide me.
3. Use itune to restore atv2 with .ispw in 1.
3. put back atv2 to TV and initial setup with wifi
4. ssh into atv2 and do
apt-get update
apt-get upgrade
apt-get install org.xbmc.xbmc-atv2
5. Open XBMC, install all the add-ons
6. Download nightly build XBMC and scp upload to atv2. Do
dpkg -i ???.db on atv2 to replace xbmc
T... 阅读全帖
x***q
发帖数: 4953
42
http://www.mitbbs.com/article0/Apple/31411975_0.html
step 8:
8. install latest xbmc
http://forum.xbmc.org/showthread.php?t=96725
apt-get install wget
wget -O- http://apt.awkwardtv.org/awkwardtv.pub | apt-key add -
echo "deb http://apt.awkwardtv.org/ stable main" > /etc/apt/sources.list.d/awkwardtv.list
echo "deb http://mirrors.xbmc.org/apt/atv2 ./" > /etc/apt/sources.list.d/xbmc.list
apt-get update
cd /private/var/tmp
wget http://hadm.net/~keith/xbmc_atv2/latest_atv2.deb
dpkg -i latest_atv2.deb
... 阅读全帖
x***q
发帖数: 4953
43
来自主题: Apple版 - hulu for xbmc 又可以用了
下了最新的 xbmc for apple tv 2,发现hulu可以用了。。。
cd /private/var/tmp
wget http://mirrors.xbmc.org/nightlies/darwin/atv2/xbmc-20110827-639950e-master-atv2.deb
dpkg -i xbmc-20110827-639950e-master-atv2.deb
rm xbmc-20110827-639950e-master-atv2.deb
s***d
发帖数: 960
44
来自主题: Apple版 - hulu for xbmc 又可以用了
修好了。按以下几部走,就可以用了。
1。先更新XBMC, LOGIN:root PASSWORD:alpine
cd /private/var/tmp
wget http://mirrors.xbmc.org/nightlies/darwin/atv2/xbmc-20110830-51df69b-master-atv2.deb
dpkg -i xbmc-20110830-51df69b-master-atv2.deb
rm xbmc-20110830-51df69b-master-atv2.deb
2。设置葫芦
选720, 1800K 和CDN: AKAMAI
i***1
发帖数: 2534
45
来自主题: Apple版 - Apple TV 4.4.1 不完美越狱成功
首先是下载 Seas0nPass,然后按照这个越狱。注意默认下载的ios 是4.3.1
需要按右键选择 4.4.1
http://support.firecore.com/entries/387605#overview
因为是不完美越狱,所以需要'tethered boot'。
如果你是像我一样基本不拔Apple TV电源的话,其实不完美越狱和完美越狱差不了太多。
接下来就是装xbmc
ssh root@apple-tv
mkdir -p /private/var/Applications
cd /Applications
mv * /private/var/Applications
cd /
rmdir /Applications
ln -s /private/var/Applications /Applications
cd
apt-get update
apt-get install org.xbmc.xbmc-atv2
wget http://mirrors.xbmc.org/nightlies/darwin/atv2/xbmc-20111020-bc49ac0-master-... 阅读全帖
w***w
发帖数: 1552
46
u-nas iv黑色版本,装个usb的wireless adapter杯具了。
新买了一个usb的无线网络适配器, 是realtek的,我按照debian上的步骤转了驱动,h
ttp://wiki.debian.org/rtl819x
中间有一步是
aptitude -t lenny-backports install linux-image-2.6-$(uname -r | sed 's,.*-,
,') firmware-realtek wireless-tools
当时也没多想,执行完了才发现杯具了。 执行uname -r,系统从2.6.26-686变成了2.6
.32-bpo.5-686,现在系统还是可以ssh上去,路径和权限是一团混乱啊。/sbin下面的命
令都必须指定路径到/sbin/xx才会执行。ssh登陆后,用sudo 执行# aptitude update
就产生一堆错误。
E: /root/.aptitude 可读但不可写;无法写入配置文件。
W: 由于文件系统为只读,因而无法使用文件锁/var/lib/dpkg/lock
E: 无法写入 /var/cache/ap
i***1
发帖数: 2534
47
来自主题: Hardware版 - hulu for xbmc 又可以用了 (转载)
【 以下文字转载自 Apple 讨论区 】
发信人: xxcyq (xxcyq), 信区: Apple
标 题: hulu for xbmc 又可以用了
发信站: BBS 未名空间站 (Sun Aug 28 22:16:56 2011, 美东)
下了最新的 xbmc for apple tv 2,发现hulu可以用了。。。
cd /private/var/tmp
wget http://mirrors.xbmc.org/nightlies/darwin/atv2/xbmc-20110827-639950e-master-atv2.deb
dpkg -i xbmc-20110827-639950e-master-atv2.deb
rm xbmc-20110827-639950e-master-atv2.deb
w****w
发帖数: 521
48
来自主题: Hardware版 - pogoplug 到底用多少电阿?
搞出来了。
# apt-get install locales
# dpkg-reconfigure locales
选en_US.UTF-8做default就可以了。
E***e
发帖数: 3430
49
来自主题: Hardware版 - Ubuntu NAS简单方案
装Ubuntu 14.04LTS不多说
装unity版本的比较好,gnome的太buggy不适合当server
装完了以后先删bloat:
apt-get purge deja-dup aisleriot gnome-sudoku gnome-mahjongg gnome-mines
libreoffice* shotwell-common transmission-gtk empathy thunderbird gnome-orca
cheese rhythmbox evolution simple-scan landscape-client-ui-install xterm
unity-webapps-common ibus-pinyin account-plugin* unity-lens-photos unity-
scope-gdrive
更新系统:
apt-get update
apt-get dist-upgrade
装必要组件:
apt-get install --no-install-recommends gksu, openssh-server, synaptic,... 阅读全帖
E***e
发帖数: 3430
50
来自主题: Hardware版 - Ubuntu NAS简单方案
装Ubuntu 14.04LTS不多说
装unity版本的比较好,gnome的太buggy不适合当server
装完了以后先删bloat:
apt-get purge deja-dup aisleriot gnome-sudoku gnome-mahjongg gnome-mines
libreoffice* shotwell-common transmission-gtk empathy thunderbird gnome-orca
cheese rhythmbox evolution simple-scan landscape-client-ui-install xterm
unity-webapps-common ibus-pinyin account-plugin* unity-lens-photos unity-
scope-gdrive
更新系统:
apt-get update
apt-get dist-upgrade
装必要组件:
apt-get install --no-install-recommends gksu, openssh-server, synaptic,... 阅读全帖
1 2 3 下页 末页 (共3页)