AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-633

Will's questions

Martin Hope
Will
Asked: 2010-10-28 04:28:53 +0800 CST

init.d 脚本启动问题

  • 3

我有这个 init.d 脚本,我试图用 ubuntu 启动它,但是它不会在启动时运行。当我输入“sudo /etc/init.d/couchpotato start”时它确实有效。关于如何在启动时启动它的任何想法?

#! /bin/sh

### BEGIN INIT INFO
# Provides:          CouchPotato application instance
# Required-Start:    $all
# Required-Stop:     $all
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts instance of CouchPotato
# Description:       starts instance of CouchPotato using start-stop-daemon
### END INIT INFO

############### EDIT ME ##################
# path to app
APP_PATH=/usr/local/sbin/couchpotato

# path to python bin
DAEMON=/usr/bin/python

# startup args
DAEMON_OPTS=" CouchPotato.py -q"

# script name
NAME=couchpotato

# app name
DESC=CouchPotato

# user
RUN_AS=root

PID_FILE=/var/run/couchpotato.pid

############### END EDIT ME ##################

test -x $DAEMON || exit 0

set -e

case "$1" in
  start)
        echo "Starting $DESC"
        start-stop-daemon -d $APP_PATH -c $RUN_AS --start --background --pidfile $PID_FILE  --make-pidfile --exec $DAEMON -- $DAEMON_OPTS
        ;;
  stop)
        echo "Stopping $DESC"
        start-stop-daemon --stop --pidfile $PID_FILE
        ;;

  restart|force-reload)
        echo "Restarting $DESC"
        start-stop-daemon --stop --pidfile $PID_FILE
        sleep 15
        start-stop-daemon -d $APP_PATH -c $RUN_AS --start --background --pidfile $PID_FILE  --make-pidfile --exec $DAEMON -- $DAEMON_OPTS
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0
scripts startup init.d
  • 6 个回答
  • 65068 Views
Martin Hope
Will
Asked: 2010-10-17 13:58:06 +0800 CST

如何备份我的整个系统?

  • 153

如果我想备份我的整个操作系统(包括但不只是我的主目录),我该怎么做?

是否就像备份所有内容一样简单/,然后如果我遇到崩溃,只需将文件复制回来?
这会覆盖 grub,当系统无法运行时,我该怎么做?

backup
  • 21 个回答
  • 304880 Views
Martin Hope
Will
Asked: 2010-10-04 23:15:01 +0800 CST

为什么开发版本中的 apt-get 更新较慢?

  • 2

当我更新 apt-get 宇宙 repo 需要很长时间才能下载时,我通常最大速度约为 130kbps,可以在一分钟内轻松下载约 4mb,但它会在每秒一个字节和 30kpbs 之间跳过(而且我没有运行任何在我更新时会占用我带宽的东西)。更新 lucid 很好,不到 10 秒,为什么现在需要 10 分钟...

will@UbuntuBox:~$ sudo apt-get update
Hit http://archive.canonical.com maverick Release.gpg                          
Ign http://archive.canonical.com/ maverick/partner Translation-en              
Get:1 http://ppa.launchpad.net maverick Release.gpg [316B]                     
Ign http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu/ maverick/main Translation-en
Ign http://ppa.launchpad.net/ubuntu-x-swat/x-updates/ubuntu/ maverick/main Translation-en_US
Get:2 http://im.archive.ubuntu.com maverick Release.gpg [198B]                 
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/main Translation-en          
Hit http://security.ubuntu.com maverick-security Release.gpg                   
Ign http://security.ubuntu.com/ubuntu/ maverick-security/main Translation-en   
Hit http://extras.ubuntu.com maverick Release.gpg                              
Ign http://extras.ubuntu.com/ubuntu/ maverick/main Translation-en              
Ign http://archive.canonical.com/ maverick/partner Translation-en_US           
Hit http://archive.canonical.com maverick Release                              
Get:3 http://ppa.launchpad.net maverick Release [57.3kB]                       
Ign http://extras.ubuntu.com/ubuntu/ maverick/main Translation-en_US           
Hit http://extras.ubuntu.com maverick Release                                  
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/main Translation-en_US       
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/multiverse Translation-en    
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/multiverse Translation-en_US 
Hit http://archive.canonical.com maverick/partner i386 Packages                
Hit http://extras.ubuntu.com maverick/main i386 Packages                       
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/restricted Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/restricted Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/universe Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick/universe Translation-en_US
Hit http://im.archive.ubuntu.com maverick-updates Release.gpg              
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/main Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/main Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/multiverse Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/multiverse Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/restricted Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/restricted Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/universe Translation-en
Ign http://security.ubuntu.com/ubuntu/ maverick-security/main Translation-en_US
Ign http://security.ubuntu.com/ubuntu/ maverick-security/multiverse Translation-en
Ign http://security.ubuntu.com/ubuntu/ maverick-security/multiverse Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-updates/universe Translation-en_US
Hit http://im.archive.ubuntu.com maverick-proposed Release.gpg
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/main Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/main Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/multiverse Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/multiverse Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/restricted Translation-en
Ign http://security.ubuntu.com/ubuntu/ maverick-security/restricted Translation-en
Ign http://security.ubuntu.com/ubuntu/ maverick-security/restricted Translation-en_US
Ign http://security.ubuntu.com/ubuntu/ maverick-security/universe Translation-en
Ign http://security.ubuntu.com/ubuntu/ maverick-security/universe Translation-en_US
Hit http://security.ubuntu.com maverick-security Release
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/restricted Translation-en_US
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/universe Translation-en
Ign http://im.archive.ubuntu.com/ubuntu/ maverick-proposed/universe Translation-en_US
Get:4 http://im.archive.ubuntu.com maverick Release [57.3kB]
Hit http://security.ubuntu.com maverick-security/main Sources                  
Hit http://security.ubuntu.com maverick-security/restricted Sources            
Hit http://security.ubuntu.com maverick-security/universe Sources
Hit http://security.ubuntu.com maverick-security/main i386 Packages            
Hit http://security.ubuntu.com maverick-security/restricted i386 Packages      
Hit http://security.ubuntu.com maverick-security/multiverse i386 Packages      
Hit http://security.ubuntu.com maverick-security/universe i386 Packages
Get:5 http://ppa.launchpad.net maverick/main Sources [3,051B]                  
Get:6 http://ppa.launchpad.net maverick/main i386 Packages [6,396B]            
Hit http://im.archive.ubuntu.com maverick-updates Release                      
Hit http://im.archive.ubuntu.com maverick-proposed Release                     
Get:7 http://im.archive.ubuntu.com maverick/main Sources [829kB]               
Get:8 http://im.archive.ubuntu.com maverick/restricted Sources [4,361B]        
Get:9 http://im.archive.ubuntu.com maverick/universe Sources [4,186kB]         
Get:10 http://im.archive.ubuntu.com maverick/main i386 Packages [1,491kB]      
Get:11 http://im.archive.ubuntu.com maverick/restricted i386 Packages [6,000B] 
Get:12 http://im.archive.ubuntu.com maverick/multiverse i386 Packages [183kB]  
Get:13 http://im.archive.ubuntu.com maverick/universe i386 Packages [5,786kB]  
Hit http://im.archive.ubuntu.com maverick-updates/main Sources                 
Hit http://im.archive.ubuntu.com maverick-updates/restricted Sources           
Hit http://im.archive.ubuntu.com maverick-updates/universe Sources             
Hit http://im.archive.ubuntu.com maverick-updates/main i386 Packages           
Hit http://im.archive.ubuntu.com maverick-updates/restricted i386 Packages     
Hit http://im.archive.ubuntu.com maverick-updates/multiverse i386 Packages     
Hit http://im.archive.ubuntu.com maverick-updates/universe i386 Packages       
Hit http://im.archive.ubuntu.com maverick-proposed/restricted i386 Packages    
Hit http://im.archive.ubuntu.com maverick-proposed/main i386 Packages          
Hit http://im.archive.ubuntu.com maverick-proposed/universe i386 Packages      
Hit http://im.archive.ubuntu.com maverick-proposed/multiverse i386 Packages    
Fetched 12.6MB in 7min 54s (26.6kB/s)                                          
Reading package lists... Done

如果有人可以提供帮助,我将非常感谢您的遗嘱

10.10 updates apt
  • 2 个回答
  • 729 Views
Martin Hope
Will
Asked: 2010-10-04 11:03:23 +0800 CST

如何从损坏的下载中恢复 dpkg?

  • 9

我刚刚升级到 10.10 RC 并且图形驱动程序出现了一些问题(x 没有启动)但我现在已经解决了这个问题。当我运行“sudo apt-get install -f”时,我得到了这个:

will@UbuntuBox:/mnt/slax$ sudo apt-get install -f
[sudo] password for will: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
  libmono-wcf3.0-cil openoffice.org-calc openoffice.org-core
The following NEW packages will be installed:
  libmono-wcf3.0-cil
The following packages will be upgraded:
  openoffice.org-calc openoffice.org-core
2 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
16 not fully installed or removed.
Need to get 0B/32.5MB of archives.
After this operation, 1,929kB disk space will be freed.
Do you want to continue [Y/n]? Y
(Reading database ... 201565 files and directories currently installed.)
Preparing to replace openoffice.org-calc 1:3.2.1-6ubuntu2~10.04.1 (using .../openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb) ...
Unpacking replacement openoffice.org-calc ...
xz: (stdin): Compressed data is corrupt
dpkg-deb: subprocess <decompress> returned error exit status 1
dpkg: error processing /var/cache/apt/archives/openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb (--unpack):
 short read on buffer copy for backend dpkg-deb during `./usr/lib/openoffice/basis3.2/program/libscfiltli.so'
dpkg: regarding .../openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb containing openoffice.org-core:
 openoffice.org-core conflicts with openoffice.org-calc (<< 1:3.2.1-7ubuntu1)
  openoffice.org-calc (version 1:3.2.1-6ubuntu2~10.04.1) is present and installed.
dpkg: error processing /var/cache/apt/archives/openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb (--unpack):
 conflicting packages - not installing openoffice.org-core
Unpacking libmono-wcf3.0-cil (from .../libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb) ...
dpkg-deb (subprocess): data: internal gzip read error: '<fd:0>: data error'
dpkg-deb: subprocess <decompress> returned error exit status 2
dpkg: error processing /var/cache/apt/archives/libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb (--unpack):
 subprocess dpkg-deb --fsys-tarfile returned error exit status 2
Errors were encountered while processing:
 /var/cache/apt/archives/openoffice.org-calc_1%3a3.2.1-7ubuntu1_i386.deb
 /var/cache/apt/archives/openoffice.org-core_1%3a3.2.1-7ubuntu1_i386.deb
 /var/cache/apt/archives/libmono-wcf3.0-cil_2.6.7-3ubuntu1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

知道如何修复损坏的包裹吗?干杯,威尔

package-management dpkg apt
  • 1 个回答
  • 14935 Views
Martin Hope
Will
Asked: 2010-10-04 03:04:09 +0800 CST

Grub 启动进入恢复模式

  • 3

当我启动 grub 时不显示(仅安装了 ubuntu),我希望 grub 显示一秒钟或 2 秒(shift 似乎没有显示它)。我的主要问题是 grub 启动到我认为是恢复模式,我可以以自己和 startx 身份登录,但这显然是一个正确的痛苦。有人可以告诉我如何解决这个问题吗?

Grub.cfg:

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="1"
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
    saved_entry=${chosen}
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
}
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,6)'
search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.32-25-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    linux   /boot/vmlinuz-2.6.32-25-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro   quiet splash
    initrd  /boot/initrd.img-2.6.32-25-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-25-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    echo    'Loading Linux 2.6.32-25-generic ...'
    linux   /boot/vmlinuz-2.6.32-25-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro single 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-2.6.32-25-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    linux   /boot/vmlinuz-2.6.32-21-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro   quiet splash
    initrd  /boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    echo    'Loading Linux 2.6.32-21-generic ...'
    linux   /boot/vmlinuz-2.6.32-21-generic root=UUID=1cd98d8a-97b3-4f25-9da2-e7128ef6dcba ro single 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set 1cd98d8a-97b3-4f25-9da2-e7128ef6dcba
    linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ ${timeout} != -1 ]; then
  if keystatus; then
    if keystatus --shift; then
      set timeout=-1
    else
      set timeout=0
    fi
  else
    if sleep --interruptible 3 ; then
      set timeout=0
    fi
  fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
grub2 recovery-mode
  • 2 个回答
  • 3730 Views
Martin Hope
Will
Asked: 2010-09-29 14:30:54 +0800 CST

特定文件夹中默认的 Nautilus 图标视图

  • 1

我想设置一些具有指定缩放级别的文件夹并设置为图标视图(例如我的电子书文件夹) 无论如何要这样做吗?

icons nautilus-elementary
  • 2 个回答
  • 1015 Views
Martin Hope
Will
Asked: 2010-09-25 00:45:19 +0800 CST

更新问题:包被阻止

  • 7

当我尝试升级时,我得到了保留的软件包,当我使用 dist-upgrade 时,它​​们将被升级,但是我收到以下警告:

Current status: 5 updates [-1].
will@will-desktop:~$ sudo aptitude dist-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Reading extended state information      
Initialising package states... Done
The following packages are BROKEN:
  libdrm-nouveau1 
The following NEW packages will be installed:
  libkms1{a} 
The following packages will be upgraded:
  libdrm-dev libdrm-intel1 libdrm-radeon1 libdrm2 
5 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/245kB of archives. After unpacking 2,077kB will be freed.
The following packages have unmet dependencies:
  libdrm-nouveau1: Breaks: xserver-xorg-video-nouveau (< 1:0.0.16) but 1:0.0.15+git20100219+9b4118d-0ubuntu5 is installed.
The following actions will resolve these dependencies:

Remove the following packages:
xserver-xorg-video-all
xserver-xorg-video-nouveau

Score is 188

我不知道要不要升级,看起来它可能会破坏我的视频

updates upgrade aptitude
  • 2 个回答
  • 4259 Views
Martin Hope
Will
Asked: 2010-09-10 12:12:44 +0800 CST

如何让 wacom 变焦轮工作?

  • 1

我正在尝试让我的 wacom 竹子上的变焦轮工作。虽然我对如何做到这一点知之甚少。我尝试使用 xinputwacom(我认为),但它抱怨它缺少一些东西。无论如何在 10.04 上运行 wacom-tools 吗?

在 wacom-tools http://who-t.blogspot.com/2010/09/wacom-support-in-linux.html上阅读更多内容

wacom graphics-tablet input-devices bamboo
  • 2 个回答
  • 3350 Views
Martin Hope
Will
Asked: 2010-09-07 07:54:48 +0800 CST

视频撕裂现已排序 立方体性能低

  • 1

我刚刚按照本指南整理了我电脑上的视频撕裂:

http://ubuntuforums.org/showthread.php?t=1390284

然而,在此之前,我有一个性能出色的立方体,非常光滑,没有/很少撕裂(至少仅在侧面)但是现在立方体在旋转时感觉很慢,当我的 gnome 面板下方出现某种撕裂(白线)时在桌面上“着陆”有什么想法可以在不关闭同步到 VBlank 的情况下返回到立方体的先前性能吗?

compiz nvidia tearing cube
  • 1 个回答
  • 634 Views
Martin Hope
Will
Asked: 2010-08-25 12:12:10 +0800 CST

杰克和脉冲音频

  • 8

我想从启动时运行 pulseaudio 以处理系统声音等,并能够从 qjackctl 运行 jack 以用于音频应用程序(LMMS、ardour、rosegarden 等)我在启动时遇到问题,声音小程序不允许我来控制音量。当我单击声音首选项时,它显示“等待音响系统响应”但声音仍在节奏盒等中播放。

sound pulseaudio jack
  • 2 个回答
  • 4119 Views
Martin Hope
Will
Asked: 2010-08-20 06:28:31 +0800 CST

如何安装 XBMC?

  • 13

我在哪里可以获得适用于 Ubuntu 的 XBMC?

我添加了 team-xbmc ppa,但是他们没有软件包,是否有较旧的 deb,或者是否有可以获取源代码并自己构建的地方?

multimedia xbmc
  • 5 个回答
  • 7996 Views
Martin Hope
Will
Asked: 2010-08-15 15:52:00 +0800 CST

VLC - 滚轮不会改变音量

  • 2

我在使用 vlc 时遇到问题,当我尝试用滚轮调节音量时,它不会改变音量,在设置中 x 轴控制设置为音量控制,所以我不明白为什么它不起作用

有任何想法吗?干杯

sound
  • 4 个回答
  • 2410 Views
Martin Hope
rocker9455
Asked: 2010-08-15 09:20:32 +0800 CST

Conky指南(链接)

  • 7

我想尝试为 conky 创建自己的布局,但我找不到任何最近的指南。

如果您知道,如果您能发布一些链接,我将不胜感激。

customization appearance conky
  • 2 个回答
  • 2380 Views
Martin Hope
Will
Asked: 2010-08-14 16:25:44 +0800 CST

菜单上的图标消失了

  • 1

当我右键单击以调出菜单时,例如在桌面上,我有“在此处打开终端”,我知道它旁边应该有一个终端图标,但它没有。有任何想法吗?我在 gconf-editor 中闲逛了一下,但运气不佳(尽管我没有很努力;)

谢谢

gnome nautilus icons
  • 2 个回答
  • 1334 Views
Martin Hope
Will
Asked: 2010-08-13 08:50:48 +0800 CST

创建一个启动器(用于 Mechinarium)

  • 0

我正在尝试为 Mechinarium 制作一个启动器,它是一个带有启动器的 flash 游戏,据我所知,它在其目录中的单独文件夹中运行 flash 文件。我试图制作一个指向这个可执行文件的启动器,当我点击它时它运行良好。当我尝试从启动器运行它时,播放器出现(黑屏),我可以右键单击并获取 Flash 选项,但游戏无法加载。

有任何想法吗?谢谢。

编辑 - 答案: http: //machinarium.net/forum/index.php/topic,467.0.html

flash games
  • 2 个回答
  • 516 Views
Martin Hope
Will
Asked: 2010-08-13 08:19:57 +0800 CST

“安装”应用程序,将文件夹放在哪里?[复制]

  • 15
这个问题在这里已经有了答案:
安装用户应用程序时,“最佳实践”建议它们位于何处? (6 个回答)
7年前关闭。

我刚买了一个游戏(Machinarium),它没有附带 deb 文件,也不是 ./configure、make 等类型的应用程序。我可以运行它。放置它的最佳位置在哪里,以便我可以创建一个启动器并将其保留在我的主目录之外?

即我基本上是在问应用程序安装在哪里,我应该把这个游戏放在那里。

谢谢!

filesystem
  • 2 个回答
  • 1784 Views
Martin Hope
Will
Asked: 2010-08-11 05:25:58 +0800 CST

如何在 Ubuntu 上安装依赖于 libgtk1.2 的 Wolfenstein Enemy Teritory?

  • 2

嘿,我正在尝试安装 Wolfenstein ET,但它在运行时出现此错误消息,说它缺少 Libgtk-1.2。在 repos 中只有 libgtk2.0 有什么想法可以解决这个问题吗?

software-installation gtk ppa games
  • 2 个回答
  • 798 Views
Martin Hope
Will
Asked: 2010-08-08 14:20:03 +0800 CST

Rhythmbox 不断将曲目更改为不同的专辑

  • 3

我不确定发生了什么,但是当我尝试在歌曲完成后听专辑中的歌曲并且应该进入下一首曲目时,它开始播放立体声(同一张专辑)而不是下一首曲目,有没有人否则有这个问题!?

sound rhythmbox
  • 3 个回答
  • 163 Views
Martin Hope
Will
Asked: 2010-08-06 14:26:07 +0800 CST

声音小程序消失了

  • 8

我最近删除并重新安装了pulseaudio,现在我无法让我的声音小程序回到我的面板上。

任何想法如何取回它?

sound pulseaudio gnome-panel applet
  • 3 个回答
  • 6892 Views
Martin Hope
Will
Asked: 2010-08-06 03:24:43 +0800 CST

在 nautilus 中刷新缩略图

  • 44

如何在 nautilus 中刷新缩略图?在我的视频文件夹中,我有一些 MKV,其中只有一半有电影边框和电影的摘录,其他的(也是以相同方式编码的 MKV)只有普通的电影图标。

(F5 不这样做。)

nautilus
  • 7 个回答
  • 29400 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve