由买买提看人间百态

topics

全部话题 - 话题: daemons
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
p****0
发帖数: 1786
1
来自主题: Hardware版 - 被malware打败了
现在malware都防不胜防啊,连大名鼎鼎的daemon tools都夹带malware。
g****n
发帖数: 3370
2
来自主题: Hardware版 - 看来pogoplug支撑不住了
跑transmission,挂的种子超过270个,最近发现
transmission经常崩溃,需要重启daemon,有时
甚至ssh都进不去,需要拔电重启。看top,transmission
大概占90%CPU,60%内存,是不是这是pogoplug
能力的上限的?感觉应该不至于吧?
c*******e
发帖数: 5818
3
来自主题: Hardware版 - 请问,在linux里装transmission
~ # ls /root/.config/transmission-daemon/
blocklists resume torrents
~ #
查了一下,给我这个,啥意思,transmission已经在运行?
a*f
发帖数: 1790
4
对流氓软件最好的办法就是重装系统
有人说修改注册表
可是这些软件可能还有scheduled task或者service
就算清掉这些任务,电脑启动的时候可能还会运行一个daemon进程,这个deamon进程再
去激活其他的scheduled task或者service
好吧,把所有的非微软启动程序都清掉,但是可能某个driver或者微软的系统进程已经
被替换了,这个被替换的微软进程会自动加入流氓软件的deamon启动,设置schedueled
task或者自己的service,更新木马或者后门程序,最后才改你的注册表
折腾半天你最后可能才发现无论如何也很难清干净这些流氓软件,注册表只是冰山一角
最好的办法就是重装
d********l
发帖数: 741
5
研究了一个晚上,对比了各种客户端,发现这个是最好的。可以下PT (cmct),稳定,
界面简洁。推荐一下。
z*********e
发帖数: 10149
6
windows下的trnasmission-qt也很不错
d********l
发帖数: 741
7
以前都在windows下面使用utorrent, 发现广告越来越猖獗了。还是用bt server爽。
z*********e
发帖数: 10149
8
在路由器上搞个adblock吧,有的比较顽劣的ad搞不定,普通的广告还是很容易挡住
d********l
发帖数: 741
9
一般的广告也无所谓。就是utorrent常常会自动播放视频广告,声音还巨大,有时候正
睡觉被吵醒了,极为反感。迅速卸载了,然后才开始研究新方案。现在windows pc也不
整天开机了。
w*x
发帖数: 3456
10
ut关掉广告挺简单的,貌似是高级设置里改几个参数就行。记得把自动更新也给关了。。
c******n
发帖数: 16666
11
transmission我再nas上用 很方便 直接扔种子进去 自己就下好了
S*A
发帖数: 7142
12
ctorrent 用 command line 也不错,非常精简。
就没有图形界面。直接搞个 directory 里面仍进去新
的种子就可以自己下了。
w****u
发帖数: 3147
13
一般都是nas用transmission~~当然如果群晖的话自己的download center就很好,据说
根据transmission改的。
z***a
发帖数: 3
14
UPnP 是互联网上的一个新协议,我的理解是可以解决在 nat gw 后面的
主机与互联网上其他机器的通讯障碍,比如 MSN 视频聊天。
那 MSN 是支持 UPnP 协议的,如果希望你的网关后面的机器能够正常使用 MSN 语音/
视频,只需要让你的网关支持 UPnP 即可,UPnP可的支持可以由 linux 系统中的
daemon 来实现,也可以用其他方式。
参考:
UPnP: Universal Plug and Play
http://www.upnp.org
source forge 上有一些 UPnP 的实现:
UPnP SDK for Linux:
The Universal Plug and Play (UPnP) SDK for Linux provides support for
building UPnP-compliant control points, devices, and bridges on Linux.
Linux UPnP Internet Gateway Device:
This is a deamon that e
b*e
发帖数: 3845
15
来自主题: Java版 - JAVA RUNTIME.EXEC 一问
用JAVA Runtime.exec()执行command line程序时,总会跳出一个cmd窗口。因为有
时候command lind某程序执行的很慢,如果用户把这个cmd窗口关闭的话,该程序就会
中止执行了,怎么样才能避免这种情况发生?(JAVA中有没有Background Process的功能

或是daemon process 的功能?) Thanks.
t****r
发帖数: 25
16
i guess if it's a non-daemon thread, it does not need to stop right away.
m******t
发帖数: 2416
17
If thread2 is stuck in native socket code -- e.g.
trying to connect to the url, there is no (java)
way to interrupt it. The only possibility AFAICS
would be to start it as a daemon thread.
I hope everybody realizes that this was a thread
from over a year ago, by the way. 8-)
F****n
发帖数: 3271
18
你是第二次回答这问题吧,我看那个SOCKET,DAEMON啥的很眼熟啊:))
g**e
发帖数: 6127
19
来自主题: Java版 - 1 quick interview question
System.exit
runtime error
when a daemon thread is abandomed
Z*****Z
发帖数: 723
20
来自主题: Java版 - 1 quick interview question
System.exit daemon thread are correct
the second reason seems not correct
public class Test {

void f(){
try{
System.out.println("in a try block");
//throw new Error("error"); // not working
throw new RuntimeException(); // not working
} finally{
System.out.println("finally");
}
}


public static void main(Str
c******n
发帖数: 4965
21
来自主题: Java版 - very archaic issue :
one colleague replied
using ssh -t ....
would help
here is my reply to him (his approach partially works, but only when you
terminate ssh client by ctrl-C, which is SIGINT, it does not work
when the ssh is run by a daemon like hudson, and terminated with -15 )
######################################
This is a cleaner way than the hack I came up with: I found that “normally
” the remote code terminates because it wants to print to the terminal,
Which is closed after ssh is closed, so the remote c... 阅读全帖
c******n
发帖数: 4965
22
来自主题: Java版 - very archaic issue :
one colleague replied
using ssh -t ....
would help
here is my reply to him (his approach partially works, but only when you
terminate ssh client by ctrl-C, which is SIGINT, it does not work
when the ssh is run by a daemon like hudson, and terminated with -15 )
######################################
This is a cleaner way than the hack I came up with: I found that “normally
” the remote code terminates because it wants to print to the terminal,
Which is closed after ssh is closed, so the remote c... 阅读全帖
f*n
发帖数: 254
23
来自主题: Java版 - 问一个lock的puzzle
77th from Java Puzzlers book.
Code is as following:
import java.util.*;
public class Worker extends Thread {
private volatile boolean quittingTime = false;
public void run() {
while (!quittingTime) {
pretendToWork();
}
System.out.println("Beer is good!");
}
private void pretendToWork() {
try {
Thread.sleep(300); // Sleeping on the job?
} catch (InterruptedException ex) {}
}
// It's quitting time, wait for wor... 阅读全帖
d****g
发帖数: 325
24
需要一个daemon程序,开机以后能自动定时不断的发送本机IP地址到指定邮箱。主要是
用来监视机器的当前IP。Windows和Linux版本都需要,请问有这样的东西吗?多谢
N****w
发帖数: 21578
25
来自主题: Linux版 - 现在的 linux 后台进程太多了
这还是 Xubuntu
没起啥服务,就有一堆的 listener, polling 之类的东西
前面的 kernel thread 且不用说
hald 一堆
gnome-keyring-daemon 好几个
scim 都有好几个
xfce 那些个就不说了
哎。。。虽然是废物进程,还是占内存,影响调度负担
响应想不慢都难
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.3 3056 1960 ? Ss 07:09 0:02 /sbin/init
root 2 0.0 0.0 0 0 ? S< 07:09 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S< 07:09 0:00 [migration/
0]
root 4 0.0 0.0 0
N****w
发帖数: 21578
26
来自主题: Linux版 - 发现 debian 5.0 还是简朴多了
live USB 启动,英文系统,X11+ XFCE,使用内存仅 65MB 左右
可惜没有无线网设置程序
Ubuntu 启动到文本登录,就要45MB
登录到中文 XFCE 就 240MB 左右了
几个吃内存大户:
scim 要 30MB,实在难以想象
networkManager 十几 MB,靠,这个玩意完全没有必要常驻内存
无线网起来之后就完全可以滚蛋了
还有 hald, gnome 等等的一堆 daemon
浪费亚浪费
N****w
发帖数: 21578
27
来自主题: Linux版 - dreamLinux 3.5 终于出了
24x7 开着的是 ubuntu,从7.x 稀里糊涂升级上来的 hehe
比 8.10 正式安装版好像少一些 daemon,省一些内存,
跟 debian 差不多,但软件跟 ubuntu 一样新
N****w
发帖数: 21578
28
来自主题: Linux版 - 爽了,startxfce4 才用了 82MB
你怎么弄的
偶这可什么定制都没有
只不过没装 gdm 没装 gnome-key-ring 没有该死的 network manager
其它 daemon 都跟 ubuntu 一样
u**s
发帖数: 50
29
来自主题: Linux版 - screen能竖着分屏幕吗?
if you use emacs daemon, you don't need screen any longer.
g*****g
发帖数: 226
30
Linux的shell很强大,系统所有的问题都可以通过命令行解决,图形界面下的很多工具
实际上就是基于这些shell下的命令行的,这一点是 windows没法比的。说到小缺陷的
累记,也仅仅是锦上添花而已,应该可以在未来的发行中稍微弄一下就能实现吧,而不
是要像微软那样专门去开发工具。下面就开始:
1、微软系统下有daemon这类的iso虚拟光驱的工具,Linux下不需要这样专门的工具,
在命令行下就可以一个命令解决,但是这类的常用的功能如果右键点击iso文件,下拉
菜单多一个映射到/mnt/cdrom的选项之类的就更好了;
2、图形界面下的可执行的shell脚本如果也可以这样的右键选择shell下执行,之后自
动开个当前目录在该文件的shell窗口,并且执行就好了,就省掉了手动开shell的窗口
并且去敲命令行的重复;
暂注意到这些,其他的以后再说,这些windows都没有,并没法比,但是这类的操作在
Linux下很常用,如果进一步添点花,用起来就更爽了。
j*a
发帖数: 14423
31
来自主题: Linux版 - 问个TCP有关timeout的技术问题
只能用来防止sshd session timeout被sshd daemon断开
l*******e
发帖数: 3584
32
来自主题: Linux版 - debian下如何用双显
But the GNOME 2.20/2.22 mix on Debian Lenny does not support a dual-head
configuration. That option only became available in GNOME 2.24 and thus is
not available in Debian Lenny. You need to turn off the XRandR plugin for
the gnome-settings-daemon.
And the lastest version of Gnome looks not stable on Debian now.
Thanks a lot anyway.
c****y
发帖数: 59
33
有个装了Debian Lenny的buffalo NAS,想在上面装个HoTTProxy做WAP server,这是个
perl写的程序。基本上按照它网站上的方法,
http://www.hottproxy.org/articles/LinuxEtc.html
安装了所有perl modules,启动了daemon想设置用户,但从PC访问,报告403 Forbidden
,You are not authorized to access this resource. SSH端提示Refused attempted
connection from 192.168.1.115(PC's IP address).看了一下.conf文件,只有一行
AdminPort = 8085
google了没找到解决办法,有没有谁在linux下装过HoTTProxy,帮我看看吧,10个包子
h********n
发帖数: 380
34
来自主题: Linux版 - Emacs 23.1很不错!!
看了一下what's new,好像有一个feature是emacs daemon,有点类似emacs server,
我的理解是以后启动linux就自动帮你在后台启动了emacs,好处是第一次启动emacs也
会很快。
a*******e
发帖数: 3021
35
来自主题: Linux版 - usb auto mount?
fresh installed f11, usb doesn't auto mount in gnome.
What is the service or daemon needed to make automount work?
a*******e
发帖数: 3021
36
I would if i have. :(
after i messed with xorg-drv-nvidia and nvidia driver from nvidia website, i
reinstalled f11.
Now i only have xorg-drv-nv. Before i know how to do it safely, i wouldn't
mess them again.
Or i will backup my system before i install them. give me some time. :)
With current nv driver, there is no .xsession-log in my home directory. only
a .xsession-error as following:
damn, it's 37MB, and all of them are:
** (gnome-settings-daemon:1706): WARNING **: Connection failed, reconnect
v*****r
发帖数: 1119
37
来自主题: Linux版 - 求助:一个sendmail的问题
我觉得你的local linux box 的sendmail mail relay 还没有设好, 先从你的 ISP 那
里要 outging SMTP server name, 或者用public free 的 SMTP server (好像你可以
免费用Google的).
Depending on what Linux you are using, 古狗一下 如何 configure sendmail
relay (or smarthost relay) on linux. 剩下的就是改改 sendmail.cf 配置文件,re
-start sendmail daemon.
m**********w
发帖数: 4161
38
平台:
Thinkpad T41/Ubuntu and Dell Inspiron E521 desktop/Vista。
症状:
在Ubuntu启动vncserver后,在Vista用TightVNC连接,出现gnome-setting-daemon错误
,如
图一。
跳过这个错误继续进行,启动terminal,出现字体扭曲,很不舒服,如图二。另外任务栏的主题也略有不同。
但如果用Ubutuntu自己的remote desktop,则一切正常,如图三。这个和我在笔记本上看到的Ubuntu界面是一模一样的。
但使用remote desktop的问题是laptop和desktop分辨率不一样。这样无法在desktop上
全屏使用
Ubuntu。
给出解决方案的我送大包子,谢谢!
j****9
发帖数: 2295
39
来自主题: Linux版 - 问个mysql cluster的问题
Situation: You received SMS notification that your MySQL cluster management
server is unresponsive and the node management daemon refuses to start.
Outline the steps you would take to solve this problem.
这个怎么答呢?
g****g
发帖数: 1828
40
来自主题: Linux版 - ubuntu用着用着就没声音了。
doesn't work either...
sudo alsa reload
lsof: WARNING: can't stat() fuse.gvfs-fuse-daemon file system /home/weigang/
.gvfs
Output information may be incomplete.
/sbin/alsa: Warning: Processes using sound devices: 6385(pulseaudio).
Unloading ALSA sound driver modules: snd-hda-codec-analog snd-hda-intel snd-
hda-codec snd-hwdep snd-pcm-oss snd-mixer-oss snd-pcm snd-seq-dummy snd-seq-
oss snd-seq-midi snd-rawmidi snd-seq-midi-event snd-seq snd-timer snd-seq-
device snd-page-alloc (failed: mod
a*****i
发帖数: 4391
41
来自主题: Linux版 - how to enable ibus?
When I use it, I just run ibus-daemon in my startup programs.
b***n
发帖数: 462
42
原来的机器用fedora12,openvpn 轻松搞定(只能手动启动,networkmanager死活不行
,也不知道为什么。)到了ubuntu,结果怎么都不行,也不知道在哪里看log。最后没
办法,全手动,才看到错误,因为ubuntu没有nobody group,他是nogroup。
气死我了,改设置文件,马上就好了。然后也知道在/var/log/daemon.log里面有log可
以看。
但是,networkmanager 就是不行,错误信息就是 reject on not match message
babababa
反正我是不知道为什么。手动就手动吧。
连接到办公室的win 7和centos,很轻松,开始盼望恶劣天气在家办公。
i***l
发帖数: 9994
43
来自主题: Linux版 - 如何复制有版权的DVD?
why not use something like daemon tools to make a cd image?
y***d
发帖数: 2330
44
ubuntu bug 太多了,这两天又琢磨明白了两个 bug,
一个是 sshfs 用了后就不能 suspend,总是放完电死掉,后来网上搜出来是 sshfs+
system monitor applet 的原因
另一个是 gnome-settings-daemon 总是在 resume 后长时间读写硬盘,手感很不好,
后来发现是 .thumbnails/ 的处理有 bug,处理方式全无逻辑
这两个 bug 都被提交很久了,但是没有解决。
y***d
发帖数: 2330
45
这两个 bug 都有若干前人报过了,也 confirm 了,只不过没 patch,或者有 patch
没有用。
比如 gnome-settings-daemon 这个问题已经几代 ubuntu 发生了。触发条件是浏览巨
大相册,导致 .thumnails 足够大,比如说 30k 个文件。

sshfs+
好,
y***d
发帖数: 2330
46
来自主题: Linux版 - 不行了,还是问一下吧
windows 的 gui bug 还是相当少的
linux 下的 gui 不细致,ubuntu 更是把这个问题发展到顶峰;作为基础的 debian 不
是稳定版倒罢了,可是象 Ubuntu One、indicator applet 这种显然只完成了 40% 工
作量的软件也敢放到发行版里面,就太莫名其妙了。这两个东西连基本功能都不齐全,
更别说试用过程了。
前面我说的 gnome-settings-daemon 的 bug,上游设置的参数是 .thumbnails 过期时
间 30 天,最大 64M,到 ubuntu 里面随手就改成 180 天,512M,更别说检查 .
thumbnails 的时间被放到了 resume 之后几秒钟。Resume 之后谁不是着急要用电脑,
可 ubuntu 却在这个时候去检查上万个文件是否过期。
综上所述,ubuntu 的质量控制是完全失控的状态,这个是 manager 的问题。
n*****t
发帖数: 22014
47
startup application 里加个 ibus-daemon -d -r
大概是这个吧,man 一下就知道了
z**r
发帖数: 17771
48
☆─────────────────────────────────────☆
zher (民工.铜豌豆) 于 (Mon Aug 2 03:01:27 2010, 美东) 提到:
家里很多俺闺女看的少儿DVD,都是正版的,可经常放来放去,有些已经磨损了,想
copy一下留个备份,发现直接copy不行,都有版权保护。有什么办法可以留个备份呢?
☆─────────────────────────────────────☆
xiaoju (可爱的龙猫) 于 (Mon Aug 2 03:11:14 2010, 美东) 提到:
Google一下一堆工具。

☆─────────────────────────────────────☆
zher (民工.铜豌豆) 于 (Mon Aug 2 03:29:47 2010, 美东) 提到:
以前就google过,很多说是免费,结果都是功能不全,也懒得一个一个去试了。哪个软
件比较靠谱?windows下的也行
☆─────────────────────────────────────☆
xiaoju (可爱的... 阅读全帖
s*******8
发帖数: 12734
49
来自主题: Linux版 - linux新手求助
苹果的是基于BSD的。
提供几个面经。
一般会问如何找一个文件,如何用find,如何用模糊查找,比如 *.log,log文件在哪个
目录下,比如用什么command找daemon,如何regular expression。
这几个最常见了。
bless
b*****l
发帖数: 9499
50
来自主题: Linux版 - 俺土俺知道
nnd, 出错的地方很简单:lo down 了。
By default,在 /etc/network/interfaces 里,auto lo 和 iface lo inet loopback
被 comment 掉了。所以,localhost 不能访问,当然就不能设置 DISPLAY 为
localhost:0.0。
今天设置另一个 daemon 时,报错说不能访问 localhost,才意识到。
tnnd,为啥 debian 的 default interfaces 里这两句给 comment 了?耍俺啊。。。
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)