由买买提看人间百态

topics

全部话题 - 话题: exes
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
w********e
发帖数: 557
1
来自主题: Linux版 - [请教]文件输入 (转载)
If exe can't changed then it is hard. Maybe you can use pipe to pass the
results to exe.
If exe can be changed, you can make exe wait for the results.
p*****s
发帖数: 344
2
u don't need linux partition to run dsl or slax.
as you have a powerful laptop, dsl is too small to play with, then
search slax.
as you only have a harddisk that can boot. I suggest you to search
"Starting GRUB for DOS from DOS".
You can use load GRUB for DOS in config.sys using one of the following
lines:
DEVICE=GRUB.EXE
INSTALL=GRUB.EXE
SHELL=GRUB.EXE
grub.exe can also be launched from DOS prompt or batch file such as
AUTOEXEC.BAT.
once you have grub running, it can boot slax easily.
w*s
发帖数: 7227
3
ok, i don’t want to mention the pain we went through, me and another very
dedicated engineer are feeling exhausted, very exhausted.
we build c++ code in ubuntu in intel pc, the target runs in arm board.
we can step into the source code for exe, but not for shared library.
say
/aaa is the source code folder for exe, /aaa/1.cpp is the source for 1.exe
/bbb is the folder in target you have /bbb/1.exe
/ccc is the source code folder for shared library, /ccc/2.cpp is the source
for 2.so
/ddd is its fo... 阅读全帖
w*********r
发帖数: 42116
4
我可以更改文件名,例如从A.exe B.exe C.exe D.exe,但是运行界面是完全一样的,
我想稍微改动一下界面来区分。
m********a
发帖数: 1312
5
来自主题: Programming版 - g++ for Windows
从所需的dll来看mingw的g++比cygwin的要省些麻烦,因此一直用mingw g++。
$ cygcheck g++
Found: c:\MinGW\bin\g++.exe
c:\MinGW\bin\g++.exe
C:\WINDOWS\system32\KERNEL32.dll
C:\WINDOWS\system32\ntdll.dll
C:\WINDOWS\system32\msvcrt.dll
C:\WINDOWS\system32\USER32.dll
C:\WINDOWS\system32\GDI32.dll
$ cygcheck /usr/bin/g++.exe
C:\cygwin/bin\g++.exe
C:\cygwin/bin\cygwin1.dll
C:\WINDOWS\system32\ADVAPI32.DLL
C:\WINDOWS\system32\ntdll.dll
C:\WINDOWS\system32\KERN
t**i
发帖数: 688
6
来自主题: Programming版 - Stack Overflow怎么办?
我在使用别人写的 一个程序,只有binary executable,是用Fortran写的。
Windows XP 32-bit 和Windows Server 2008 64-bit都是过了,每次都有如下的错误:
forrtl: severe (170): Program Exception - stack overflow
Image PC Routine Line Source
haplotyping.exe 00402205 Unknown Unknown Unknown
haplotyping.exe 0040D8BB Unknown Unknown Unknown
haplotyping.exe 0044A549 Unknown Unknown Unknown
haplotyping.exe 0043B964 Unknown Unknown Unkn
l**t
发帖数: 64
7
you confused me.
If you want to merge many obj files to one file, use the method I previously
told you, and a *.lib file will be generated.
If you want to get a dll file (no main entry, no exe file can be gotten),
use link.exe with the /dll option, which will generate a dll file and lib
file for you.
Of course, you can specify the c function you provided as the new entry
function, by setting the link.exe option /entry as the c function, then the
exe file will be generated and make the c function
h**********c
发帖数: 4120
8
来自主题: Programming版 - Visual C++ 高手帮忙,一个Link Error
Just jumped a similar error of a project of my own:
LINK : debug\qtwagon2012.exe not found or not built by the last incremental
link; performing full link
Creating library debug\qtwagon2012.lib and object debug\qtwagon2012.exp
glwidget.obj : error LNK2019: unresolved external symbol "public: static
class qtLight * __cdecl qtLightSingleton::getInstance(void)" (?getInstance@
qtLightSingleton@@SAPAVqtLight@@XZ) referenced in fu
nction "public: void __thiscall GLWidget::slotLight3dMoveOrders(int,... 阅读全帖
i******t
发帖数: 22541
9
来自主题: Programming版 - cmake coeblock求教
写了个cmake
//这个test_bst.cpp 有个main函数
SET(APP_BST_SRC test_bst.cpp)
ADD_EXECUTABLE(test_bst ${APP_BST_SRC})
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../bin)
//这个test_max_heap.cpp 有个main函数
SET(APP_MAX_HEAP_SRC test_max_heap.cpp)
ADD_EXECUTABLE(test_max_heap ${APP_MAX_HEAP_SRC})
SET(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/../bin)
其他设置都可以 在vs环境下 正常编译, 并且生成两个exe。
但是在codeblock里面 却只能生成第一个exe 编译时成功的
求解 谢谢
不应该是cmake写的不对吧
我在命令行 直接用 mingw32-make 是可以生成两个exe的
只是在codeblock里进行build 只能得到第一个exe
z****e
发帖数: 54598
10
来自主题: Programming版 - 今天第一次在windows上倒腾vert.x
我记得古德霸在这里帮其它人解决过一次类似问题
也是jre和jdk冲突的问题
jre安装之后,默认的java.exe启动是jre那个
所以要修改path,把jdk的bin目录放到path前面去
比jre那个java.exe所在目录更前
//jre那个java.exe好像是在windows32里面
如果怕麻烦的话,直接无脑把jdk的bin目录的path放到最前加一个;就好了
想知道有几个java.exe
windows下cmd屏幕用
which java
就可以看到,一般会有两个,如果安装了jdk的话
修改path后重启cmd,就可以搞定
vert.x安装的话,也需要修改path,把bin的路径放到path里面去
不过这个不会冲突,所以修改好了就可以用vertx命令鸟
x******a
发帖数: 6336
11
来自主题: Programming版 - C++ problem
If I compile separately with g++ -std=c++11. It works.
but if I use the following makefile, it does not work.
CPP = g++
CXXFLAGS = -std=c++11
#-pedantic
OFLAG = -Wall -o
LFLAG = -l
IFLAG = -I
LIBFLAG = -L
LIBDIR = /usr/local/lib/
INCLUDEDIR = /usr/local/include/
DEBUGF = -g -D DEBUG
DEBUG = no
.SUFFIXES: .exe .cpp
.cpp.exe:
$(CPP) $(OFLAG) $@ $<
$@
main.exe: main.cpp
$(CPP) $(CXXFLAGS) $(IFLAG) $(INCLUDEDIR) $(OFLAG) boost.exe main.cpp $(
LIBFLAG) $(LIBDIR) $(LFLAG) libboost_regex
b**********h
发帖数: 419
12
来自主题: Programming版 - CIH源代码
究竟难在哪里?
; Win Cih Source Code
;I m not the dissembler of the code and really I don't know ;who is the
writer or dissembler . Compile or run this program ;at your own risk. Also I
m not giving any guarantee of running ;the program !!!.
;****************************************************************************
; * The Virus Program Information *
;****************************************************************************
; * *
; * Designer : CIH Source : TTIT of TATUNG in Taiwan... 阅读全帖
l****n
发帖数: 22
13
来自主题: Security版 - help: strange record.
I find these information from the LAN, what this mean? are they trying to
attack my computer??
137.205.152.26 - - [23/May/2002:13:44:51 +0100] "GET /scripts/root.exe?/c+dir
HTTP/1.0" 404 288
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET /MSADC/root.exe?/c+dir
HTTP/1.0" 404 286
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET
/c/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 296
137.205.152.26 - - [23/May/2002:13:44:52 +0100] "GET
/d/winnt/system32/cmd.exe?/c+dir HTTP/1.0" 404 296
137.205
o*******k
发帖数: 562
14
来自主题: Security版 - 104种木马的清除方法(2)
81. Share All
清除木马的步骤:
打开注册表Regedit
点击目录至:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionNetworkLanMan
这里你将看到所有被木马共享出来的你的硬盘符号,把它们一个个删除掉。
82. ShitHeap
清除木马的步骤:
打开注册表Regedit
点击目录至:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRunServices
删除右边的项目:recycle-bin = "c:windowssystem ecycle-bin.exe"
或者recycle-bin = "c:windowssystem.exe"
关闭保存Regedit,重新启动Windows
删除c:windowssystem ecycle-bin.exe或者c:windowssystem.exe
OK
83. Snid v1 – 2
清除木马的步骤:
打开注册表Regedit
点击目录至:
HKEY_LOCAL_MACHINESOFTWA
s*r
发帖数: 2757
15
来自主题: Security版 - 帮我看看我的web log吧
前日网络忽然断了,一问是被学校网管block了
自省一下,最近没down mp3 avi,只是用iis开了http service
查了以下weblog果然有问题,不过看不懂对方在做什么,还请大家看看
这只是一天的
00:24:29 128.8.198.188 HEAD /Default.htm 200
00:24:29 128.8.198.188 HEAD /MSADC/root.exe 404
00:24:29 128.8.198.188 HEAD /PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
404
00:24:29 128.8.198.188 HEAD /PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
404
00:24:30 128.8.198.188 HEAD /PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
404
00:24:32 128.8.198.188 HEAD /PBServer/..%5c..%5c..%5cwinnt/
a**a
发帖数: 63
16
来自主题: Security版 - 帮我看看我的web log吧
Something more in detail? I am interested in knowing it too.

/PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
/PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
/PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
/PBServer/..%5c..%5c..%5cwinnt/system32/cmd.exe
f*******y
发帖数: 258
17
来自主题: Security版 - 请教问题。
如何知道在windows task manager 里面的processes里面的 每个process是做什么的?比
如说,我发现 naPrdMgr.exe, spoolsv.exe, wdfmgr.exe, etc. ,
还有好多好多的svhhost.exe. 不知道这些是做什么的?也不知道是不是spy程序。请教一
下。ps: 我是新手,请多多关照。
m**u
发帖数: 14
18
我的系统是win xp, 用symantec antivirus(学校当的正版),用了好长时间了,也没
有发现什么问题。今天不知为何发彪,把很多没装在c盘的应用程序都当作“
downloader”病毒给删除了,很多软件是安装程序,本来是留作系统重装用的,还有一
个游戏,exe文件也被删除了,连forxmail的卸载程序也被删除了,还有cterm,sterm
的免安装版里的exe文件也都被删除了。试验了一下,只要浏览器打开存放这些程序的
文件夹,里面的一些exe文件就会被删除。搜索了一下downloader,知道是一个木马病
毒,可还是搞不懂和我电脑里的这些安装程序什么关系,是不是这些exe文件都已经感
染了木马?
迷惑中。。。
x******n
发帖数: 1
19
来自主题: Security版 - csrss 频繁出对话框, 求助。
csrss 频繁出对话框, 求助。
WinXP,开机不长时间,csrss就频繁跳出对话框,
'AM' is not a valid integer value.
搜索电脑csrss,发现
csrss.exe, C:program Files, 179 KB
CSRSS.EXE-03323C54.pf, C:windowsprefetch, 25 KB
CSRSS.EXE-35A6A30E.pf, C:windowsprefetch, 23 KB
csrss.exe, C:windowssystem32, 6kb
CSRSS.EX_, C:I386, 3KB
使用hijackthis, 发现以下内容,请各位大侠指正。
Logfile of HijackThis v1.99.1
Scan saved at 10:33:52 AM, on 12/24/2006
Platform: Windows XP SP2 (WinNT 5.01.2600)
MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)
Running processes:
C:WI
R*****l
发帖数: 310
20
最近,Viking,熊猫烧香,落雪等病毒/木马比较猖獗,尤其是新的变种。
这些病毒/木马的一个特点是会生成互相守护的进程,迅速锁住防火墙和
杀毒软件的运行,并全盘搜索,大量感染exe和网页/脚本文件。一旦你查
杀不干净,以后运行任何一个带毒exe或网页/脚本,都可能再次中标。
这些病毒/木马进程运行后,先会在%windows%或相关目录下生成木马病毒
主程序,进而开始感染系统。所以,一个简单的免疫办法就是:根据这些
病毒在目标目录下创建的带毒程序名,创建一个同名的目录,设其属性为
只读。比如,某病毒将在system32下面创建一个virus.exe,那么你事先
在system32下创建一个文件夹,名字叫virus.exe,属性设为只读。因为
windows系统不允许同一目录下存在两个名称完全相同的文件/目录,所以
一旦病毒/木马进程试图在目标目录下创建病毒程序,将会access denied,
创建失败。也就防住了病毒核心程序的运行,系统的文件也将免受感染。
在有效的专杀工具出来前,不失为一个简单免疫的办法。
X*******o
发帖数: 1587
21
来自主题: Security版 - 急急急,貌似感染木马群!
打开一个网页的时候中的,先是temp里面感染什么qqw8[1].exe, 然后杀毒软件不停提
示sys里面感染qqw9[1].exe, qqw10[1].exe....qqw32[1].exe. 接下来语言栏就没有了
,语言切换也失灵,用常规的3种方法都不能恢复。再然后发现任务管理器,注册表都
出不来了。下载了瑞星的木马群专杀,什么都没杀到,现在用金山的木马专杀,情况好
像也不妙。怎么办啊?啊呜~~~!!
a****3
发帖数: 2
22
紧急求助!
电脑中招了!
1. 事件经过:周四晚上,为了看周五早上的奥运直播,狂down了一大堆插件,结果
周五早上突然发现OFFICE XP 和 IE 不能用了。每次试图打开这两个文件,总是弹出如
下信息:
“WINWORD.EXE - Application error
The instruction at "0x370036b4" referenced memory at "0x00000428". The
memory could not be "read".
Click OK to terminate the program
Click on Cancel to debug program"
2. Windows Task manager 表现:发现有一个Process "wuauclt.exe"极为可疑,在
Task Manager 总是发现有四个wuauclt.exe 在运行。而且,计算机时不时弹出如下信
息:" wuacult.exe has encountered a problem and needs to close."
o*******k
发帖数: 562
23
来自主题: Software版 - [转载] 104种木马的清除方法(2)
【 以下文字转载自 Security 讨论区 】
【 原文由 overdrunk 所发表 】
81. Share All
清除木马的步骤:
打开注册表Regedit
点击目录至:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionNetworkLanMan
这里你将看到所有被木马共享出来的你的硬盘符号,把它们一个个删除掉。
82. ShitHeap
清除木马的步骤:
打开注册表Regedit
点击目录至:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRunServices
删除右边的项目:recycle-bin = "c:windowssystem ecycle-bin.exe"
或者recycle-bin = "c:windowssystem.exe"
关闭保存Regedit,重新启动Windows
删除c:windowssystem ecycle-bin.exe或者c:windowssystem.exe
OK
83. Snid v1 – 2
清除木马的步
t******g
发帖数: 10390
24
哈,找到了,去年4月1号那张.
关机,也有讲究
win98是rundll32.exe user.exe,ExitWindows
或者rundll32.exe user.exe,ExitWindowsExec来重启.
NT另有说法
w****t
发帖数: 137
25

由于这个3721网络实名插件是使用Rundll32.exe调用连接库的,
系统无法终止Rundll32.exe进程,所以我们必须重新启动计算机,
按 F8 进入安全模式(F8 只能按一次,千万不要多按!)
之后,单击 开始 -> 运行 regedit.exe 打开注册表,进入:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\
删除键:CnsMin
其键值为:Rundll32.exe C:\WINNT\DOWNLO~1\CnsMin.dll,Rundll32
(如果是win98,这里的 C:\WINNT\DOWNLO~1\ 为 C:\WINDOWS\DOWNLO~1\)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\AdvancedOptions\
删除整个目录:!CNS
这个目录在 Internet 选项 -> 高级 中加入了3721网络实名的选项。
HKEY_LOCAL_MACHINE\SOFTWARE\3721\ 以及 HKEY_C
b*****a
发帖数: 297
26
来自主题: Software版 - office 2010校验码
【 以下文字转载自 shopping 讨论区 】
发信人: baiwuya (白乌鸦), 信区: shopping
标 题: office 2010校验码
发信站: BBS 未名空间站 (Sat Apr 24 09:31:56 2010, 北京)
cn_office_professional_plus_2010_x86_515501.exe
SHA-1: ad9f7e48ebaf648169e34833e2e218d62b69fb84
cn_office_professional_plus_2010_x64_515528.exe
SHA-1: e8ab0ca8c1bc44b62445e0b9e37a0dfd13933ddb
ct_office_professional_plus_2010_x86_516579.exe
SHA1: 16FE19D864F6604EA7CFECD59DC70CCCAC094600
ct_office_professional_plus_2010_x64_515502.exe
SHA1: 935A0025D00257F79233998233EE56D968
s******a
发帖数: 472
27
illustrator不能保存成ai,pdf等格式;唯一可以保存的格式是fxg
特点是在家不能保存,在研究所里可以。
谢谢!
Log Name: Application
Source: Application Error
Date: 2012/5/26 21:03:23
Event ID: 1000
Task Category: (100)
Level: Error
Keywords: Classic
User: N/A
Computer: yanyan-THINK
Description:
Faulting application name: Illustrator.exe, version: 15.0.0.399, time stamp:
0x4bad3bbf
Faulting module name: AGM.dll, version: 4.20.68.7602, time stamp: 0x4b980061
Exception code: 0xc0000005
Fault ... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)