debiandog できるもの、できないもの (qemuできる)

以上のフォーラム以外のトラブル

モデレータ: 暇人, YoN, nyu

返信する
hatahata
記事: 212
登録日時: 14/06/11(水) 11:49

debiandog できるもの、できないもの (qemuできる)

投稿記事 by hatahata »

それぞれの ハード環境でちがうかもしれませんが、

自分ところでは
brasero は はいるが、動きません。
libreofficeは はいります。

ffmpegですが、
aptitude install ffmpeg
Keep the following packages at their current version:
1) ffmpeg [Not Installed]
2) libavdevice56 [Not Installed]
3) libpostproc53 [Not Installed]
4) libswresample1 [Not Installed]
Accept this solution? [Y/n/q/?] n

The following actions will resolve these dependencies:

Install the following packages:
1) libaacplus2 [2.0.2-dmo2 (stable)]
2) libass5 [0.10.2-3 (stable)]
3) libavcodec56 [10:2.6.4-dmo1 (stable)]
4) libavfilter5 [10:2.6.4-dmo1 (stable)]
5) libavformat56 [10:2.6.4-dmo1 (stable)]
6) libavresample2 [10:2.6.4-dmo1 (stable)]
7) libavutil54 [10:2.6.4-dmo1 (stable)]
8) libcrystalhd3 [1:0.0~git20110715.fdd2f19-11 (stable)]
9) libenca0 [1.16-1 (now, stable)]
10) libfaac0 [1.28-6 (stable)]
11) libfdk-aac1 [1:0.1.4-dmo1 (stable)]
12) libgsm1 [1.0.13-4 (stable)]
13) libopencore-amrnb0 [0.1.3-2.1 (stable)]
14) libopencore-amrwb0 [0.1.3-2.1 (stable)]
15) libschroedinger-1.0-0 [1.0.11-2.1 (stable)]
16) libspeex1 [1.2~rc1.2-1 (now, stable)]
17) libswscale3 [10:2.6.4-dmo1 (stable)]
18) libutvideo15 [15.1.0-dmo2 (stable)]
19) libva1 [1.4.1-1 (stable)]
20) libvidstab1.0 [2:0.98b-dmo1 (stable)]
21) libvo-aacenc0 [0.1.3-1 (stable)]
22) libvo-amrwbenc0 [0.1.3-1 (stable)]
23) libvpx1 [1.3.0-3 (stable)]
24) libx264-146 [3:0.146.2538+git121396c-dmo1 (stable)]
25) libx265-51 [1.6-dmo1 (stable)]
26) libxvidcore4 [2:1.3.3-1 (stable)]
27) libzvbi-common [0.2.35-3 (stable)]
28) libzvbi0 [0.2.35-3 (stable)]
Upgrade the following packages:
29) libmp3lame0 [3.99.5+repack1-7 (now) -> 1:3.99.5-dmo4 (stable)]
Accept this solution? [Y/n/q/?] ー>Y

すると入り、動きます。

どうも 本物のdebianとは ちょっと違う動き方をしてるように感じます。
使いつづけて始めて その特性がわかっていくようです。
最後に編集したユーザー hatahata [ 15/09/24(木) 18:43 ], 累計 2 回
hatahata
記事: 212
登録日時: 14/06/11(水) 11:49

Re: debiandog できるもの、できないもの

投稿記事 by hatahata »

debiadogで
dnsmasq , extlinux, syslinux は入ります。

bash linux-brjprinter-installer-2.0.0-1 DCP-J925N
にてブラザーのプリンターもcupsいれたら 印刷できました。

OK : dell printer 1320c -> http://zoffix.com/other/Installing-Dell ... -on-Ubuntu

ダメ flightgear:フライトシュミレータ


9/25記
qemu大丈夫です。
http://qemuandopenbsd.blogspot.jp/2015/ ... ebian.html

kvm -hda XP-20.img -m 1024 -net nic,macaddr=52:54:00:12:11:11,model=ne2k_pci -net tap,ifname=tap0,script=/etc/qemu-ifup
にて懐かしいwindows XPでインターネットできます。

root@debian:~# cat /etc/qemu-ifupは mintoのとちがってて以下です。
qemu-ifupの比較研究はおもしろかも。

#! /bin/sh
# Script to bring a network (tap) device for qemu up.
# The idea is to add the tap device to the same bridge
# as we have default routing to.

# in order to be able to find brctl
PATH=$PATH:/sbin:/usr/sbin
ip=$(which ip)

if [ -n "$ip" ]; then
ip link set "$1" up
else
brctl=$(which brctl)
if [ ! "$ip" -o ! "$brctl" ]; then
echo "W: $0: not doing any bridge processing: neither ip nor brctl utility not found" >&2
exit 0
fi
ifconfig "$1" 0.0.0.0 up
fi

switch=$(ip route ls | \
awk '/^default / {
for(i=0;i<NF;i++) { if ($i == "dev") { print $(i+1); next; } }
}'
)

# only add the interface to default-route bridge if we
# have such interface (with default route) and if that
# interface is actually a bridge.
# It is possible to have several default routes too
for br in $switch; do
if [ -d /sys/class/net/$br/bridge/. ]; then
if [ -n "$ip" ]; then
ip link set "$1" master "$br"
else
brctl addif $br "$1"
fi
exit # exit with status of the previous command
fi
done

echo "W: $0: no bridge for guest interface found" >&2
返信する