git-svn-id: svn://ultimatepp.org/upp/trunk@1142 f0d560ea-af0d-0410-9eb7-867de7ffcac7

This commit is contained in:
koldo 2009-05-07 20:08:31 +00:00
parent 7326510d3f
commit e45fc249c5
29 changed files with 0 additions and 13376 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,362 +0,0 @@
#ifndef _SysInfo_SysInfo_h
#define _SysInfo_SysInfo_h
using namespace Upp;
/////////////////////////////////////////////////////////////////////
// Different functions
// Append a file after other
bool FileCat(const char *file, const char *appendFile);
// Replace find with replace in str
String Replace(String str, String find, String replace);
// Convert a long int a String
String FormatLong(long a);
// Search a file fith name with wildcards in a dir and subdirectories with certain text inside
Array<String> SearchFile(String dir, String condFile, String text = "");
// As LoadFile but it works in Linux for files automatically generated by the OS
// #ifdef PLATFORM_POSIX
String LoadFile_Safe(String fileName);
// #endif
// #if defined(PLATFORM_WIN32)
// #define LoadFile_Safe LoadFile // Not necessary in Windows
// #endif
// Gets the program that will open by default the files with extension ext
String GetExtExecutable(const String ext);
// Open the file with the adecuated program defined in the OS by default
bool LaunchFile(const String file);
// Functions to launch command line programs
// readCallBack is a function to manage the program output
// Returns the command exit code
int LaunchCommand(const char *cmd, void (*readCallBack)(String &));
// ret gets all the program output
// Returns the command exit code
int LaunchCommand(const char *cmd, String &ret);
// It returns the program output
String LaunchCommand(const char *cmd);
// A ProcessEvents than can be used in non gui programs
inline void DoEvents()
{
#ifdef CTRLLIB_H
Ctrl::ProcessEvents();
#endif
}
// A String based class to parse into
class StringParse : public String {
public:
void GoInit() {pos = 0; lastSeparator='\0';};
StringParse():String("") {GoInit();};
StringParse(String s): String(s) {GoInit();};
bool GoBefore(const String text)
{
int newpos = Find(text, pos);
if (newpos < 0)
return false; // If it does not find it, it does not move
pos = newpos;
return true;
};
bool GoAfter(const String text)
{
if(!GoBefore(text))
return false;
pos += strlen(text);
return true;
};
bool GoAfter(const String text, const String text2)
{
if(!GoAfter(text))
return false;
if(!GoAfter(text2))
return false;
return true;
};
bool GoAfter(const String text, const String text2, const String text3)
{
if(!GoAfter(text))
return false;
if(!GoAfter(text2))
return false;
if(!GoAfter(text3))
return false;
return true;
};
bool GoAfter_Init(const String text) {GoInit(); return GoAfter(text);};
bool GoAfter_Init(const String text, const String text2) {GoInit(); return GoAfter(text, text2);};
bool GoAfter_Init(const String text, const String text2, const String text3) {GoInit(); return GoAfter(text, text2, text3);};
void GoBeginLine()
{
for (; pos >= 0; --pos) {
if ((ToString()[pos-1] == '\r') || (ToString()[pos-1] == '\n'))
return;
}
}
bool IsBeginLine()
{
if (pos == 0)
return true;
if ((ToString()[pos-1] == '\r') || (ToString()[pos-1] == '\n'))
return true;
return false;
}
bool IsSpaceRN(int c)
{
if (IsSpace(c))
return true;
if ((c == '\r') || (c == '\n'))
return true;
return false;
}
// Gets text between "" or just a word until an space
// It considers special characters with \ if between ""
// If not between "" it gets the word when it finds one of the separator characters
String GetText(String separators = "")
{
String ret = "";
if (pos > GetCount())
return ret;
int newpos = pos;
while ((IsSpaceRN(ToString()[newpos]) && (ToString()[newpos] != '\"') &&
(ToString()[newpos] != '\0')))
newpos++;
if (ToString()[newpos] == '\0') {
pos = newpos;
return "";
}
if (ToString()[newpos] == '\"') { // Between ""
newpos++;
while (ToString()[newpos] != '\"' && ToString()[newpos] != '\0') {
if (ToString()[newpos] == '\\') {
newpos++;
if (ToString()[newpos] == '\0')
return "";
}
ret.Cat(ToString()[newpos]);
newpos++;
}
lastSeparator = '"';
} else if (separators == "") { // Simple word
while (!IsSpaceRN(ToString()[newpos]) && ToString()[newpos] != '\0') {
if (ToString()[newpos] == '\"') {
newpos--; // This " belongs to the next
break;
}
ret.Cat(ToString()[newpos]);
newpos++;
}
lastSeparator = ToString()[newpos];
} else { // Simple word, special separator
while (ToString()[newpos] != '\0') {// Only consider included spaces (!IsSpaceRN(ToString()[newpos]) && ToString()[newpos] != '\0') {
if (ToString()[newpos] == '\"') {
newpos--; // This " belongs to the next
break;
}
if (separators.Find(ToString()[newpos]) >= 0) {
lastSeparator = ToString()[newpos];
break;
}
ret.Cat(ToString()[newpos]);
newpos++;
}
lastSeparator = ToString()[newpos];
}
pos = ++newpos; // After the separator: ", space or separator
return ret;
}
String GetLine()
{
return GetText("\r\n");
}
double GetDouble(String separators = "") {return atof(GetText(separators));};
int GetInt(String separators = "") {return atoi(GetText(separators));};
long GetLong(String separators = "") {return atol(GetText(separators));};
uint64 GetUInt64(String separators = "")
#if defined(PLATFORM_WIN32)
{return _atoi64(GetText(separators));};
#endif
#ifdef PLATFORM_POSIX
{return atoll(GetText(separators));};
#endif
String Right() {return String::Right(GetLength()-pos);}
int GetLastSeparator() {return lastSeparator;}
void MoveRel(int val)
{
pos += val;
if (pos < 0)
pos = 0;
else if (pos >= GetCount())
pos = GetCount() - 1;
}
int GetPos() {return pos;};
bool SetPos(int i)
{
if (i < 0 || i >= GetCount())
return false;
else {
pos = i;
return true;
}
}
bool Eof()
{
return pos >= GetCount();
}
unsigned Count(String s)
{
int from = 0;
unsigned count = 0;
while ((from = ToString().Find(s, from)) >= 0)
count++;
return count;
}
private:
int pos;
int lastSeparator;
};
/////////////////////////////////////////////////////////////////////
// Special Folders
// Get the path to special folders
String GetDesktopFolder();
String GetProgramsFolder();
String GetAppDataFolder();
String GetMusicFolder();
String GetPicturesFolder();
String GetVideoFolder();
String GetPersonalFolder();
String GetTemplatesFolder();
String GetDownloadFolder();
String GetRootFolder();
String GetTempFolder();
String GetOsFolder();
String GetSystemFolder();
/////////////////////////////////////////////////////////////////////
// Processor Info
void GetSystemInfo(String &manufacturer, String &productName, String &version, int &numberOfProcessors);
void GetBiosInfo(String &biosVersion, Date &biosReleaseDate);
bool GetProcessorInfo(int number, String &vendor, String &identifier, String &architecture, int &speed);
// Gets the real CPU speed in MHz
int GetCpuSpeed();
/////////////////////////////////////////////////////////////////////
// Memory Info
bool GetMemoryInfo(int &memoryLoad, uint64 &totalPhys, uint64 &freePhys, uint64 &totalPageFile, uint64 &freePageFile, uint64 &totalVirtual, uint64 &freeVirtual);
/////////////////////////////////////////////////////////////////////
// Windows list
// They get arrays with handles to all the opened windows with additional info as
// pid: Handle to the process that manages the window
// name: Window name
// fileName: Window process program file name
// title: Window title (caption)
void GetWindowsList(Array<long> &wid, Array<long> &pid, Array<String> &name, Array<String> &fileName, Array<String> &title);
Array<long> GetWindowsList();
/////////////////////////////////////////////////////////////////////
// Process list
// They get arrays with handles to all the opened processes and process names
bool GetProcessList(Array<long> &pid, Array<String> &pNames);
Array<long> GetProcessList();
String GetProcessName(long pid);
// Gets the program file name of a process
String GetProcessFileName(long processID);
// Gets the process id of a program with a window with certain title
long GetProcessIdFromWindowCaption(String windowCaption, bool exactMatch = false);
long GetWindowIdFromCaption(String windowCaption, bool exactMatch = false);
long GetProcessIdFromWindowId(long wid);
long GetWindowIdFromProcessId(long pid);
// Ends a process by any means
bool ProcessTerminate(long pid, int timeout = 500);
// Gets the process priority as a number from 0 (minimum) to 10 (maximum)
int GetProcessPriority(long pid);
bool SetProcessPriority(long pid, int priority);
// True if a process with handle pid exists
bool ProcessExists(long pid);
/////////////////////////////////////////////////////////////////////
// Os Info
bool GetOsInfo(String &kernel, String &kerVersion, String &kerArchitecture, String &distro, String &distVersion, String &desktop, String &deskVersion);
String GetDesktopManagerNew();
/////////////////////////////////////////////////////////////////////
// Drives list
// Get the dirve path list
Array<String> GetDriveList();
// Get drives info
// Return false if drive is not mounted or it is not accesible
bool GetDriveSpace(String drive, uint64 &freeBytesUser, uint64 &totalBytesUser, uint64 &totalFreeBytes);
bool GetDriveInformation(String drive, String &type, String &volume, /*uint64 &serial, */int &maxName, String &fileSystem);
/////////////////////////////////////////////////////////////////////
// Others
// Gets process id
long GetProcessId();
// I tries to "logoff", "reboot" or "shutdown"
bool Shutdown(String action);
// It converts an amount of bytes to compact size
String BytesToKMGT(uint64 bytes);
// It gets compiler info
void GetCompilerInfo(String &name, int &version, String &date);
// It gets info about the battery status
bool GetBatteryStatus(bool &discharging, int &percentage, int &remainingMin);
// Get if there is battery
bool GetBatteryInfo(bool &present/*, int &designCapacity, int &lastFullCapacity, String &vendor, String &type, String &model, String &serial*/);
/////////////////////////////////////////////////////////////////////
// Key and mouse keys
bool Window_GetRect(long windowId, long &left, long &top, long &right, long &bottom);
bool Mouse_GetPos(long &x, long &y);
bool Mouse_SetPos(long x, long y, long windowId);
bool Window_SaveCapture(long windowId, String fileName);
#if defined(PLATFORM_WIN32)
void Mouse_LeftClick();
void Mouse_MiddleClick();
void Mouse_RightClick();
void Mouse_LeftDblClick();
void Mouse_MiddleDblClick();
void Mouse_RightDblClick();
void Keyb_SendKeys(String text, long finalDelay = 100, long delayBetweenKeys = 50);
void GetKeyLockStatus(bool &caps, bool &num, bool &scroll);
void SetKeyLockStatus(bool caps, bool num, bool scroll);
void Window_SetRect(long windowId, long left, long top, long right, long bottom);
#endif
#endif
// Known bugs
// GetWindowsList does not get the window title in Kde
// Shutdown in Linux only works with option "logoff", probably because of user permissions

View file

@ -1,15 +0,0 @@
uses
Core;
library(WIN32) psapi;
library(!WIN32) X11;
file
SysInfo.h,
SysInfo.cpp,
src.tpp;
mainconfig
"" = "";

View file

@ -1,431 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/goblix/Desktop
Programs: /usr/bin
Application Data: /home/goblix
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/goblix
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: yes, Percentage: 100%, Remaining: 75 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 28%
Total physical memory: 2110574592 bytes (2.0Gb)
Free physical memory: 1515511808 bytes (1.4Gb)
Total paging file: 321523712 bytes (306.6Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.3 #1 SMP Wed Mar 19 10:46:49 BRT 2008,
architecture: i686
Distro: slackware, version: 2.7.0
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Dec 29 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/changes'
Not mounted
Drive path:'/mnt/live/memory/images/a.Core-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Defapps-7-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Deflibs-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Dev4Use-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Extrapps-5-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.GStreamer-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kde-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kdelibs-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kernel-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Mozilla-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X11-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X3D-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Xwm-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Goblix-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Kde-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.User-7-i486-v2.7.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 22954090496 (21.4Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 22954090496 (21.4Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 45526114304 (42.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 45526114304 (42.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 61500878848 (57.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 61500878848 (57.3Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1685942272 (1.6Gb)
Total Bytes User: 2044051456 (1.9Gb), Total Free Bytes: 1685942272 (1.6Gb)
Other Info:
Process Id: 10641
Process name: 'SysInfo demo console'
Process file name: '/mnt/live/mnt/sdb1/SysInfo demo console'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: 'Desk-0 '
Window hwnd: 4194429, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194430, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194431, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194451, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194454, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194455, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194456, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194457, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194458, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194452, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194443, processId: 0, Name: _IB_0
File name:
Window caption: 'Iconbox '
Window hwnd: 4194453, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194489, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194491, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194492, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194493, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194494, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194495, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194496, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194497, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 4194490, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194487, processId: 0, Name: 0
File name:
Window caption: 'Pager-0 '
Window hwnd: 4194498, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194499, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194577, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194579, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194580, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194581, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194582, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194583, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194584, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194585, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194578, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194575, processId: 0, Name: 1
File name:
Window caption: 'Pager-1 '
Window hwnd: 4194586, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194587, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196406, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196412, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196413, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196414, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 4196415, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196416, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196407, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388611, processId: 10593, Name: nautilus
File name: /usr/bin/nautilus
Window caption: ''
Window hwnd: 4196408, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196410, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196411, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196502, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196509, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196510, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196511, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196512, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196513, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196503, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388671, processId: 10593, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'sdb1 - File Browser '
Window hwnd: 4196504, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196505, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196506, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4196507, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 4196508, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197543, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197550, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197551, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197552, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197553, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197554, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197544, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680071, processId: 10621, Name: konsole
File name: /usr/bin/konsole
Window caption: 'Shell - Konsole '
Window hwnd: 4197545, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197546, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197547, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197548, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4197549, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194346, processId: 0, Name:
File name:
Window caption: 'Desk-1 '
Window hwnd: 4194438, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194439, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194440, processId: 0, Name:
File name:
Window caption: '_DESKTOP_DRAG_CONTROL '
Window hwnd: 4194348, processId: 0, Name:
File name:
Window caption: 'Edge-R '
Press enter to continue...
Process list:
Id 10493: Priority: 5, Program: /bin/bash
Id 10517: Priority: 5, Program: /bin/bash
Id 10518: Priority: 5, Program: /usr/bin/xinit
Id 10549: Priority: 5, Program: /usr/bin/e16
Id 10555: Priority: 5, Program: /usr/bin/ivman
Id 10590: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10592: Priority: 5, Program: /usr/libexec/notification-daemon-xfce
Id 10593: Priority: 5, Program: /usr/bin/nautilus
Id 10595: Priority: 5, Program: /usr/libexec/gconfd-2
Id 10599: Priority: 5, Program: /usr/bin/dbus-launch
Id 10600: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10602: Priority: 5, Program: /usr/libexec/gnome-vfs-daemon
Id 10606: Priority: 5, Program: /usr/libexec/bonobo-activation-server
Id 10618: Priority: 5, Program: /usr/libexec/mapping-daemon
Id 10621: Priority: 5, Program: /usr/bin/konsole
Id 10624: Priority: 5, Program: /usr/bin/kdeinit
Id 10628: Priority: 5, Program: /usr/bin/kdeinit
Id 10630: Priority: 5, Program: /usr/bin/kdeinit
Id 10632: Priority: 5, Program: /usr/bin/kdeinit
Id 10634: Priority: 5, Program: /usr/libexec/gam_server
Id 10638: Priority: 5, Program: /bin/bash
Id 10641: Priority: 5, Program: /mnt/live/mnt/sdb1/SysInfo demo console
Press enter to end...

View file

@ -1,285 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/goblix/Desktop
Programs: /usr/bin
Application Data: /home/goblix
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/goblix
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: yes, Percentage: 100%, Remaining: 0 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 26%
Total physical memory: 2110574592 bytes (2.0Gb)
Free physical memory: 1553391616 bytes (1.4Gb)
Total paging file: 295735296 bytes (282.0Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.3 #1 SMP Wed Mar 19 10:46:49 BRT 2008,
architecture: i686
Distro: slackware, version: 2.7.0
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Dec 29 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/changes'
Not mounted
Drive path:'/mnt/live/memory/images/a.Core-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Defapps-7-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Deflibs-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Dev4Use-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Extrapps-5-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.GStreamer-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kde-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kdelibs-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kernel-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Mozilla-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X11-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X3D-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Xwm-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Goblix-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Kde-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.User-7-i486-v2.7.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 22954090496 (21.4Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 22954090496 (21.4Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 45526114304 (42.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 45526114304 (42.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 61500878848 (57.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 61500878848 (57.3Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1686278144 (1.6Gb)
Total Bytes User: 2044051456 (1.9Gb), Total Free Bytes: 1686278144 (1.6Gb)
Other Info:
Process Id: 10633
Process name: 'SysInfo demo console'
Process file name: '/mnt/sdb1/SysInfo demo console'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194466, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194436, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194406, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194376, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194346, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194312, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390294, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390301, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390295, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390296, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390332, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390333, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390334, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390335, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390298, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390299, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390300, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582919, processId: 10590, Name: konsole
File name: /usr/bin/konsole
Window caption: 'Shell - Konsole '
Window hwnd: 12582920, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582921, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 12582922, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582923, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582960, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582937, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389235, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389391, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389398, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389403, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389404, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8390347, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389438, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389439, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8389440, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 10454: Priority: 5, Program: /bin/bash
Id 10478: Priority: 5, Program: /bin/bash
Id 10479: Priority: 5, Program: /usr/bin/xinit
Id 10510: Priority: 5, Program: /usr/bin/fluxbox
Id 10557: Priority: 5, Program: /usr/bin/idesk
Id 10576: Priority: 5, Program: /usr/bin/ivman
Id 10587: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10589: Priority: 5, Program: /usr/libexec/notification-daemon-xfce
Id 10590: Priority: 5, Program: /usr/bin/konsole
Id 10593: Priority: 5, Program: /usr/bin/kdeinit
Id 10597: Priority: 5, Program: /usr/bin/kdeinit
Id 10599: Priority: 5, Program: /usr/bin/kdeinit
Id 10601: Priority: 5, Program: /usr/bin/kdeinit
Id 10603: Priority: 5, Program: /usr/libexec/gam_server
Id 10606: Priority: 5, Program: /bin/bash
Id 10629: Priority: 5, Program: /usr/bin/kdeinit
Id 10632: Priority: 5, Program: /usr/bin/artsd
Id 10633: Priority: 5, Program: /mnt/sdb1/SysInfo demo console
Press enter to end...

View file

@ -1,276 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/goblix/Desktop
Programs: /usr/bin
Application Data: /home/goblix
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/goblix
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: yes, Percentage: 100%, Remaining: 113 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 31%
Total physical memory: 2110574592 bytes (2.0Gb)
Free physical memory: 1452556288 bytes (1.4Gb)
Total paging file: 346923008 bytes (330.9Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.3 #1 SMP Wed Mar 19 10:46:49 BRT 2008,
architecture: i686
Distro: slackware, version: 2.7.0
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Dec 29 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/changes'
Not mounted
Drive path:'/mnt/live/memory/images/a.Core-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Defapps-7-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Deflibs-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Dev4Use-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Extrapps-5-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.GStreamer-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kde-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kdelibs-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kernel-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Mozilla-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X11-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X3D-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Xwm-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Goblix-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Kde-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.User-7-i486-v2.7.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 22954090496 (21.4Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 22954090496 (21.4Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 45526114304 (42.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 45526114304 (42.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 61500878848 (57.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 61500878848 (57.3Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1686396928 (1.6Gb)
Total Bytes User: 2044051456 (1.9Gb), Total Free Bytes: 1686396928 (1.6Gb)
Other Info:
Process Id: 10679
Process name: 'SysInfo demo console'
Process file name: '/mnt/live/mnt/sdb1/SysInfo demo console'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680105, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680106, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777227, processId: 10599, Name: kdesktop
File name: /usr/bin/kdeinit
Window caption: 'KDE Desktop '
Window hwnd: 14684521, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684535, processId: 10597, Name: kwin
File name: /usr/bin/kdeinit
Window caption: 'kwin '
Window hwnd: 14684536, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684537, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684538, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684539, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684540, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14684522, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194368, processId: 10648, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'sdb1 - File Browser '
Window hwnd: 14680127, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680139, processId: 10597, Name: kwin
File name: /usr/bin/kdeinit
Window caption: 'kwin '
Window hwnd: 14680140, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680141, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680142, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680143, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680144, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680128, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 29360135, processId: 10645, Name: konsole
File name: /usr/bin/kdeinit
Window caption: 'Shell - Konsole '
Window hwnd: 14680091, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680092, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874378, processId: 10602, Name: kicker
File name: /usr/bin/kdeinit
Window caption: 'kicker '
Window hwnd: 14680088, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 10491: Priority: 5, Program: /bin/bash
Id 10515: Priority: 5, Program: /bin/bash
Id 10516: Priority: 5, Program: /usr/bin/xinit
Id 10547: Priority: 5, Program: /bin/bash
Id 10548: Priority: 5, Program: /bin/bash
Id 10580: Priority: 5, Program: /usr/bin/kdeinit
Id 10583: Priority: 5, Program: /usr/bin/kdeinit
Id 10585: Priority: 5, Program: /usr/bin/kdeinit
Id 10587: Priority: 5, Program: /usr/bin/kdeinit
Id 10589: Priority: 5, Program: /usr/libexec/gam_server
Id 10594: Priority: 5, Program: /usr/bin/kwrapper
Id 10596: Priority: 5, Program: /usr/bin/kdeinit
Id 10597: Priority: 5, Program: /usr/bin/kdeinit
Id 10599: Priority: 5, Program: /usr/bin/kdeinit
Id 10602: Priority: 5, Program: /usr/bin/kdeinit
Id 10603: Priority: 5, Program: /usr/bin/kdeinit
Id 10605: Priority: 5, Program: /usr/bin/kdeinit
Id 10612: Priority: 5, Program: /usr/bin/artsd
Id 10614: Priority: 5, Program: /usr/bin/kdeinit
Id 10617: Priority: 5, Program: /usr/bin/kdeinit
Id 10632: Priority: 5, Program: /usr/bin/kdeinit
Id 10636: Priority: 5, Program: /usr/bin/kdeinit
Id 10644: Priority: 5, Program: /usr/bin/kdeinit
Id 10645: Priority: 5, Program: /usr/bin/kdeinit
Id 10646: Priority: 5, Program: /bin/bash
Id 10648: Priority: 5, Program: /usr/bin/nautilus
Id 10650: Priority: 5, Program: /usr/libexec/gconfd-2
Id 10654: Priority: 5, Program: /usr/bin/dbus-launch
Id 10655: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10657: Priority: 5, Program: /usr/libexec/gnome-vfs-daemon
Id 10661: Priority: 5, Program: /usr/libexec/bonobo-activation-server
Id 10673: Priority: 5, Program: /usr/libexec/mapping-daemon
Id 10679: Priority: 5, Program: /mnt/live/mnt/sdb1/SysInfo demo console
Press enter to end...

View file

@ -1,449 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/goblix/Desktop
Programs: /usr/bin
Application Data: /home/goblix
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/goblix
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: yes, Percentage: 100%, Remaining: 129 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 27%
Total physical memory: 2110574592 bytes (2.0Gb)
Free physical memory: 1519685632 bytes (1.4Gb)
Total paging file: 299720704 bytes (285.8Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.3 #1 SMP Wed Mar 19 10:46:49 BRT 2008,
architecture: i686
Distro: slackware, version: 2.7.0
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Dec 29 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/changes'
Not mounted
Drive path:'/mnt/live/memory/images/a.Core-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Defapps-7-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Deflibs-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Dev4Use-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Extrapps-5-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.GStreamer-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kde-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kdelibs-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kernel-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Mozilla-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X11-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X3D-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Xwm-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Goblix-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Kde-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.User-7-i486-v2.7.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 22954090496 (21.4Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 22954090496 (21.4Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 45526114304 (42.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 45526114304 (42.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 61500878848 (57.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 61500878848 (57.3Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1688125440 (1.6Gb)
Total Bytes User: 2044051456 (1.9Gb), Total Free Bytes: 1688125440 (1.6Gb)
Other Info:
Process Id: 10731
Process name: 'SysInfo demo console'
Process file name: '/mnt/live/mnt/sdb1/SysInfo demo console'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583378, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777219, processId: 10581, Name: xfdesktop
File name: /usr/bin/xfdesktop
Window caption: 'Desktop '
Window hwnd: 16777220, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583578, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583579, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583580, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583581, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583582, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583583, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583584, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583585, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583586, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583587, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583590, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583591, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583592, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680228, processId: 10578, Name: Thunar
File name: /usr/bin/Thunar
Window caption: 'sdb1 - File Manager '
Window hwnd: 14680229, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680247, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680263, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 14680265, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680283, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680284, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680285, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680286, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680287, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680237, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680246, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583739, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583740, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583741, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583742, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583743, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583744, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583745, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583746, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583747, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583748, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583751, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583752, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 12583753, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040222, processId: 10711, Name: Terminal
File name: /usr/bin/Terminal
Window caption: 'Terminal '
Window hwnd: 44040223, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040285, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040281, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040297, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583442, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874449, processId: 10583, Name: xfce4-panel
File name: /usr/bin/xfce4-panel
Window caption: 'Xfce Panel '
Window hwnd: 18874450, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874452, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874453, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874455, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874457, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874459, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874460, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874461, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874462, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583410, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874404, processId: 10583, Name: xfce4-panel
File name: /usr/bin/xfce4-panel
Window caption: 'Xfce Panel '
Window hwnd: 18874405, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 18874407, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874408, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874411, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874412, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874414, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874429, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874432, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874433, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874434, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874437, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874439, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874442, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874443, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874445, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874446, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583031, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583030, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583029, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12583028, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 12582994, processId: 10577, Name: xfwm4
File name: /usr/bin/xfwm4
Window caption: 'xfwm4 '
Window hwnd: 12582995, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 10499: Priority: 5, Program: /bin/bash
Id 10523: Priority: 5, Program: /bin/bash
Id 10525: Priority: 5, Program: /usr/bin/xinit
Id 10556: Priority: 5, Program: /bin/bash
Id 10570: Priority: 5, Program: /usr/bin/dbus-launch
Id 10571: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10573: Priority: 5, Program: /usr/bin/xfce4-session
Id 10576: Priority: 5, Program: /usr/bin/xfce-mcs-manager
Id 10577: Priority: 5, Program: /usr/bin/xfwm4
Id 10578: Priority: 5, Program: /usr/bin/Thunar
Id 10580: Priority: 5, Program: /usr/libexec/gam_server
Id 10581: Priority: 5, Program: /usr/bin/xfdesktop
Id 10583: Priority: 5, Program: /usr/bin/xfce4-panel
Id 10588: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-menu-plugin
Id 10591: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-verve-plugin
Id 10598: Priority: 5, Program: /usr/bin/xbindkeys
Id 10604: Priority: 5, Program: /usr/bin/ivman
Id 10606: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-genmon-plugin
Id 10607: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-clipman-plugin
Id 10608: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-systemload-plugin
Id 10609: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/orageclock
Id 10610: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-smartpm-plugin
Id 10611: Priority: 5, Program: /usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin
Id 10631: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10633: Priority: 5, Program: /usr/libexec/notification-daemon-xfce
Id 10711: Priority: 5, Program: /usr/bin/Terminal
Id 10713: Priority: 5, Program: /bin/bash
Id 10731: Priority: 5, Program: /mnt/live/mnt/sdb1/SysInfo demo console
Id 10798: Priority: 5, Program: /usr/bin/kdeinit
Press enter to end...

View file

@ -1,296 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/goblix/Desktop
Programs: /usr/bin
Application Data: /home/goblix
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/goblix
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.831 GHz
Battery info
Working with battery: yes, Percentage: 100%, Remaining: 82 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 24%
Total physical memory: 2110574592 bytes (2.0Gb)
Free physical memory: 1588899840 bytes (1.5Gb)
Total paging file: 280035328 bytes (267.1Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.3 #1 SMP Wed Mar 19 10:46:49 BRT 2008,
architecture: i686
Distro: slackware, version: 2.7.0
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Dec 29 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/changes'
Not mounted
Drive path:'/mnt/live/memory/images/a.Core-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Defapps-7-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Deflibs-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Dev4Use-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Extrapps-5-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.GStreamer-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kde-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kdelibs-1-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Kernel-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Mozilla-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X11-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.X3D-2-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/a.Xwm-4-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Goblix-6-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.Kde-3-i486-v2.7.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/z.User-7-i486-v2.7.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 22954090496 (21.4Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 22954090496 (21.4Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 45526114304 (42.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 45526114304 (42.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 61500878848 (57.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 61500878848 (57.3Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1686249472 (1.6Gb)
Total Bytes User: 2044051456 (1.9Gb), Total Free Bytes: 1686249472 (1.6Gb)
Other Info:
Process Id: 10543
Process name: 'SysInfo demo console'
Process file name: '/mnt/live/mnt/sdb1/SysInfo demo console'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194632, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195168, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195175, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582913, processId: 0, Name:
File name:
Window caption: 'wmapmload '
Window hwnd: 4195178, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388609, processId: 0, Name:
File name:
Window caption: 'wmclockmon '
Window hwnd: 4195181, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485761, processId: 0, Name: wmcpuload
File name:
Window caption: 'wmcpuload '
Window hwnd: 4194636, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195475, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291459, processId: 10522, Name: thunar
File name: /usr/bin/Thunar
Window caption: 'sdb1 - File Manager '
Window hwnd: 6291460, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291515, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291531, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291533, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291796, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291797, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291798, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291799, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291800, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 6291504, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291514, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195479, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195477, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195478, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195476, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195524, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971554, processId: 10534, Name: xterm
File name: /usr/bin/xterm
Window caption: 'xterm '
Window hwnd: 20971558, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195528, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195526, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195527, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4195525, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194713, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194714, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194716, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 10451: Priority: 5, Program: /bin/bash
Id 10475: Priority: 5, Program: /bin/bash
Id 10476: Priority: 5, Program: /usr/bin/xinit
Id 10507: Priority: 5, Program: /usr/bin/wmaker
Id 10508: Priority: 5, Program: /usr/bin/wmaker
Id 10511: Priority: 5, Program: /usr/bin/wmacpiload
Id 10512: Priority: 5, Program: /usr/bin/wmclockmon
Id 10513: Priority: 5, Program: /usr/bin/wmcpuload
Id 10521: Priority: 5, Program: /usr/bin/ivman
Id 10522: Priority: 5, Program: /usr/bin/Thunar
Id 10526: Priority: 5, Program: /usr/bin/dbus-launch
Id 10527: Priority: 5, Program: /usr/bin/dbus-daemon
Id 10529: Priority: 5, Program: /usr/libexec/gam_server
Id 10534: Priority: 5, Program: /usr/bin/xterm
Id 10536: Priority: 5, Program: /bin/bash
Id 10543: Priority: 5, Program: /mnt/live/mnt/sdb1/SysInfo demo console
Id 10585: Priority: 5, Program: /usr/bin/kdeinit
Id 10589: Priority: 5, Program: /usr/bin/kdeinit
Id 10591: Priority: 5, Program: /usr/bin/kdeinit
Id 10593: Priority: 5, Program: /usr/bin/kdeinit
Press enter to end...

View file

@ -1,30 +0,0 @@
_QT_SETTINGS_TIMESTAMP_:0.0(_QT_SETTINGS_TIMESTAMP_:0.0) = 0x0, 0x25, 0x75, 0x2e, 0x0, 0x3c, 0x6c, 0xc0
_NET_ACTIVE_WINDOW(WINDOW): window id # 0x1400022
_NET_CURRENT_DESKTOP(CARDINAL) = 0
_XROOTPMAP_ID(PIXMAP): pixmap id # 0xe00001
_NET_WORKAREA(CARDINAL) = 0, 0, 1216, 800, 0, 0, 1216, 800
_WINDOWMAKER_NOTICEBOARD(WINDOW): window id # 0x4000f3
_WINDOWMAKER_WM_PROTOCOLS(ATOM) = _WINDOWMAKER_MENU, _WINDOWMAKER_WM_FUNCTION, _WINDOWMAKER_NOTICEBOARD
WM_ICON_SIZE(WM_ICON_SIZE):
minimum icon size: 8 by 8
maximum icon size: 60 by 60
incremental size change: 1 by 1
_NET_DESKTOP_VIEWPORT(CARDINAL) = 0, 0, 0, 0
_NET_DESKTOP_GEOMETRY(CARDINAL) = 1280, 800
_NET_SHOWING_DESKTOP(CARDINAL) = 0
_NET_DESKTOP_NAMES(UTF8_STRING) = 0x4d, 0x61, 0x69, 0x6e, 0x0, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x20, 0x32, 0x0
_NET_NUMBER_OF_DESKTOPS(CARDINAL) = 2
_NET_CLIENT_LIST_STACKING(WINDOW): window id # 0x600003, 0x1400022
_NET_CLIENT_LIST(WINDOW): window id # 0x1400022, 0x600003
_NET_SUPPORTING_WM_CHECK(WINDOW): window id # 0x4000f3
_NET_SUPPORTED(ATOM) = _NET_CLIENT_LIST, _NET_CLIENT_LIST_STACKING, _NET_NUMBER_OF_DESKTOPS, _NET_DESKTOP_GEOMETRY, _NET_DESKTOP_VIEWPORT, _NET_CURRENT_DESKTOP, _NET_DESKTOP_NAMES, _NET_ACTIVE_WINDOW, _NET_WORKAREA, _NET_SUPPORTING_WM_CHECK, _NET_SHOWING_DESKTOP, _NET_WM_DESKTOP, _NET_WM_WINDOW_TYPE, _NET_WM_WINDOW_TYPE_DESKTOP, _NET_WM_WINDOW_TYPE_DOCK, _NET_WM_WINDOW_TYPE_TOOLBAR, _NET_WM_WINDOW_TYPE_MENU, _NET_WM_WINDOW_TYPE_UTILITY, _NET_WM_WINDOW_TYPE_SPLASH, _NET_WM_WINDOW_TYPE_DIALOG, _NET_WM_WINDOW_TYPE_NORMAL, _NET_WM_STATE, _NET_WM_STATE_STICKY, _NET_WM_STATE_SHADED, _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_SKIP_TASKBAR, _NET_WM_STATE_SKIP_PAGER, _NET_WM_STATE_HIDDEN, _NET_WM_STATE_FULLSCREEN, _NET_WM_STATE_ABOVE, _NET_WM_STATE_BELOW, _NET_WM_ALLOWED_ACTIONS, _NET_WM_ACTION_MOVE, _NET_WM_ACTION_RESIZE, _NET_WM_ACTION_MINIMIZE, _NET_WM_ACTION_SHADE, _NET_WM_ACTION_STICK, _NET_WM_ACTION_MAXIMIZE_HORZ, _NET_WM_ACTION_MAXIMIZE_VERT, _NET_WM_ACTION_FULLSCREEN, _NET_WM_ACTION_CHANGE_DESKTOP, _NET_WM_ACTION_CLOSE, _NET_WM_STRUT, _NET_WM_ICON_GEOMETRY, _NET_WM_ICON, _NET_WM_HANDLED_ICONS, _NET_WM_NAME, _NET_WM_ICON_NAME
CUT_BUFFER7(STRING) =
CUT_BUFFER6(STRING) =
CUT_BUFFER5(STRING) =
CUT_BUFFER4(STRING) =
CUT_BUFFER3(STRING) =
CUT_BUFFER2(STRING) =
CUT_BUFFER1(STRING) =
CUT_BUFFER0(STRING) =
_XKB_RULES_NAMES(STRING) = "xorg", "pc105", "us", "", ""
XFree86_VT(INTEGER) = 7

View file

@ -1,26 +0,0 @@
_QT_SETTINGS_TIMESTAMP_:0.0(_QT_SETTINGS_TIMESTAMP_:0.0) = 0x0, 0x25, 0x75, 0x2e, 0x0, 0x3c, 0x6c, 0xc0
_NET_ACTIVE_WINDOW(WINDOW): window id # 0xe00007
_NET_CLIENT_LIST_STACKING(WINDOW): window id # 0x40008b, 0x4000b7, 0x40010f, 0x800003, 0x80003f, 0xe00007
_NET_CLIENT_LIST(WINDOW): window id # 0x40008b, 0x4000b7, 0x40010f, 0x800003, 0x80003f, 0xe00007
_NET_DESKTOP_VIEWPORT(CARDINAL) = 0, 0, 0, 0
_NET_CURRENT_DESKTOP(CARDINAL) = 0
_XROOTCOLOR_PIXEL(CARDINAL) = 0
_XROOTPMAP_ID(PIXMAP): pixmap id # 0x400089
_NET_WORKAREA(CARDINAL) = 0, 0, 1280, 800, 0, 0, 1280, 800
_NET_DESKTOP_NAMES(UTF8_STRING) = 0x44, 0x65, 0x73, 0x6b, 0x2d, 0x30, 0x0, 0x44, 0x65, 0x73, 0x6b, 0x2d, 0x31, 0x0
_NET_VIRTUAL_ROOTS(WINDOW): window id # 0x65, 0x40002a
_NET_NUMBER_OF_DESKTOPS(CARDINAL) = 2
_NET_DESKTOP_GEOMETRY(CARDINAL) = 2560, 800
WM_NAME(STRING) = "Desk-0"
ENLIGHTENMENT_COMMS(STRING) = "WINID 400002"
ENLIGHTENMENT_VERSION(STRING) = "0.16.8.10"
_NET_WM_NAME(UTF8_STRING) = 0x44, 0x65, 0x73, 0x6b, 0x2d, 0x30
_NET_SUPPORTING_WM_CHECK(WINDOW): window id # 0x400001
_NET_SUPPORTED(ATOM) = _NET_SUPPORTED, _NET_SUPPORTING_WM_CHECK, _NET_NUMBER_OF_DESKTOPS, _NET_DESKTOP_GEOMETRY, _NET_DESKTOP_NAMES, _NET_CURRENT_DESKTOP, _NET_DESKTOP_VIEWPORT, _NET_WORKAREA, _NET_VIRTUAL_ROOTS, _NET_SHOWING_DESKTOP, _NET_ACTIVE_WINDOW, _NET_CLIENT_LIST, _NET_CLIENT_LIST_STACKING, _NET_CLOSE_WINDOW, _NET_MOVERESIZE_WINDOW, _NET_WM_MOVERESIZE, _NET_WM_NAME, _NET_WM_ICON_NAME, _NET_WM_DESKTOP, _NET_WM_WINDOW_TYPE, _NET_WM_WINDOW_TYPE_DESKTOP, _NET_WM_WINDOW_TYPE_DOCK, _NET_WM_WINDOW_TYPE_TOOLBAR, _NET_WM_WINDOW_TYPE_MENU, _NET_WM_WINDOW_TYPE_UTILITY, _NET_WM_WINDOW_TYPE_SPLASH, _NET_WM_WINDOW_TYPE_DIALOG, _NET_WM_WINDOW_TYPE_NORMAL, _NET_WM_STATE, _NET_WM_STATE_MODAL, _NET_WM_STATE_STICKY, _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_SHADED, _NET_WM_STATE_SKIP_TASKBAR, _NET_WM_STATE_SKIP_PAGER, _NET_WM_STATE_HIDDEN, _NET_WM_STATE_FULLSCREEN, _NET_WM_STATE_ABOVE, _NET_WM_STATE_BELOW, _NET_WM_STATE_DEMANDS_ATTENTION, _NET_WM_ALLOWED_ACTIONS, _NET_WM_ACTION_MOVE, _NET_WM_ACTION_RESIZE, _NET_WM_ACTION_MINIMIZE, _NET_WM_ACTION_SHADE, _NET_WM_ACTION_STICK, _NET_WM_ACTION_MAXIMIZE_HORZ, _NET_WM_ACTION_MAXIMIZE_VERT, _NET_WM_ACTION_FULLSCREEN, _NET_WM_ACTION_CHANGE_DESKTOP, _NET_WM_ACTION_CLOSE, _NET_WM_ACTION_ABOVE, _NET_WM_ACTION_BELOW, _NET_WM_STRUT_PARTIAL, _NET_WM_STRUT, _NET_FRAME_EXTENTS, _NET_WM_WINDOW_OPACITY
_MOTIF_WM_INFO(_MOTIF_WM_INFO) = 0x2, 0x65
WM_ICON_SIZE(WM_ICON_SIZE):
minimum icon size: 8 by 8
maximum icon size: 48 by 48
incremental size change: 1 by 1
_XKB_RULES_NAMES(STRING) = "xorg", "pc105", "us", "", ""
XFree86_VT(INTEGER) = 7

View file

@ -1,23 +0,0 @@
_NET_ACTIVE_WINDOW(WINDOW): window id # 0xc00007
_QT_SETTINGS_TIMESTAMP_:0.0(_QT_SETTINGS_TIMESTAMP_:0.0) = 0x0, 0x25, 0x75, 0x2e, 0x0, 0x3c, 0x6c, 0xc0
_WIN_WORKSPACE(CARDINAL) = 0
_WIN_WORKSPACE_COUNT(CARDINAL) = 4
_WIN_WORKSPACE_NAMES(STRING) = "one", "two", "three", "four"
_WIN_CLIENT_LIST(WINDOW): window id # 0xc00007
_WIN_PROTOCOLS(ATOM) = _WIN_SUPPORTING_WM_CHECK, _WIN_WORKSPACE_NAMES, _WIN_CLIENT_LIST, _WIN_STATE, _WIN_HINTS, _WIN_LAYER
_WIN_SUPPORTING_WM_CHECK(WINDOW): window id # 0x8003ca
_NET_WORKAREA(CARDINAL) = 0, 0, 1280, 782, 0, 0, 1280, 782, 0, 0, 1280, 782, 0, 0, 1280, 782
_NET_DESKTOP_GEOMETRY(CARDINAL) = 1280, 800
_NET_DESKTOP_VIEWPORT(CARDINAL) = 0, 0
_NET_CLIENT_LIST_STACKING(WINDOW): window id # 0xc00007
_NET_CLIENT_LIST(WINDOW): window id # 0xc00007
_NET_DESKTOP_NAMES(UTF8_STRING) = 0x6f, 0x6e, 0x65, 0x0, 0x74, 0x77, 0x6f, 0x0, 0x74, 0x68, 0x72, 0x65, 0x65, 0x0, 0x66, 0x6f, 0x75, 0x72
_NET_CURRENT_DESKTOP(CARDINAL) = 0
_NET_NUMBER_OF_DESKTOPS(CARDINAL) = 4
_NET_SUPPORTED(ATOM) = _NET_WM_STRUT, _NET_WM_STATE, _NET_WM_NAME, _NET_WM_ICON_NAME, _NET_WM_STATE_STICKY, _NET_WM_STATE_SHADED, _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT, _NET_WM_STATE_FULLSCREEN, _NET_WM_STATE_HIDDEN, _NET_WM_STATE_SKIP_TASKBAR, _NET_WM_STATE_MODAL, _NET_WM_STATE_BELOW, _NET_WM_STATE_ABOVE, _NET_WM_STATE_DEMANDS_ATTENTION, _NET_WM_WINDOW_TYPE, _NET_WM_WINDOW_TYPE_DOCK, _NET_WM_WINDOW_TYPE_DESKTOP, _NET_WM_WINDOW_TYPE_SPLASH, _NET_WM_WINDOW_TYPE_DIALOG, _NET_WM_WINDOW_TYPE_MENU, _NET_WM_WINDOW_TYPE_TOOLBAR, _NET_WM_WINDOW_TYPE_NORMAL, _NET_WM_ALLOWED_ACTIONS, _NET_WM_ACTION_MOVE, _NET_WM_ACTION_RESIZE, _NET_WM_ACTION_MINIMIZE, _NET_WM_ACTION_SHADE, _NET_WM_ACTION_STICK, _NET_WM_ACTION_MAXIMIZE_HORZ, _NET_WM_ACTION_MAXIMIZE_VERT, _NET_WM_ACTION_FULLSCREEN, _NET_WM_ACTION_CHANGE_DESKTOP, _NET_WM_ACTION_CLOSE, _NET_CLIENT_LIST, _NET_CLIENT_LIST_STACKING, _NET_NUMBER_OF_DESKTOPS, _NET_CURRENT_DESKTOP, _NET_ACTIVE_WINDOW, _NET_CLOSE_WINDOW, _NET_MOVERESIZE_WINDOW, _NET_WORKAREA, _NET_RESTACK_WINDOW, _NET_REQUEST_FRAME_EXTENTS, _NET_WM_MOVERESIZE, _NET_FRAME_EXTENTS, _NET_WM_DESKTOP, _NET_DESKTOP_NAMES, _NET_DESKTOP_VIEWPORT, _NET_DESKTOP_GEOMETRY, _NET_SUPPORTING_WM_CHECK
_NET_SUPPORTING_WM_CHECK(WINDOW): window id # 0x8003c9
_BLACKBOX_PID(CARDINAL) = 10549
_IDESK_START(STRING) = ":0.0"
_XROOTPMAP_ID(PIXMAP): pixmap id # 0x600001
_XKB_RULES_NAMES(STRING) = "xorg", "pc105", "us", "", ""
XFree86_VT(INTEGER) = 7

View file

@ -1,287 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/linux/Desktop
Programs: /usr/bin
Application Data: /home/linux
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/linux
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 33%
Total physical memory: 2115579904 bytes (2.0Gb)
Free physical memory: 1400676352 bytes (1.3Gb)
Total paging file: 387891200 bytes (369.9Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 0 bytes (0b)
Free virtual memory: 0 bytes (0b)
Os info:
Kernel: Linux, version: 2.6.25.5-1.1-default #1 SMP 2008-06-07 01:55:22 +0200,
architecture: i686
Distro: openSUSE, version: 11.0
Desktop: gnome, version: 2.22.1
Program compiled with gnuc version 40103. Compilation date: Nov 30 2008
Default exes info:
Default program for '.html' is 'MozillaFirefox.desktop'
Default program for '.doc' is ''
Default program for '.png' is 'eog.desktop'
Default program for '.pdf' is 'evince.desktop'
Default program for '.txt' is 'gedit.desktop'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/livecd'
Not mounted
Drive path:'/read-only'
Not mounted
Drive path:'/media/disk'
Type: 'Removable', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 475627520 (453.6Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 475627520 (453.6Mb)
Other Info:
Process Id: 4245
Process name: 'SysInfoDemo'
Process file name: '/media/disk/SysInfoDemo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 104, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680067, processId: 3979, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 16777230, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971551, processId: 4002, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Desktop '
Window hwnd: 20971552, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971697, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971702, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971703, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777261, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971769, processId: 4002, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'disk - File Browser '
Window hwnd: 20971770, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971900, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971901, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971906, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971907, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971908, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971909, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971910, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971911, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971912, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971913, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 20971914, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971915, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971916, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971922, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971923, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971925, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971933, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971934, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971955, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971921, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971962, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972430, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972431, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778368, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137375, processId: 4206, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'linux@linux:/media/disk '
Window hwnd: 46137376, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137442, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137422, processId: 0, Name:
File name:
Window caption: 'linux@linux:/media/disk '
Window hwnd: 46137429, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874398, processId: 3998, Name: gnome-panel
File name: /usr/bin/gnome-panel
Window caption: 'Bottom Expanded Edge Panel '
Press enter to continue with the next 20 windows...
Window hwnd: 18874399, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874410, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874416, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874418, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874421, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874427, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874436, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874443, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874831, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 3836: Priority: 5, Program: /usr/bin/gnome-session
Id 3906: Priority: 5, Program: /usr/lib/GConf/2/gconfd-2
Id 3928: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 3931: Priority: 5, Program: /bin/dbus-daemon
Id 3933: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 3938: Priority: 5, Program: /usr/bin/pulseaudio
Id 3965: Priority: 5, Program: /usr/lib/pulse/gconf-helper
Id 3986: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 3995: Priority: 5, Program: /usr/bin/metacity
Id 3998: Priority: 5, Program: /usr/bin/gnome-panel
Id 4000: Priority: 5, Program: /usr/lib/bonobo/bonobo-activation-server
Id 4002: Priority: 5, Program: /usr/bin/nautilus
Id 4004: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 4012: Priority: 5, Program: /usr/bin/resapplet
Id 4013: Priority: 5, Program: /usr/bin/gnome-cups-icon
Id 4031: Priority: 5, Program: /usr/bin/nm-applet
Id 4032: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 4033: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 4035: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 4044: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 4053: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 4061: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 4067: Priority: 5, Program: /usr/lib/gnome-main-menu/main-menu
Id 4070: Priority: 5, Program: /usr/bin/mono
Id 4075: Priority: 5, Program: /usr/lib/gnome-panel/mixer_applet2
Id 4130: Priority: 5, Program: /usr/lib/gnome-vfs-2.0/gnome-vfs-daemon
Id 4194: Priority: 5, Program: /usr/bin/application-browser
Id 4206: Priority: 5, Program: /usr/bin/gnome-terminal
Id 4213: Priority: 5, Program: /bin/bash
Id 4245: Priority: 5, Program: /media/disk/SysInfoDemo
Press enter to end...

View file

@ -1,183 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/linux/Desktop
Programs: /usr/bin
Application Data: /home/linux
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/linux
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 34%
Total physical memory: 2115579904 bytes (2.0Gb)
Free physical memory: 1381380096 bytes (1.3Gb)
Total paging file: 410140672 bytes (391.1Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 0 bytes (0b)
Free virtual memory: 0 bytes (0b)
Os info:
Kernel: Linux, version: 2.6.25.5-1.1-default #1 SMP 2008-06-07 01:55:22 +0200,
architecture: i686
Distro: openSUSE, version: 11.0
Desktop: kde, version: 4.0.4 (KDE 4.0.4 >= 20080505)
Program compiled with gnuc version 40103. Compilation date: Nov 30 2008
Default exes info:
Default program for '.html' is 'kfmclient_html.desktop'
Default program for '.doc' is ''
Default program for '.png' is 'okularApplication_kimgio.desktop'
Default program for '.pdf' is 'okularApplication_pdf.desktop'
Default program for '.txt' is 'writer.desktop'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/livecd'
Not mounted
Drive path:'/read-only'
Not mounted
Drive path:'/media/disk'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 475635712 (453.6Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 475635712 (453.6Mb)
Other Info:
Process Id: 4621
Process name: 'SysInfoDemo'
Process file name: '/media/disk/SysInfoDemo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 104, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068724, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068725, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457282, processId: 4034, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: 'Qt-subapplication '
Window hwnd: 23068957, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068965, processId: 4008, Name: kwin
File name: /usr/bin/kwin
Window caption: 'kwin '
Window hwnd: 23068958, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388609, processId: 4546, Name: dolphin
File name: /usr/bin/dolphin
Window caption: 'disk - Dolphin '
Window hwnd: 23069072, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23069080, processId: 4008, Name: kwin
File name: /usr/bin/kwin
Window caption: 'kwin '
Window hwnd: 23069073, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554433, processId: 4565, Name: konsole
File name: /usr/bin/konsole
Window caption: 'disk : SysInfoDemo '
Window hwnd: 23068715, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068716, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457305, processId: 4034, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: ''
Window hwnd: 23068714, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 29363248, processId: 0, Name: Qt-subapplication
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 3796: Priority: 5, Program: /bin/bash
Id 3929: Priority: 5, Program: /usr/bin/dbus-launch
Id 3930: Priority: 5, Program: /bin/dbus-daemon
Id 3939: Priority: 5, Program: /usr/bin/kdeinit4
Id 3940: Priority: 5, Program: /usr/lib/kde4/libexec/klauncher
Id 3942: Priority: 5, Program: /usr/bin/kded4
Id 3989: Priority: 5, Program: /usr/bin/kwrapper4
Id 3991: Priority: 5, Program: /usr/bin/ksmserver
Id 4008: Priority: 5, Program: /usr/bin/kwin
Id 4026: Priority: 5, Program: /usr/bin/krunner
Id 4027: Priority: 5, Program: /usr/bin/knotify4
Id 4034: Priority: 5, Program: /usr/bin/plasma
Id 4154: Priority: 5, Program: /usr/bin/kdeinit4
Id 4160: Priority: 5, Program: /usr/bin/kdeinit4
Id 4172: Priority: 5, Program: /usr/bin/kaccess
Id 4180: Priority: 5, Program: /usr/bin/klipper
Id 4186: Priority: 5, Program: /usr/bin/kmix
Id 4187: Priority: 5, Program: /usr/bin/policykit-kde
Id 4194: Priority: 5, Program: /opt/kde3/bin/kdeinit
Id 4202: Priority: 5, Program: /opt/kde3/bin/kdeinit
Id 4272: Priority: 5, Program: /opt/kde3/bin/kdeinit
Id 4307: Priority: 5, Program: /opt/kde3/bin/knetworkmanager
Id 4310: Priority: 5, Program: /opt/kde3/bin/kdeinit
Id 4315: Priority: 5, Program: /opt/kde3/bin/kpowersave
Id 4546: Priority: 5, Program: /usr/bin/dolphin
Id 4551: Priority: 5, Program: /usr/bin/kdeinit4
Id 4565: Priority: 5, Program: /usr/bin/konsole
Id 4566: Priority: 5, Program: /bin/bash
Id 4621: Priority: 5, Program: /media/disk/SysInfoDemo
Press enter to end...

View file

@ -1,294 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/fedora/Desktop
Programs: /usr/bin
Application Data: /home/fedora
Music: /home/fedora/Music
Pictures: /home/fedora/Pictures
Video: /home/fedora/Videos
Personal: /home/fedora/Documents
Templates: /home/fedora/Templates
Download: /home/fedora/Download
Temp: /home/fedora
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 61%
Total physical memory: 2115461120 bytes (2.0Gb)
Free physical memory: 811675648 bytes (774.1Mb)
Total paging file: 875311104 bytes (834.8Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008,
architecture: i686
Distro: fedora, version:
Desktop: gnome, version: 2.22.1
Program compiled with gnuc version 40103. Compilation date: Nov 19 2008
Default exes info:
Default program for 'html' is 'redhat-web.desktop'
Default program for 'doc' is ''
Default program for 'png' is 'gnome-eog.desktop'
Default program for 'pdf' is 'evince.desktop'
Default program for 'txt' is 'gnome-gedit.desktop'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'Fedora-9-Live-i6',
MaxName: 255, File System: ext3
Free Bytes User: 55296 (54.0Kb)
Total Bytes User: 2268188672 (2.1Gb), Total Free Bytes: 55296 (54.0Kb)
Drive path:'/mnt/live'
Type: 'Optical', Volume: 'Fedora-9-Live-i686',
MaxName: 255, File System: iso9660
Free Bytes User: 0 (0b)
Total Bytes User: 724121600 (690.6Mb), Total Free Bytes: 0 (0b)
Drive path:'/media/disk'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1944518656 (1.8Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1944518656 (1.8Gb)
Other Info:
Process Id: 3872
Process name: 'Demo_32Ubuntu'
Process file name: '/media/disk/Demo_32Ubuntu'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 122, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874371, processId: 3540, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 20971534, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165855, processId: 3557, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Desktop '
Window hwnd: 25165856, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165931, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165935, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165936, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972053, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166447, processId: 3557, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'disk '
Window hwnd: 25166448, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166505, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166506, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166527, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166543, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166606, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166538, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20978606, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25168107, processId: 3557, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Computer '
Window hwnd: 25168108, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25168165, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 25168166, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25168187, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25168198, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25168193, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971613, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 56623136, processId: 3752, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'fedora@localhost:/media/disk '
Window hwnd: 56623137, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 56623228, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 56623196, processId: 0, Name:
File name:
Window caption: 'fedora@localhost:/media/disk '
Window hwnd: 56623206, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068716, processId: 3548, Name: gnome-panel
File name: /usr/bin/gnome-panel
Window caption: 'Bottom Panel '
Window hwnd: 23068717, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068719, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068760, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068762, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068764, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068766, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068675, processId: 3548, Name: gnome-panel
File name: /usr/bin/gnome-panel
Window caption: 'Top Panel '
Window hwnd: 23068676, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068714, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 23068730, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068750, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068819, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068841, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068845, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068843, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068847, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 3273: Priority: 5, Program: /usr/bin/gnome-session
Id 3282: Priority: 5, Program: /usr/bin/dbus-launch
Id 3283: Priority: 5, Program: /bin/dbus-daemon
Id 3325: Priority: 5, Program: /usr/libexec/gconfd-2
Id 3329: Priority: 5, Program: /usr/libexec/im-settings-daemon
Id 3331: Priority: 5, Program: /usr/libexec/im-info-daemon
Id 3333: Priority: 5, Program: /usr/libexec/gam_server
Id 3485: Priority: 5, Program: /usr/libexec/gconf-im-settings-daemon
Id 3512: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 3515: Priority: 5, Program: /usr/libexec/gnome-settings-daemon
Id 3522: Priority: 5, Program: /usr/libexec/pulse/gconf-helper
Id 3529: Priority: 5, Program: /usr/libexec/gvfsd
Id 3534: Priority: 5, Program: /usr/libexec/gvfs-fuse-daemon
Id 3541: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 3543: Priority: 5, Program: /usr/bin/metacity
Id 3548: Priority: 5, Program: /usr/bin/gnome-panel
Id 3557: Priority: 5, Program: /usr/bin/nautilus
Id 3563: Priority: 5, Program: /usr/libexec/bonobo-activation-server
Id 3567: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 3578: Priority: 5, Program: /usr/bin/kerneloops-applet
Id 3582: Priority: 5, Program: /usr/bin/nm-applet
Id 3587: Priority: 5, Program: /usr/bin/python
Id 3589: Priority: 5, Program: /usr/bin/pam-panel-icon
Id 3590: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 3619: Priority: 5, Program: /usr/bin/python
Id 3626: Priority: 5, Program: /usr/libexec/gvfsd-trash
Id 3634: Priority: 5, Program: /usr/libexec/gvfsd-burn
Id 3680: Priority: 5, Program: /usr/libexec/wnck-applet
Id 3684: Priority: 5, Program: /usr/libexec/trashapplet
Id 3695: Priority: 5, Program: /usr/libexec/mixer_applet2
Id 3698: Priority: 5, Program: /usr/libexec/clock-applet
Id 3703: Priority: 5, Program: /usr/libexec/gdm-user-switch-applet
Id 3705: Priority: 5, Program: /usr/libexec/notification-area-applet
Id 3752: Priority: 5, Program: /usr/bin/gnome-terminal
Id 3756: Priority: 5, Program: /bin/bash
Id 3872: Priority: 5, Program: /media/disk/Demo_32Ubuntu
Id 4111: Priority: 5, Program: /usr/libexec/gvfsd-computer
Press enter to end...

File diff suppressed because it is too large Load diff

View file

@ -1,395 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/ubuntu/Desktop
Programs: /usr/bin
Application Data: /home/ubuntu
Music: /home/ubuntu/Música
Pictures: /home/ubuntu/Imágenes
Video: /home/ubuntu/Vídeos
Personal: /home/ubuntu/Documentos
Templates: /home/ubuntu/Plantillas
Download: /home/ubuntu/Desktop
Temp: /home/ubuntu
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 0%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 77%
Total physical memory: 2113114112 bytes (2.0Gb)
Free physical memory: 484175872 bytes (461.7Mb)
Total paging file: 969584640 bytes (924.7Mb)
Free paging file: 9273344 bytes (8.8Mb)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4711993344 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.27-7-generic #1 SMP Fri Oct 24 06:42:44 UTC 2008,
architecture: i686
Distro: ubuntu, version: 8.10
Desktop: kde, version: 4.1.2 (KDE 4.1.2)
Program compiled with gnuc version 40103. Compilation date: Nov 18 2008
Default exes info:
Default program for 'html' is ''
Default program for 'doc' is 'ooo-writer.desktop'
Default program for 'xls' is 'ooo-calc.desktop'
Default program for 'pdf' is 'ooo-writer.desktop'
Default program for 'txt' is 'ooo-writer.desktop'
Default program for 'xyz' is 'ooo-writer.desktop'
Press enter to continue...
Drives list:
Drive path:'/cdrom'
Type: 'Hard', Volume: 'Kubuntu 8.10 i386',
MaxName: 255, File System: iso9660
Free Bytes User: 0 (0b)
Total Bytes User: 3895754752 (3.6Gb), Total Free Bytes: 0 (0b)
Drive path:'/rofs'
Type: 'Hard', Volume: 'tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
/dev/sdb1 on /media/disk type vfat (rw,nosuid,nodev,uhelper=hal,uid=999,codepage=437,iocharset=utf8) [',
MaxName: 256, File System: squashfs
Free Bytes User: 102400 (100.0Kb)
Total Bytes User: 1570766848 (1.5Gb), Total Free Bytes: 102400 (100.0Kb)
Drive path:'/media/disk'
Type: 'Hard', Volume: '/dev/sda3 on /media/Linux type ext3 (rw,nosuid,nodev,uhelper=hal) [Linux',
MaxName: 260, File System: vfat
Free Bytes User: 1945272320 (1.8Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1945272320 (1.8Gb)
Drive path:'/media/Linux'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 46841380864 (43.6Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 46841380864 (43.6Gb)
Drive path:'/media/Compartido'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 71806185472 (66.9Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 71806185472 (66.9Gb)
Other Info:
Process Id: 16418
Process name: 'Demo_32Ubuntu'
Process file name: '/media/disk/Demo_32Ubuntu'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Window was closed before!
Press enter to continue...
Windows list:
Window hwnd: 122, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874431, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18876330, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18882269, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18897510, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18898514, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18876648, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874419, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874401, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874402, processId: 8036, Name: kwin
File name: /usr/bin/kwin
Window caption: 'kwin '
Window hwnd: 4194305, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777218, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874369, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874373, processId: 8036, Name: kwin
File name: /usr/bin/kwin
Window caption: 'kwin '
Window hwnd: 18874375, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874396, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874415, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068674, processId: 8146, Name: krunner
File name: /usr/bin/krunner
Window caption: 'Ejecutar orden '
Window hwnd: 23068676, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165838, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165861, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 25165889, processId: 8234, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: 'Qt-subapplication '
Window hwnd: 18874428, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165901, processId: 8234, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: 'Qt-subapplication '
Window hwnd: 8388609, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485761, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068720, processId: 8146, Name: Qt-subapplication
File name: /usr/bin/krunner
Window caption: 'Qt-subapplication '
Window hwnd: 10485764, processId: 7998, Name: kded4
File name: /usr/bin/kded4
Window caption: 'KWrited - Escuchando en el dispositivo /dev/pts/0 '
Window hwnd: 10485766, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554435, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457284, processId: 8275, Name: klipper
File name: /usr/bin/klipper
Window caption: 'klipper '
Window hwnd: 31457286, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457307, processId: 8275, Name: klipper
File name: /usr/bin/klipper
Window caption: ''
Window hwnd: 35651585, processId: 8297, Name: kded
File name: /usr/bin/kdeinit
Window caption: 'kded '
Window hwnd: 35651586, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39845889, processId: 8266, Name: printer-applet
File name: /usr/bin/python2.5
Window caption: 'Estado de impresión del documento '
Window hwnd: 39845891, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554459, processId: 8277, Name: kmix
File name: /usr/bin/kmix
Window caption: 'Configurar - KMix '
Window hwnd: 37748737, processId: 8303, Name: guidance-power-manager
File name: /usr/bin/python2.5
Window caption: 'Guidance Power Manager '
Window hwnd: 37748739, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39845916, processId: 8266, Name: printer-applet
File name: /usr/bin/python2.5
Window caption: 'Estado de la impresora '
Press enter to continue with the next 20 windows...
Window hwnd: 37748792, processId: 8303, Name: guidance-power-manager
File name: /usr/bin/python2.5
Window caption: 'Acerca de Guidance Power Manager '
Window hwnd: 46137345, processId: 8282, Name: knetworkmanager
File name: /usr/bin/knetworkmanager
Window caption: 'knetworkmanager '
Window hwnd: 46137346, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137354, processId: 8282, Name: knetworkmanager
File name: /usr/bin/knetworkmanager
Window caption: 'knetworkmanager '
Window hwnd: 35651592, processId: 8297, Name: kded
File name: /usr/bin/kdeinit
Window caption: 'kded '
Window hwnd: 35651594, processId: 8297, Name: kded
File name: /usr/bin/kdeinit
Window caption: 'kded '
Window hwnd: 35651596, processId: 8297, Name: kded
File name: /usr/bin/kdeinit
Window caption: 'kded '
Window hwnd: 46137356, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137363, processId: 8282, Name: knetworkmanager
File name: /usr/bin/knetworkmanager
Window caption: 'knetworkmanager '
Window hwnd: 46137407, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137408, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 52428801, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554485, processId: 8277, Name: kmix
File name: /usr/bin/kmix
Window caption: ''
Window hwnd: 33554433, processId: 8277, Name: kmix
File name: /usr/bin/kmix
Window caption: 'HDA Intel '
Window hwnd: 60817409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 65011713, processId: 8694, Name: knotify
File name: /usr/bin/kdeinit
Window caption: 'knotify '
Window hwnd: 65011714, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457352, processId: 8275, Name: klipper
File name: /usr/bin/klipper
Window caption: 'klipper '
Window hwnd: 31457368, processId: 8275, Name: klipper
File name: /usr/bin/klipper
Window caption: 'klipper '
Window hwnd: 48234499, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 48235112, processId: 8812, Name: dolphin
File name: /usr/bin/dolphin
Window caption: 'dolphin '
Window hwnd: 48235125, processId: 8812, Name: dolphin
File name: /usr/bin/dolphin
Window caption: 'dolphin '
Window hwnd: 62914564, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 29360134, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 37748855, processId: 8303, Name: guidance-power-manager
File name: /usr/bin/python2.5
Window caption: 'guidance-power-manager '
Window hwnd: 48260691, processId: 8812, Name: dolphin
File name: /usr/bin/dolphin
Window caption: ''
Window hwnd: 62915016, processId: 11108, Name: Qt-subapplication
File name: /usr/bin/konsole
Window caption: 'Qt-subapplication '
Window hwnd: 62915031, processId: 11108, Name: Qt-subapplication
File name: /usr/bin/konsole
Window caption: 'Qt-subapplication '
Window hwnd: 25200200, processId: 8234, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: ''
Window hwnd: 25199707, processId: 8234, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: 'Preferencias del escritorio - Área de trabajo de Plasma '
Window hwnd: 25168565, processId: 8234, Name: Qt-subapplication
File name: /usr/bin/plasma
Window caption: ''
Window hwnd: 73400321, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 69206019, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 6616: Priority: 5, Program: /bin/bash
Id 6618: Priority: 5, Program: /bin/bash
Id 6624: Priority: 5, Program: /bin/bash
Id 6625: Priority: 5, Program: /bin/bash
Id 6626: Priority: 5, Program: /bin/bash
Id 7708: Priority: 5, Program: /bin/bash
Id 7816: Priority: 5, Program: /usr/bin/ck-launch-session
Id 7868: Priority: 5, Program: /bin/dash
Id 7895: Priority: 5, Program: /bin/dbus-daemon
Id 7896: Priority: 5, Program: /usr/bin/dbus-launch
Id 7991: Priority: 5, Program: /usr/bin/kdeinit4
Id 7992: Priority: 5, Program: /usr/lib/kde4/libexec/klauncher
Id 7998: Priority: 5, Program: /usr/bin/kded4
Id 8029: Priority: 5, Program: /usr/bin/kwrapper4
Id 8030: Priority: 5, Program: /usr/bin/ksmserver
Id 8036: Priority: 5, Program: /usr/bin/kwin
Id 8141: Priority: 5, Program: /usr/bin/knotify4
Id 8146: Priority: 5, Program: /usr/bin/krunner
Id 8234: Priority: 5, Program: /usr/bin/plasma
Id 8235: Priority: 5, Program: /usr/bin/nepomukserver
Id 8237: Priority: 5, Program: /usr/bin/nepomukservicestub
Id 8242: Priority: 5, Program: /usr/bin/nepomukservicestub
Id 8243: Priority: 5, Program: /usr/bin/nepomukservicestub
Id 8244: Priority: 5, Program: /usr/bin/nepomukservicestub
Id 8253: Priority: 5, Program: /usr/bin/kdeinit4
Id 8262: Priority: 5, Program: /usr/bin/kaccess
Id 8266: Priority: 5, Program: /usr/bin/python2.5
Id 8268: Priority: 1, Program: /usr/bin/python2.5
Id 8273: Priority: 5, Program: /usr/bin/python2.5
Id 8275: Priority: 5, Program: /usr/bin/klipper
Id 8277: Priority: 5, Program: /usr/bin/kmix
Id 8282: Priority: 5, Program: /usr/bin/knetworkmanager
Id 8285: Priority: 5, Program: /usr/bin/kdeinit
Id 8288: Priority: 5, Program: /usr/bin/kdeinit
Id 8291: Priority: 5, Program: /usr/bin/kdeinit
Id 8297: Priority: 5, Program: /usr/bin/kdeinit
Id 8303: Priority: 5, Program: /usr/bin/python2.5
Id 8694: Priority: 5, Program: /usr/bin/kdeinit
Id 8697: Priority: 5, Program: /usr/bin/artsd
Id 8812: Priority: 5, Program: /usr/bin/dolphin
Id 11108: Priority: 5, Program: /usr/bin/konsole
Id 11290: Priority: 5, Program: /bin/bash
Id 15595: Priority: 5, Program: /usr/bin/krandrtray
Id 16418: Priority: 5, Program: /media/disk/Demo_32Ubuntu
Id 16499: Priority: 4, Program: /usr/bin/kdeinit4
Id 16503: Priority: 5, Program: /usr/bin/kdeinit4
Id 16627: Priority: 5, Program: /usr/bin/kate
Press enter to end...

View file

@ -1,267 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/guest/Escritorio
Programs: /usr/bin
Application Data: /home/guest
Music: /home/guest/Música
Pictures: /home/guest/Imágenes
Video: /home/guest/Videos
Personal: /home/guest/Documentos
Templates: /home/guest/Plantillas
Download: /home/guest/Descargas
Temp: /home/guest
Os: /bin
System:
System info:
System manufacturer '', product name '',
version '', number of processors: 2
Real CPU Speed: 1.829 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version '',
release date ''
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 34%
Total physical memory: 2115330048 bytes (2.0Gb)
Free physical memory: 1392128000 bytes (1.3Gb)
Total paging file: 374448128 bytes (357.1Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 0 bytes (0b)
Free virtual memory: 0 bytes (0b)
Os info:
Kernel: Linux, version: 2.6.27-desktop586-0.rc8.2mnb #1 SMP Thu Oct 2 05:52:21 EDT 2008,
architecture: i686
Distro: mandrivalinux, version: 2009.0
Desktop: gnome, version: 2.24.0
Program compiled with gnuc version 40103. Compilation date: Nov 27 2008
Default exes info:
Default program for '.html' is 'firefox.desktop'
Default program for '.doc' is 'writer.desktop'
Default program for '.png' is 'eog.desktop'
Default program for '.pdf' is 'evince.desktop'
Default program for '.txt' is 'gedit.desktop'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/live/media'
Not mounted
Drive path:'/live/distrib'
Not mounted
Drive path:'/media/hd'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/media/hd2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 17129267200 (16.0Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 17129267200 (16.0Gb)
Drive path:'/media/hd3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 46640050176 (43.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 46640050176 (43.4Gb)
Drive path:'/media/hd4'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 62583574528 (58.3Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 62583574528 (58.3Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 426827776 (407.1Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426827776 (407.1Mb)
Other Info:
Process Id: 5207
Process name: 'SysInfoDemo'
Process file name: '/media/disk/SysInfoDemo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 102, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874382, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165859, processId: 4795, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'x-nautilus-desktop '
Window hwnd: 25165860, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165921, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165922, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874833, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166126, processId: 4795, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'disk '
Window hwnd: 25166127, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166180, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166192, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166203, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25166198, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18875924, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137350, processId: 5013, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'guest@localhost: /media/disk '
Window hwnd: 46137351, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137403, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 46137399, processId: 0, Name:
File name:
Window caption: 'guest@localhost: /media/disk '
Window hwnd: 46137410, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068675, processId: 4791, Name: gnome-panel
File name: /usr/bin/gnome-panel
Window caption: 'Panel expandido lateral superior '
Window hwnd: 23068676, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 23068714, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068797, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068947, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068977, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068981, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068985, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23069024, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23069060, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23069063, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068717, processId: 4791, Name: gnome-panel
File name: /usr/bin/gnome-panel
Window caption: 'Panel expandido lateral inferior '
Window hwnd: 23068718, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068720, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068734, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068754, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 23068773, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040195, processId: 4913, Name:
File name:
Window caption: 'gnome-screensaver '
Press enter to continue...
Process list:
Id 4584: Priority: 5, Program: /usr/bin/gnome-session
Id 4710: Priority: 5, Program: /usr/bin/dbus-daemon
Id 4711: Priority: 5, Program: /usr/bin/dbus-launch
Id 4723: Priority: 5, Program: /usr/lib/pulse/gconf-helper
Id 4725: Priority: 5, Program: /usr/lib/gconfd-2
Id 4755: Priority: 5, Program: /usr/bin/imwheel
Id 4761: Priority: 5, Program: /usr/bin/s2u
Id 4770: Priority: 5, Program: /usr/lib/gnome-session/helpers/gnome-keyring-daemon-wrapper
Id 4773: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 4775: Priority: 5, Program: /usr/bin/metacity
Id 4784: Priority: 5, Program: /usr/lib/gvfsd
Id 4791: Priority: 5, Program: /usr/bin/gnome-panel
Id 4795: Priority: 5, Program: /usr/bin/nautilus
Id 4797: Priority: 5, Program: /usr/lib/bonobo-activation-server
Id 4802: Priority: 5, Program: /usr/bin/pam-panel-icon
Id 4809: Priority: 5, Program: /usr/bin/perl5.10.0
Id 4810: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 4814: Priority: 5, Program: /usr/lib/evolution/2.24/evolution-alarm-notify
Id 4818: Priority: 5, Program: /usr/lib/gvfs-hal-volume-monitor
Id 4820: Priority: 5, Program: /usr/bin/perl5.10.0
Id 4824: Priority: 5, Program: /usr/bin/gnome-obex-server
Id 4837: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 4881: Priority: 5, Program: /usr/lib/gvfsd-trash
Id 4898: Priority: 5, Program: /usr/lib/gvfsd-burn
Id 4901: Priority: 5, Program: /usr/lib/mixer_applet2
Id 4922: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 5008: Priority: 5, Program: /usr/lib/notification-daemon
Id 5013: Priority: 5, Program: /usr/bin/gnome-terminal
Id 5025: Priority: 5, Program: /bin/bash
Id 5207: Priority: 5, Program: /media/disk/SysInfoDemo
Press enter to end...

View file

@ -1,37 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/guest/Escritorio
Programs: /usr/bin
Application Data: /home/guest
Music: /home/guest/Música
Pictures: /home/guest/Imágenes
Video: /home/guest/Videos
Personal: /home/guest/Documentos
Templates: /home/guest/Plantillas
Download: /home/guest/Descargas
Temp: /home/guest
Os: /bin
System:
System info:
System manufacturer '', product name '',
version '', number of processors: 2
Real CPU Speed: 1.829 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version '',
release date ''
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...

View file

@ -1,183 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/ubuntu/Desktop
Programs: /usr/bin
Application Data: /home/ubuntu
Music: /home/ubuntu/Música
Pictures: /home/ubuntu/Imágenes
Video: /home/ubuntu/Videos
Personal: /home/ubuntu/Documentos
Templates: /home/ubuntu/Plantillas
Download: /home/ubuntu/Desktop
Temp: /home/ubuntu
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 30%
Total physical memory: 2116001792 bytes (2.0Gb)
Free physical memory: 1478266880 bytes (1.4Gb)
Total paging file: 330854400 bytes (315.5Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24-19-generic #1 SMP Wed Jun 18 14:43:41 UTC 2008,
architecture: i686
Distro: ubuntu, version: 8.04
Desktop: enlightenment, version: 0.16.999.043
Program compiled with gnuc version 40103. Compilation date: Nov 30 2008
Default exes info:
Default program for '.html' is 'firefox.desktop'
Default program for '.doc' is 'abiword.desktop'
Default program for '.png' is 'mirage.desktop'
Default program for '.pdf' is 'evince.desktop'
Default program for '.txt' is 'gedit.desktop'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/cdrom'
Not mounted
Drive path:'/media/disk'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 475611136 (453.6Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 475611136 (453.6Mb)
Other Info:
Process Id: 9323
Process name: 'SysInfoDemo'
Process file name: '/media/disk/SysInfoDemo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 88, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291459, processId: 8939, Name: E
File name: /rofs/usr/bin/enlightenment
Window caption: 'Enlightenment Background '
Window hwnd: 6291463, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6293894, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6293895, processId: 0, Name: E
File name:
Window caption: 'Enlightenment Frame '
Window hwnd: 6293898, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6293899, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971523, processId: 9086, Name: thunar
File name: /rofs/usr/bin/Thunar
Window caption: 'disk - Administrador de Archivos '
Window hwnd: 6292733, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6292734, processId: 0, Name: E
File name:
Window caption: 'Enlightenment Frame '
Window hwnd: 6292737, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6292738, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554464, processId: 9223, Name: gnome-terminal
File name: /rofs/usr/bin/gnome-terminal
Window caption: 'ubuntu@ubuntu: /media/disk '
Window hwnd: 6291524, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291525, processId: 0, Name: E
File name:
Window caption: 'Enlightenment Frame '
Window hwnd: 6291528, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291529, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777219, processId: 9071, Name: panel
File name: /rofs/usr/bin/trayer
Window caption: 'panel '
Window hwnd: 6291500, processId: 8939, Name: E
File name: /rofs/usr/bin/enlightenment
Window caption: 'E Popup '
Press enter to continue...
Process list:
Id 7741: Priority: 5, Program: /rofs/bin/bash
Id 7742: Priority: 5, Program: /rofs/bin/bash
Id 7743: Priority: 5, Program: /rofs/bin/bash
Id 7744: Priority: 5, Program: /rofs/bin/bash
Id 7745: Priority: 5, Program: /rofs/bin/bash
Id 8881: Priority: 5, Program: /rofs/bin/bash
Id 8939: Priority: 5, Program: /rofs/usr/bin/enlightenment
Id 9025: Priority: 5, Program: /rofs/usr/lib/libgconf2-4/gconfd-2
Id 9031: Priority: 5, Program: /rofs/usr/bin/seahorse-agent
Id 9042: Priority: 5, Program: /rofs/usr/bin/dbus-launch
Id 9043: Priority: 5, Program: /rofs/usr/bin/dbus-daemon
Id 9070: Priority: 5, Program: /rofs/usr/bin/python2.5
Id 9071: Priority: 5, Program: /rofs/usr/bin/trayer
Id 9072: Priority: 5, Program: /rofs/usr/bin/nm-applet
Id 9084: Priority: 5, Program: /rofs/usr/lib/enlightenment/modules/battery/linux-gnu-i686/batget
Id 9086: Priority: 5, Program: /rofs/usr/bin/Thunar
Id 9090: Priority: 5, Program: /rofs/usr/lib/gamin/gam_server
Id 9092: Priority: 5, Program: /rofs/usr/bin/gnome-keyring-daemon
Id 9093: Priority: 5, Program: /rofs/usr/bin/update-notifier
Id 9107: Priority: 5, Program: /rofs/usr/bin/gnome-power-manager
Id 9118: Priority: 5, Program: /rofs/usr/bin/xfce-mcs-manager
Id 9223: Priority: 5, Program: /rofs/usr/bin/gnome-terminal
Id 9229: Priority: 5, Program: /rofs/usr/lib/bonobo-activation/bonobo-activation-server
Id 9244: Priority: 5, Program: /rofs/bin/bash
Id 9323: Priority: 5, Program: /media/disk/SysInfoDemo
Press enter to end...

View file

@ -1,307 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /root/Desktop
Programs: /usr/bin
Application Data: /root
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /root
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 20%
Total physical memory: 2110656512 bytes (2.0Gb)
Free physical memory: 1672400896 bytes (1.6Gb)
Total paging file: 199360512 bytes (190.1Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24.5 #1 SMP Wed Apr 23 11:54:07 GMT 2008,
architecture: i686
Distro: slackware, version:
Desktop: kde, version: 3.5.9
Program compiled with gnuc version 40103. Compilation date: Nov 30 2008
Default exes info:
Default program for '.html' is ''
Default program for '.doc' is ''
Default program for '.png' is ''
Default program for '.pdf' is ''
Default program for '.txt' is ''
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/mnt/live'
Not mounted
Drive path:'/mnt/live/usr'
Not mounted
Drive path:'/mnt/live/mnt/sdb1'
Not mounted
Drive path:'/mnt/live/memory'
Not mounted
Drive path:'/mnt/live/memory/images/001-core.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/002-xorg.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/003-desktop.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/004-kdeapps.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/005-koffice.lzm'
Not mounted
Drive path:'/mnt/live/memory/images/006-devel.lzm'
Not mounted
Drive path:'/boot'
Not mounted
Drive path:'/mnt/sda1'
Type: 'Hard', Volume: 'WinRE',
MaxName: 255, File System: fuseblk
Free Bytes User: 1331318784 (1.2Gb)
Total Bytes User: 1572859904 (1.5Gb), Total Free Bytes: 1331318784 (1.2Gb)
Drive path:'/mnt/sda2'
Type: 'Hard', Volume: 'Vista',
MaxName: 255, File System: fuseblk
Free Bytes User: 25236971520 (23.5Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 25236971520 (23.5Gb)
Drive path:'/mnt/sda3'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 46640308224 (43.4Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 46640308224 (43.4Gb)
Drive path:'/mnt/sda6'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 62749618176 (58.4Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 62749618176 (58.4Gb)
Drive path:'/mnt/sdb1'
Type: 'Hard', Volume: '/dev/sdc1 on /mnt/sdc1 type vfat (rw)
',
MaxName: 260, File System: vfat
Free Bytes User: 1832353792 (1.7Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1832353792 (1.7Gb)
Drive path:'/mnt/sdc1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 293724160 (280.1Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 293724160 (280.1Mb)
Other Info:
Process Id: 7127
Process name: 'SysInfoDemo'
Process file name: '/mnt/sdc1/SysInfoDemo'
Process priority is: 5
Now changed to high priority: Yes
Process priority is: 8
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 101, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680105, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680106, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777226, processId: 5539, Name: kdesktop
File name: /usr/bin/kdeinit
Window caption: 'KDE Desktop '
Window hwnd: 14681527, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681539, processId: 5537, Name: kwin
File name: /usr/bin/kdeinit
Window caption: 'kwin '
Window hwnd: 14681540, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681541, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681542, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681543, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681528, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 41943047, processId: 6397, Name: konsole
File name: /usr/bin/kdeinit
Window caption: 'Shell - Konsole '
Window hwnd: 14681322, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681334, processId: 5537, Name: kwin
File name: /usr/bin/kdeinit
Window caption: 'kwin '
Window hwnd: 14681335, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681336, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681337, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681338, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14681323, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 37748743, processId: 6324, Name: kwrite
File name: /usr/bin/kdeinit
Window caption: 'SysInfo.cpp - KWrite '
Window hwnd: 14680127, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 14680139, processId: 5537, Name: kwin
File name: /usr/bin/kdeinit
Window caption: 'kwin '
Window hwnd: 14680140, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680141, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680142, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680143, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680128, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457287, processId: 5686, Name: konsole
File name: /usr/bin/kdeinit
Window caption: 'Shell - Konsole '
Window hwnd: 14680091, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680092, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874378, processId: 5542, Name: kicker
File name: /usr/bin/kdeinit
Window caption: 'kicker '
Window hwnd: 14680088, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 1: Priority: 5, Program: /mnt/live/bin/init
Id 2125: Priority: 5, Program: /mnt/live/usr/bin/mount.posixovl
Id 3181: Priority: 6, Program: /sbin/udevd
Id 4856: Priority: 5, Program: /bin/ntfs-3g
Id 4859: Priority: 5, Program: /bin/ntfs-3g
Id 5015: Priority: 5, Program: /usr/sbin/syslogd
Id 5019: Priority: 5, Program: /usr/sbin/klogd
Id 5072: Priority: 5, Program: /usr/sbin/acpid
Id 5080: Priority: 5, Program: /usr/bin/dbus-daemon
Id 5086: Priority: 5, Program: /usr/sbin/hald
Id 5087: Priority: 5, Program: /usr/libexec/hald-runner
Id 5094: Priority: 5, Program: /usr/libexec/hald-addon-input
Id 5098: Priority: 5, Program: /usr/libexec/hald-addon-acpi
Id 5101: Priority: 5, Program: /usr/libexec/hald-addon-storage
Id 5110: Priority: 5, Program: /usr/libexec/hald-addon-storage
Id 5122: Priority: 5, Program: /usr/sbin/cupsd
Id 5127: Priority: 5, Program: /usr/sbin/crond
Id 5166: Priority: 5, Program: /usr/sbin/gpm
Id 5401: Priority: 5, Program: /sbin/agetty
Id 5403: Priority: 5, Program: /usr/bin/kdm
Id 5406: Priority: 5, Program: /usr/bin/Xorg
Id 5407: Priority: 5, Program: /usr/bin/kdm
Id 5438: Priority: 5, Program: /bin/bash
Id 5500: Priority: 5, Program: /usr/bin/lisa
Id 5510: Priority: 5, Program: /usr/bin/start_kdeinit
Id 5511: Priority: 5, Program: /usr/bin/kdeinit
Id 5514: Priority: 5, Program: /usr/bin/kdeinit
Id 5516: Priority: 5, Program: /usr/bin/kdeinit
Id 5519: Priority: 5, Program: /usr/bin/kdeinit
Id 5521: Priority: 5, Program: /usr/libexec/gam_server
Id 5534: Priority: 5, Program: /usr/bin/kwrapper
Id 5536: Priority: 5, Program: /usr/bin/kdeinit
Id 5537: Priority: 5, Program: /usr/bin/kdeinit
Id 5539: Priority: 5, Program: /usr/bin/kdeinit
Id 5542: Priority: 5, Program: /usr/bin/kdeinit
Id 5543: Priority: 5, Program: /usr/bin/kdeinit
Id 5545: Priority: 5, Program: /usr/bin/kdeinit
Id 5552: Priority: 5, Program: /usr/bin/artsd
Id 5555: Priority: 5, Program: /usr/bin/kdeinit
Id 5558: Priority: 5, Program: /usr/bin/kdeinit
Id 5560: Priority: 5, Program: /usr/bin/krandrtray
Id 5565: Priority: 5, Program: /usr/bin/kdeinit
Id 5686: Priority: 5, Program: /usr/bin/kdeinit
Id 5691: Priority: 5, Program: /bin/bash
Id 5810: Priority: 5, Program: /usr/libexec/hald-addon-storage
Id 5945: Priority: 5, Program: /usr/bin/kdeinit
Id 5949: Priority: 5, Program: /usr/bin/kdeinit
Id 5950: Priority: 5, Program: /usr/bin/kdeinit
Id 5952: Priority: 5, Program: /usr/bin/kdeinit
Id 5953: Priority: 5, Program: /usr/bin/kdeinit
Id 5956: Priority: 5, Program: /usr/bin/kdeinit
Id 6311: Priority: 4, Program: /usr/bin/kdeinit
Id 6324: Priority: 5, Program: /usr/bin/kdeinit
Id 6328: Priority: 5, Program: /usr/bin/kdeinit
Id 6329: Priority: 5, Program: /usr/bin/kdeinit
Id 6330: Priority: 5, Program: /usr/bin/kdeinit
Id 6397: Priority: 5, Program: /usr/bin/kdeinit
Id 6398: Priority: 5, Program: /bin/bash
Id 6806: Priority: 5, Program: /usr/bin/kdeinit
Id 6970: Priority: 4, Program: /usr/bin/kdeinit
Id 7046: Priority: 5, Program: /usr/bin/kdeinit
Id 7127: Priority: 8, Program: /mnt/sdc1/SysInfoDemo
Press enter to end...

View file

@ -1,454 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/aupa/Escritorio
Programs: /usr/bin
Application Data: /home/aupa
Music: /home/aupa/Escritorio
Pictures: /home/aupa/Escritorio
Video: /home/aupa/Escritorio
Personal: /home/aupa/Escritorio
Templates: /home/aupa/Escritorio
Download: /home/aupa/Escritorio
Temp: /home/aupa
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.829 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 55%
Total physical memory: 2116001792 bytes (2.0Gb)
Free physical memory: 935841792 bytes (892.5Mb)
Total paging file: 406704128 bytes (387.9Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24-21-generic #1 SMP Tue Oct 21 23:43:45 UTC 2008,
architecture: i686
Distro: ubuntu, version: 8.04
Desktop: gnome, version: 2.22.3
Program compiled with gnuc version 40103. Compilation date: Nov 18 2008
Default exes info:
Default program for 'html' is 'firefox.desktop'
Default program for 'doc' is 'ooo-writer.desktop'
Default program for 'png' is 'eog.desktop'
Default program for 'pdf' is 'evince.desktop'
Default program for 'txt' is 'gedit.desktop'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 46841184256 (43.6Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 46841184256 (43.6Gb)
Drive path:'/home'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 71851614208 (66.9Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 71851614208 (66.9Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1947697152 (1.8Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1947697152 (1.8Gb)
Other Info:
Process Id: 7572
Process name: 'demo'
Process file name: '/home/100Aplicaciones/exe/demo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 88, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874767, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194305, processId: 5967, Name: seahorse-agent
File name: /usr/bin/gnome-session
Window caption: 'seahorse-agent '
Window hwnd: 18874768, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291457, processId: 5967, Name: x-session-manager
File name: /usr/bin/gnome-session
Window caption: 'x-session-manager '
Window hwnd: 18874769, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388609, processId: 6032, Name: gnome-settings-daemon
File name: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Window caption: 'gnome-settings-daemon '
Window hwnd: 18874770, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388611, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874771, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388612, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874772, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582913, processId: 6055, Name: gnome-screensaver
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 12582915, processId: 6055, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 18874773, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680065, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874774, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777217, processId: 6064, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874775, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971521, processId: 6137, Name: bluetooth-applet
File name: /usr/bin/bluetooth-applet
Window caption: 'Miniaplicación para Bluetooth '
Window hwnd: 18874776, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 23068673, processId: 6141, Name: update-notifier
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874369, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874370, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874388, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874389, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874390, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874391, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874392, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874393, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874394, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874395, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874396, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777220, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874777, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554433, processId: 6154, Name: gnome-volume-manager
File name:
Window caption: 'gnome-volume-manager '
Window hwnd: 18874778, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165825, processId: 6147, Name: tracker-applet
File name: /usr/bin/tracker-applet
Window caption: 'Tracker '
Window hwnd: 18874779, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 37748737, processId: 6146, Name: evolution-alarm-notify
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 18874780, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 29360129, processId: 6149, Name: gnome-power-manager
File name:
Window caption: 'Gestión de energía '
Window hwnd: 18874781, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 35651585, processId: 6160, Name: nm-applet
File name: /usr/bin/nm-applet
Window caption: 'nm-applet '
Window hwnd: 18874782, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39845889, processId: 6162, Name: gdl_box
File name: /opt/google/desktop/bin/gdl_box
Window caption: 'gdl_box '
Window hwnd: 33554435, processId: 6179, Name:
File name: /usr/lib/gnome-volume-manager/gnome-volume-manager
Window caption: 'gnome-volume-manager '
Window hwnd: 23068675, processId: 6141, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874785, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040193, processId: 6159, Name: applet.py
File name: /usr/bin/python2.5
Window caption: 'applet.py '
Window hwnd: 18874787, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 48234497, processId: 6187, Name: gdesklets-daemon
File name:
Window caption: 'gdesklets-daemon '
Window hwnd: 16777389, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16777250, processId: 6064, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Escritorio '
Window hwnd: 18874877, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 62918231, processId: 0, Name: theide-svn
File name:
Window caption: 'SysInfo demo non-gui - - TheIDE - [/home/100Aplicaciones/SysInfo/SysInfo.cpp UTF-8] { MyApps } '
Window hwnd: 18874993, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457316, processId: 7570, Name: xterm
File name:
Window caption: 'bash '
Window hwnd: 14680067, processId: 6062, Name: gnome-panel
File name:
Window caption: 'Panel lateral expandido inferior '
Window hwnd: 39845893, processId: 6162, Name: gdl_box
File name: /opt/google/desktop/bin/gdl_box
Window caption: 'Cuadro de búsqueda rápida '
Window hwnd: 18874789, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 50331649, processId: 6233, Name: evolution-exchange-storage
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 18874790, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 52428801, processId: 6266, Name: gtk-window-decorator
File name: /usr/bin/gtk-window-decorator
Window caption: 'gtk-window-decorator '
Window hwnd: 52428803, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 52428870, processId: 6266, Name: gtk-window-decorator
File name: /usr/bin/gtk-window-decorator
Window caption: 'gtk-window-decorator '
Window hwnd: 52429196, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680113, processId: 6062, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 16777468, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 37748739, processId: 6146, Name:
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 23068705, processId: 6141, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874804, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 54525953, processId: 6351, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 18874806, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 56623105, processId: 6348, Name: gweather-applet-2
File name: /usr/lib/gnome-applets/gweather-applet-2
Window caption: 'gweather-applet-2 '
Window hwnd: 14680319, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874814, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 58720257, processId: 6359, Name: mixer_applet2
File name: /usr/lib/gnome-applets/mixer_applet2
Window caption: 'Miniaplicación del volumen '
Window hwnd: 18874816, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 60817409, processId: 6363, Name: fast-user-switch-applet
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 54526078, processId: 6351, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Press enter to continue with the next 20 windows...
Window hwnd: 14680473, processId: 6062, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 54526214, processId: 6351, Name:
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 14682855, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 14683126, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 29360163, processId: 6181, Name:
File name: /usr/bin/gnome-power-manager
Window caption: 'Gestión de energía '
Window hwnd: 60817895, processId: 6363, Name:
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 50331651, processId: 6233, Name:
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 14683218, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 14683291, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874859, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 62914561, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62914563, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62915607, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62915643, processId: 6411, Name:
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 48234499, processId: 6496, Name:
File name: /usr/bin/python2.5
Window caption: 'gdesklets-daemon '
Window hwnd: 62924205, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 29360192, processId: 6181, Name: gnome-power-manager
File name: /usr/bin/gnome-power-manager
Window caption: 'Brillo '
Press enter to continue...
Process list:
Id 5967: Priority: 5, Program: /usr/bin/gnome-session
Id 6017: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 6025: Priority: 5, Program: /usr/bin/seahorse-agent
Id 6028: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 6031: Priority: 5, Program: /usr/bin/dbus-daemon
Id 6032: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 6047: Priority: 5, Program: /usr/lib/pulseaudio/pulse/gconf-helper
Id 6060: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 6061: Priority: 5, Program: /bin/dash
Id 6064: Priority: 5, Program: /usr/bin/nautilus
Id 6068: Priority: 5, Program: /usr/lib/bonobo-activation/bonobo-activation-server
Id 6095: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 6117: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 6136: Priority: 5, Program: /usr/bin/compiz.real
Id 6137: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 6141: Priority: 5, Program: /usr/bin/update-notifier
Id 6146: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-alarm-notify
Id 6147: Priority: 5, Program: /usr/bin/tracker-applet
Id 6152: Priority: 1, Program: /usr/bin/trackerd
Id 6159: Priority: 5, Program: /usr/bin/python2.5
Id 6160: Priority: 5, Program: /usr/bin/nm-applet
Id 6162: Priority: 5, Program: /opt/google/desktop/bin/gdl_box
Id 6167: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 6177: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 6178: Priority: 5, Program: /opt/google/desktop/bin/gdl_service
Id 6179: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 6181: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 6217: Priority: 5, Program: /usr/lib/evolution/evolution-data-server-2.22
Id 6223: Priority: 5, Program: /opt/google/desktop/bin/gdl_config
Id 6224: Priority: 5, Program: /opt/google/desktop/bin/gdl_indexer
Id 6225: Priority: 5, Program: /opt/google/desktop/bin/gdl_fs_crawler
Id 6233: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-exchange-storage
Id 6263: Priority: 5, Program: /bin/dash
Id 6264: Priority: 5, Program: /bin/dash
Id 6266: Priority: 5, Program: /usr/bin/gtk-window-decorator
Id 6348: Priority: 5, Program: /usr/lib/gnome-applets/gweather-applet-2
Id 6351: Priority: 5, Program: /usr/lib/gnome-applets/trashapplet
Id 6359: Priority: 5, Program: /usr/lib/gnome-applets/mixer_applet2
Id 6363: Priority: 5, Program: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Id 6411: Priority: 5, Program: /usr/bin/theide-svn
Id 6496: Priority: 5, Program: /usr/bin/python2.5
Id 7571: Priority: 5, Program: /bin/bash
Id 7572: Priority: 5, Program: /home/100Aplicaciones/exe/demo
Press enter to end...

View file

@ -1,475 +0,0 @@
Introduce enter or (L) to log off, (R) to reboot or (S) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/aupa/Escritorio
Programs: /usr/bin
Application Data: /home/aupa
Music: /home/aupa/
Pictures: /home/aupa/
Video: /home/aupa/
Personal: /home/aupa/
Templates: /home/aupa/
Download: /home/aupa/Escritorio
Temp: /home/aupa
Os: /bin
System:
System info:
System manufacturer 'Gigabyte Technology Co., Ltd.', product name 'M61P-S3',
version ' ', number of processors: 2
Real CPU Speed: 1.068 GHz
Battery info
There is no battery
Bios version 'F5',
release date '06/21/2007'
Processor #0: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 1000 MHz
Processor #1: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 92%
Total physical memory: 1053753344 bytes (1004.9Mb)
Free physical memory: 78041088 bytes (74.4Mb)
Total paging file: 296697856 bytes (283.0Mb)
Free paging file: 364544 bytes (356.0Kb)
Total virtual memory: 1998733312 bytes (1.9Gb)
Free virtual memory: 1951297536 bytes (1.8Gb)
Os info:
Kernel: Linux, version: 2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008,
architecture: x86_64
Distro: Ubuntu, version: 8.04
Desktop: gnome, version: 2.22.3
Program compiled with gnuc version 40103. Compilation date: Nov 16 2008
Default exes info:
Default program for 'html' is 'firefox.desktop
'
Default program for 'doc' is 'ooo-writer.desktop
'
Default program for 'xls' is 'ooo-calc.desktop
'
Default program for 'pdf' is 'evince.desktop
'
Default program for 'txt' is 'gedit.desktop
'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'MyLinux',
MaxName: 255, File System: ext3
Free Bytes User: 20574494720 (19.2Gb)
Total Bytes User: 29760741376 (27.7Gb), Total Free Bytes: 20574494720 (19.2Gb)
Drive path:'/home'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 877244416 (836.6Mb)
Total Bytes User: 191534055424 (178.4Gb), Total Free Bytes: 877244416 (836.6Mb)
Drive path:'/media/DATA'
Type: 'Hard', Volume: 'DATA',
MaxName: 255, File System: fuseblk
Free Bytes User: 264536981504 (246.4Gb)
Total Bytes User: 750153728000 (698.6Gb), Total Free Bytes: 264536981504 (246.4Gb)
Drive path:'/media/Unidad100'
Type: 'Hard', Volume: 'Unidad100',
MaxName: 255, File System: fuseblk
Free Bytes User: 63337431040 (59.0Gb)
Total Bytes User: 100027596800 (93.2Gb), Total Free Bytes: 63337431040 (59.0Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '/dev/sda1 on /media/MyWindows type fuseblk (rw,nosuid,nodev,noatime,allow_other,blksize=4096) [MyWindows',
MaxName: 260, File System: vfat
Free Bytes User: 2000748544 (1.9Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 2000748544 (1.9Gb)
Drive path:'/media/MyWindows'
Type: 'Hard', Volume: 'MyWindows',
MaxName: 255, File System: fuseblk
Free Bytes User: 7614705664 (7.1Gb)
Total Bytes User: 25004814336 (23.3Gb), Total Free Bytes: 7614705664 (7.1Gb)
Other Info:
Process Id: 15882
Process name: 'Demo_32Ubuntu'
Process file name: '/media/disk/Demo_32Ubuntu'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Window was closed before!
Press enter to continue...
Windows list:
Window hwnd: 135, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291457, processId: 6058, Name: seahorse-agent
File name: /usr/bin/gnome-session
Window caption: 'seahorse-agent '
Window hwnd: 8388609, processId: 6058, Name: x-session-manager
File name: /usr/bin/gnome-session
Window caption: 'x-session-manager '
Window hwnd: 10485761, processId: 6125, Name: gnome-settings-daemon
File name: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Window caption: 'gnome-settings-daemon '
Window hwnd: 10485763, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485764, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680065, processId: 6144, Name: gnome-screensaver
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 14680067, processId: 6144, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 16777217, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874369, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 20971521, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874371, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874372, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874373, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874374, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874382, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874383, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 23068673, processId: 6162, Name: bluetooth-applet
File name: /usr/bin/bluetooth-applet
Window caption: 'Miniaplicación para Bluetooth '
Window hwnd: 25165825, processId: 6165, Name: update-notifier
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 27262977, processId: 6174, Name: tracker-applet
File name: /usr/bin/tracker-applet
Window caption: 'Tracker '
Window hwnd: 29360129, processId: 6180, Name: gnome-volume-manager
File name:
Window caption: 'gnome-volume-manager '
Press enter to continue with the next 20 windows...
Window hwnd: 29360131, processId: 6183, Name:
File name: /usr/lib/gnome-volume-manager/gnome-volume-manager
Window caption: 'gnome-volume-manager '
Window hwnd: 31457281, processId: 6177, Name: gnome-power-manager
File name:
Window caption: 'Gestión de energía '
Window hwnd: 33554433, processId: 6186, Name: nm-applet
File name: /usr/bin/nm-applet
Window caption: 'nm-applet '
Window hwnd: 25165827, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 35651585, processId: 6169, Name: evolution-alarm-notify
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 41943041, processId: 6205, Name: evolution-exchange-storage
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 37748737, processId: 6182, Name: applet.py
File name: /usr/bin/python2.5
Window caption: 'applet.py '
Window hwnd: 20971524, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20971551, processId: 6152, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Escritorio '
Window hwnd: 18946398, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18887019, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18960035, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18949502, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19061164, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19051906, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19102378, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19051519, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19149016, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19130308, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777219, processId: 6151, Name: gnome-panel
File name:
Window caption: 'Panel lateral expandido inferior '
Press enter to continue with the next 20 windows...
Window hwnd: 16777263, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971689, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20971690, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 31457312, processId: 6189, Name:
File name: /usr/bin/gnome-power-manager
Window caption: 'Gestión de energía '
Window hwnd: 25165854, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 41943043, processId: 6205, Name:
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 35651587, processId: 6169, Name:
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 39845889, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16777404, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 46137345, processId: 6255, Name: mixer_applet2
File name: /usr/lib/gnome-applets/mixer_applet2
Window caption: 'Miniaplicación del volumen '
Window hwnd: 50331649, processId: 6258, Name: fast-user-switch-applet
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 50331651, processId: 6258, Name:
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 16778439, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971924, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977589, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977638, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16785299, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785427, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785498, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 54525953, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Press enter to continue with the next 20 windows...
Window hwnd: 54526066, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 60817409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39846545, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 39846657, processId: 6243, Name:
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 55661939, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 44040193, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16829040, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 52428801, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52428808, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52430386, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808099, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808378, processId: 14146, Name:
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 44040224, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 44102499, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16778615, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 39849450, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 20991416, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16861094, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16778490, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16861234, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Press enter to continue with the next 20 windows...
Window hwnd: 21226171, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21214931, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 39851771, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16877493, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16778004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21578790, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21026155, processId: 6152, Name: file_progress
File name: /usr/bin/nautilus
Window caption: 'Operaciones sobre archivos '
Window hwnd: 21204514, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 55195004, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 55195057, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 16867956, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16783981, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16877324, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21042423, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 56623105, processId: 15880, Name: gedit
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 56623459, processId: 15880, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 56623460, processId: 15880, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Press enter to continue...
Process list:
Id 6058: Priority: 5, Program: /usr/bin/gnome-session
Id 6112: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 6118: Priority: 5, Program: /usr/bin/seahorse-agent
Id 6121: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 6124: Priority: 5, Program: /usr/bin/dbus-daemon
Id 6125: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 6136: Priority: 5, Program: /usr/lib/pulseaudio/pulse/gconf-helper
Id 6147: Priority: 5, Program: /usr/bin/metacity
Id 6152: Priority: 5, Program: /usr/bin/nautilus
Id 6153: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 6160: Priority: 5, Program: /usr/lib/bonobo-activation/bonobo-activation-server
Id 6162: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 6165: Priority: 5, Program: /usr/bin/update-notifier
Id 6169: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-alarm-notify
Id 6173: Priority: 5, Program: /usr/bin/obex-data-server
Id 6174: Priority: 5, Program: /usr/bin/tracker-applet
Id 6176: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 6179: Priority: 1, Program: /usr/bin/trackerd
Id 6182: Priority: 5, Program: /usr/bin/python2.5
Id 6183: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 6186: Priority: 5, Program: /usr/bin/nm-applet
Id 6189: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 6193: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 6205: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-exchange-storage
Id 6208: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 6212: Priority: 5, Program: /usr/lib/evolution/evolution-data-server-2.22
Id 6230: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 6243: Priority: 5, Program: /usr/lib/gnome-applets/trashapplet
Id 6255: Priority: 5, Program: /usr/lib/gnome-applets/mixer_applet2
Id 6258: Priority: 5, Program: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Id 6379: Priority: 5, Program: /usr/bin/gnome-terminal
Id 6382: Priority: 5, Program: /bin/bash
Id 14004: Priority: 5, Program: /bin/bash
Id 14029: Priority: 5, Program: /bin/bash
Id 14143: Priority: 5, Program: /usr/bin/transmission
Id 14146: Priority: 5, Program: /usr/bin/amule
Id 15017: Priority: 5, Program: /bin/bash
Id 15401: Priority: 5, Program: /usr/lib/gnome-vfs-2.0/gnome-vfs-daemon
Id 15408: Priority: 5, Program: /bin/bash
Id 15880: Priority: 5, Program: /usr/bin/gedit
Id 15882: Priority: 5, Program: /media/disk/Demo_32Ubuntu
Press enter to end...

View file

@ -1,771 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: C:\Users\aupa\Desktop
Programs: C:\Program Files
Application Data: C:\Users\aupa\AppData\Roaming
Music: C:\Users\aupa\Music
Pictures: C:\Users\aupa\Pictures
Video: C:\Users\aupa\Videos
Personal: C:\Users\aupa\Documents
Templates: C:\Users\aupa\AppData\Roaming\Microsoft\Windows\Templates
Download: C:\Users\aupa\Desktop
Temp: C:\Users\aupa\AppData\Local\Temp
Os: C:\Windows
System: C:\Windows\system32
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.828 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 71582788 min
Bios version 'V2.70',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'x86 Family 6 Model 15 Stepping 13', speed 1828 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'x86 Family 6 Model 15 Stepping 13', speed 1828 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 54%
Total physical memory: 2136653824 bytes (2.0Gb)
Free physical memory: 963137536 bytes (918.5Mb)
Total paging file: 4524212224 bytes (4.2Gb)
Free paging file: 3201470464 bytes (3.0Gb)
Total virtual memory: 2147352576 bytes (2.0Gb)
Free virtual memory: 2094370816 bytes (2.0Gb)
Os info:
Kernel: Windows Vista, version: 6.0 Service Pack 1 (Build 6001),
architecture: 32 bits
Distro: Home Premium Edition, version:
Desktop: Windows Vista, version:
Program compiled with msc version 150030729. Compilation date: Nov 18 2008
Default exes info:
Default program for 'html' is 'C:\Program Files\Mozilla Firefox\firefox.exe'
Default program for 'doc' is 'C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE'
Default program for 'png' is 'C:\Program Files\Windows Photo Gallery\PhotoViewer.dll'
Default program for 'pdf' is 'C:\PROGRA~1\FOXITS~1\FOXITR~1\FOXITR~1.EXE'
Default program for 'txt' is 'C:\Windows\system32\NOTEPAD.EXE'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'C:\'
Type: 'Hard', Volume: 'Vista',
MaxName: 6553632, File System: NTFS
Free Bytes User: 25416818688 (23.7Gb)
Total Bytes User: 57675657216 (53.7Gb), Total Free Bytes: 25416818688 (23.7Gb)
Drive path:'D:\'
Type: 'Hard', Volume: 'Compartido',
MaxName: 6553632, File System: EXT3
Free Bytes User: 78411464704 (73.0Gb)
Total Bytes User: 131127377920 (122.1Gb), Total Free Bytes: 78411464704 (73.0Gb)
Drive path:'E:\'
Type: 'Hard', Volume: 'Linux',
MaxName: 6553632, File System: EXT3
Free Bytes User: 49589837824 (46.2Gb)
Total Bytes User: 54953095168 (51.2Gb), Total Free Bytes: 49589837824 (46.2Gb)
Drive path:'F:\'
Type: 'Optical', Volume: '',
MaxName: 6553632, File System:
Not mounted
Drive path:'G:\'
Type: 'Removable', Volume: '',
MaxName: 6553632, File System: FAT
Free Bytes User: 1947664384 (1.8Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1947664384 (1.8Gb)
Other Info:
Process Id: 5732
Process name: 'SysInfo demo non-gui.exe'
Process file name: 'C:\desarrollo\upp\out\MSC9.Debug.Debug_full\SysInfo demo non-gui.exe'
Process priority is: 5
Now changed to high priority: Yes
Process priority is: 8
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 591650, processId: 3672, Name: Explorer.EXE
File name: C:\Windows\Explorer.EXE
Window caption: ''
Window hwnd: 133336, processId: 3672, Name: comctl32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
Window caption: ''
Window hwnd: 723204, processId: 3672, Name: BROWSEUI.dll
File name: C:\Windows\system32\BROWSEUI.dll
Window caption: ''
Window hwnd: 263956, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: ''
Window hwnd: 65618, processId: 3672, Name: Explorer.EXE
File name: C:\Windows\Explorer.EXE
Window caption: ''
Window hwnd: 66054, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: ''
Window hwnd: 1050066, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: ''
Window hwnd: 919616, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: ''
Window hwnd: 525656, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: ''
Window hwnd: 919068, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: ''
Window hwnd: 329202, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: ''
Window hwnd: 65888, processId: 3996, Name: SynTPEnh.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
Window caption: ''
Window hwnd: 131368, processId: 3996, Name: SynTPEnh.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
Window caption: ''
Window hwnd: 65698, processId: 3672, Name: comctl32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
Window caption: ''
Window hwnd: 1902614, processId: 5732, Name: UNKNOWN
File name: UNKNOWN
Window caption: 'C:\desarrollo\upp\out\MSC9.Debug.Debug_full\SysInfo demo non-gui.exe'
Window hwnd: 854214, processId: 3672, Name: BROWSEUI.dll
File name: C:\Windows\system32\BROWSEUI.dll
Window caption: 'G:\'
Window hwnd: 395166, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 395168, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 395136, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 133334, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 264154, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 460846, processId: 3672, Name: comctl32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
Window caption: ''
Window hwnd: 854274, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 526440, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 2491886, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 525646, processId: 2536, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: 'SysInfo demo non-gui - - TheIDE - [D:\100Aplicaciones\SysInfo\SysInfo.cpp UTF-8] { MyApps }'
Window hwnd: 525690, processId: 928, Name: COMCTL32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\COMCTL32.dll
Window caption: ''
Window hwnd: 263510, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: 'EnumProcessModules Function (Windows) - Mozilla Firefox'
Window hwnd: 263516, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: ''
Window hwnd: 263508, processId: 1784, Name: xul.dll
File name: C:\Program Files\Mozilla Firefox\xul.dll
Window caption: ''
Window hwnd: 1443254, processId: 1784, Name: firefox.exe
File name: C:\Program Files\Mozilla Firefox\firefox.exe
Window caption: ''
Window hwnd: 329050, processId: 1784, Name: BkMrkExt.dll
File name: C:\Users\aupa\AppData\Roaming\Mozilla\Firefox\Profiles\a38xpbay.default\extensions\bkmrksync@nokia.com\components\BkMrkExt.dll
Window caption: ''
Window hwnd: 263532, processId: 1784, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 525662, processId: 1784, Name: firefox.exe
File name: C:\Program Files\Mozilla Firefox\firefox.exe
Window caption: ''
Window hwnd: 1573894, processId: 1784, Name: firefox.exe
File name: C:\Program Files\Mozilla Firefox\firefox.exe
Window caption: ''
Window hwnd: 6292854, processId: 2536, Name: WINMM.dll
File name: C:\Windows\system32\WINMM.dll
Window caption: ''
Window hwnd: 591178, processId: 2536, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Window hwnd: 394596, processId: 2536, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Window hwnd: 66032, processId: 4016, Name: traybar.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\traybar.exe
Window caption: ''
Window hwnd: 197444, processId: 2364, Name: avgtray.exe
File name: C:\Program Files\AVG\AVG8\avgtray.exe
Window caption: ''
Window hwnd: 198666, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 3934266, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 66244, processId: 3968, Name: TOPI.exe
File name: C:\Program Files\Toshiba\Toshiba Online Product Information\TOPI.exe
Window caption: ''
Window hwnd: 66246, processId: 3968, Name: TOPI.exe
File name: C:\Program Files\Toshiba\Toshiba Online Product Information\TOPI.exe
Window caption: ''
Window hwnd: 393944, processId: 3968, Name: comctl32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\comctl32.dll
Window caption: ''
Window hwnd: 919104, processId: 4188, Name: FOXITR~1.EXE
File name: C:\PROGRA~1\FOXITS~1\FOXITR~1\FOXITR~1.EXE
Window caption: ''
Window hwnd: 984628, processId: 4188, Name: ole32.dll
File name: C:\Windows\system32\ole32.dll
Window caption: ''
Window hwnd: 132466, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 525788, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 66958, processId: 812, Name: conime.exe
File name: C:\Windows\system32\conime.exe
Window caption: ''
Window hwnd: 66940, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 459752, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 132414, processId: 3672, Name: WINMM.dll
File name: C:\Windows\system32\WINMM.dll
Window caption: ''
Window hwnd: 263084, processId: 2920, Name: SynTPHelper.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPHelper.exe
Window caption: ''
Window hwnd: 66862, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66860, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66858, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66856, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66854, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 132386, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 132388, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 66848, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66846, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66844, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66842, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66840, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66838, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66834, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66832, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66830, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66828, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66826, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66824, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66822, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66820, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66818, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66816, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66814, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66812, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 132280, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 196962, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 131918, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131754, processId: 3672, Name: bthprops.cpl
File name: C:\Windows\system32\bthprops.cpl
Window caption: ''
Window hwnd: 131710, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 132282, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66760, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 197830, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 328900, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 525506, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66736, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 262406, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 196972, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66734, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66732, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66730, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 196974, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66728, processId: 2364, Name: avgtray.exe
File name: C:\Program Files\AVG\AVG8\avgtray.exe
Window caption: ''
Window hwnd: 66716, processId: 3672, Name: wscntfy.dll
File name: C:\Windows\system32\wscntfy.dll
Window caption: ''
Window hwnd: 132088, processId: 2420, Name: mshtml.dll
File name: C:\Windows\system32\mshtml.dll
Window caption: ''
Window hwnd: 65774, processId: 2100, Name: TCrdMain.exe
File name: C:\Program Files\Toshiba\FlashCards\TCrdMain.exe
Window caption: ''
Window hwnd: 66554, processId: 2120, Name: ToshibaRegistration.exe
File name: C:\Program Files\Toshiba\Registration\ToshibaRegistration.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 66546, processId: 2120, Name: ToshibaRegistration.exe
File name: C:\Program Files\Toshiba\Registration\ToshibaRegistration.exe
Window caption: ''
Window hwnd: 66520, processId: 2120, Name: ToshibaRegistration.exe
File name: C:\Program Files\Toshiba\Registration\ToshibaRegistration.exe
Window caption: ''
Window hwnd: 66510, processId: 3968, Name: mshtml.dll
File name: C:\Windows\system32\mshtml.dll
Window caption: ''
Window hwnd: 131874, processId: 3672, Name: webcheck.dll
File name: C:\Windows\system32\webcheck.dll
Window caption: ''
Window hwnd: 66504, processId: 3672, Name: Explorer.EXE
File name: C:\Windows\Explorer.EXE
Window caption: ''
Window hwnd: 131892, processId: 2828, Name: CFSwMgr.exe
File name: C:\Program Files\Toshiba\ConfigFree\CFSwMgr.exe
Window caption: ''
Window hwnd: 131910, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131920, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131922, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131924, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131926, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 131928, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 197466, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 263004, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 263028, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 197490, processId: 2672, Name: CEC_MAIN.exe
File name: C:\Program Files\Camera Assistant Software for Toshiba\CEC_MAIN.exe
Window caption: ''
Window hwnd: 66446, processId: 3672, Name: pnidui.dll
File name: C:\Windows\system32\pnidui.dll
Window caption: ''
Window hwnd: 131940, processId: 3672, Name: SndVolSSO.dll
File name: C:\Windows\System32\SndVolSSO.dll
Window caption: ''
Window hwnd: 66336, processId: 3672, Name: MMDevAPI.DLL
File name: C:\Windows\system32\MMDevAPI.DLL
Window caption: ''
Window hwnd: 1180352, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 1049270, processId: 3968, Name: TOPI.exe
File name: C:\Program Files\Toshiba\Toshiba Online Product Information\TOPI.exe
Window caption: ''
Window hwnd: 262706, processId: 2100, Name: TCrdMain.exe
File name: C:\Program Files\Toshiba\FlashCards\TCrdMain.exe
Window caption: ''
Window hwnd: 66022, processId: 2232, Name: Ext2Mgr.exe
File name: C:\Program Files\Ext2Fsd\Ext2Mgr.exe
Window caption: ''
Window hwnd: 131626, processId: 3672, Name: stobject.dll
File name: C:\Windows\system32\stobject.dll
Window caption: ''
Window hwnd: 197304, processId: 2420, Name: mshtml.dll
File name: C:\Windows\system32\mshtml.dll
Window caption: ''
Window hwnd: 196756, processId: 3996, Name: SynCOM.dll
File name: C:\Windows\system32\SynCOM.dll
Window caption: ''
Window hwnd: 131588, processId: 3968, Name: TOPI.exe
File name: C:\Program Files\Toshiba\Toshiba Online Product Information\TOPI.exe
Window caption: ''
Window hwnd: 131586, processId: 2232, Name: COMCTL32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\COMCTL32.dll
Window caption: ''
Window hwnd: 131580, processId: 2232, Name: COMCTL32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\COMCTL32.dll
Window caption: ''
Window hwnd: 131224, processId: 1072, Name: TimounterMonitor.exe
File name: C:\Program Files\Acronis\TrueImageHome\TimounterMonitor.exe
Window caption: ''
Window hwnd: 131422, processId: 2420, Name: sidebar.exe
File name: C:\Program Files\Windows Sidebar\sidebar.exe
Window caption: ''
Window hwnd: 66030, processId: 2420, Name: sidebar.exe
File name: C:\Program Files\Windows Sidebar\sidebar.exe
Window caption: ''
Window hwnd: 65942, processId: 1072, Name: TimounterMonitor.exe
File name: C:\Program Files\Acronis\TrueImageHome\TimounterMonitor.exe
Window caption: ''
Window hwnd: 65940, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65938, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65936, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65934, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65932, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65930, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65928, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 65926, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65924, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65922, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 131450, processId: 3816, Name: COMCTL32.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6001.18000_none_5cdbaa5a083979cc\COMCTL32.dll
Window caption: ''
Window hwnd: 65906, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 65880, processId: 1072, Name: TimounterMonitor.exe
File name: C:\Program Files\Acronis\TrueImageHome\TimounterMonitor.exe
Window caption: ''
Window hwnd: 65884, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 131382, processId: 3996, Name: SynTPEnh.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
Window caption: ''
Window hwnd: 65856, processId: 3536, Name: TMM.dll
File name: C:\Windows\System32\TMM.dll
Window caption: ''
Window hwnd: 65848, processId: 3536, Name: TMM.dll
File name: C:\Windows\System32\TMM.dll
Window caption: ''
Window hwnd: 65842, processId: 3996, Name: SynCOM.dll
File name: C:\Windows\system32\SynCOM.dll
Window caption: ''
Window hwnd: 65792, processId: 4060, Name: SmoothView.exe
File name: C:\Program Files\Toshiba\SmoothView\SmoothView.exe
Window caption: ''
Window hwnd: 65840, processId: 3996, Name: SynTPEnh.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
Window caption: ''
Window hwnd: 65838, processId: 3996, Name: SynTPEnh.exe
File name: C:\Program Files\Synaptics\SynTP\SynTPEnh.exe
Window caption: ''
Window hwnd: 262432, processId: 2288, Name: schedhlp.exe
File name: C:\Program Files\Common Files\Acronis\Schedule2\schedhlp.exe
Window caption: ''
Window hwnd: 65816, processId: 3956, Name: NDSTray.exe
File name: C:\Program Files\Toshiba\ConfigFree\NDSTray.exe
Window caption: ''
Window hwnd: 590082, processId: 3904, Name: hkcmd.exe
File name: C:\Windows\System32\hkcmd.exe
Window caption: ''
Window hwnd: 393476, processId: 2164, Name: TrueImageMonitor.exe
File name: C:\Program Files\Acronis\TrueImageHome\TrueImageMonitor.exe
Window caption: ''
Window hwnd: 131096, processId: 4028, Name: TPwrMain.exe
File name: C:\Program Files\Toshiba\Power Saver\TPwrMain.exe
Window caption: ''
Window hwnd: 131112, processId: 2164, Name: TrueImageMonitor.exe
File name: C:\Program Files\Acronis\TrueImageHome\TrueImageMonitor.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 131110, processId: 3932, Name: igfxpers.exe
File name: C:\Windows\System32\igfxpers.exe
Window caption: ''
Window hwnd: 65762, processId: 3864, Name: igfxtray.exe
File name: C:\Windows\System32\igfxtray.exe
Window caption: ''
Window hwnd: 65714, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65702, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65656, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65654, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65614, processId: 3672, Name: SHLWAPI.dll
File name: C:\Windows\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65608, processId: 3536, Name: WINMM.dll
File name: C:\Windows\System32\WINMM.dll
Window caption: ''
Window hwnd: 131132, processId: 3672, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 131128, processId: 3672, Name: Explorer.EXE
File name: C:\Windows\Explorer.EXE
Window caption: ''
Window hwnd: 131124, processId: 3536, Name: HotStartUserAgent.dll
File name: C:\Windows\System32\HotStartUserAgent.dll
Window caption: ''
Window hwnd: 262176, processId: 3536, Name: taskeng.exe
File name: C:\Windows\system32\taskeng.exe
Window caption: ''
Window hwnd: 196638, processId: 3588, Name: Dwm.exe
File name: C:\Windows\system32\Dwm.exe
Window caption: ''
Window hwnd: 65600, processId: 3536, Name: MsCtfMonitor.dll
File name: C:\Windows\system32\MsCtfMonitor.dll
Window caption: ''
Window hwnd: 65756, processId: 3816, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Window hwnd: 65726, processId: 3816, Name: MSASCui.exe
File name: C:\Program Files\Windows Defender\MSASCui.exe
Window caption: ''
Window hwnd: 65782, processId: 2100, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Window hwnd: 65894, processId: 2420, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Window hwnd: 131398, processId: 3968, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Window hwnd: 66540, processId: 2120, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 132086, processId: 2120, Name: ToshibaRegistration.exe
File name: C:\Program Files\Toshiba\Registration\ToshibaRegistration.exe
Window caption: ''
Window hwnd: 984786, processId: 4188, Name: GDIPLUS.DLL
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\GDIPLUS.DLL
Window caption: ''
Window hwnd: 460186, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: ''
Window hwnd: 2885610, processId: 928, Name: regedit.exe
File name: C:\Windows\regedit.exe
Window caption: 'Editor del Registro'
Window hwnd: 591922, processId: 3672, Name: gdiplus.dll
File name: C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.6001.18065_none_9e7abe2ec9c13222\gdiplus.dll
Window caption: ''
Window hwnd: 65692, processId: 3672, Name: SHELL32.dll
File name: C:\Windows\system32\SHELL32.dll
Window caption: 'Program Manager'
Press enter to continue...
Process list:
Id 0: Priority: Not accesible, Program: [System Process]
Id 4: Priority: Not accesible, Program: System
Id 576: Priority: Not accesible, Program: smss.exe
Id 644: Priority: Not accesible, Program: csrss.exe
Id 688: Priority: Not accesible, Program: wininit.exe
Id 700: Priority: Not accesible, Program: csrss.exe
Id 736: Priority: Not accesible, Program: services.exe
Id 752: Priority: Not accesible, Program: lsass.exe
Id 760: Priority: Not accesible, Program: lsm.exe
Id 848: Priority: Not accesible, Program: winlogon.exe
Id 956: Priority: Not accesible, Program: svchost.exe
Id 1004: Priority: Not accesible, Program: PresentationFontCache.exe
Id 1048: Priority: Not accesible, Program: svchost.exe
Id 1084: Priority: Not accesible, Program: svchost.exe
Id 1180: Priority: Not accesible, Program: svchost.exe
Id 1216: Priority: Not accesible, Program: svchost.exe
Id 1252: Priority: Not accesible, Program: svchost.exe
Id 1352: Priority: Not accesible, Program: audiodg.exe
Id 1384: Priority: Not accesible, Program: SLsvc.exe
Id 1468: Priority: Not accesible, Program: svchost.exe
Id 1620: Priority: Not accesible, Program: svchost.exe
Id 1840: Priority: Not accesible, Program: spoolsv.exe
Id 1864: Priority: Not accesible, Program: svchost.exe
Id 1952: Priority: Not accesible, Program: taskeng.exe
Id 612: Priority: Not accesible, Program: schedul2.exe
Id 728: Priority: Not accesible, Program: avgwdsvc.exe
Id 680: Priority: Not accesible, Program: CFSvcs.exe
Id 796: Priority: Not accesible, Program: MDM.EXE
Id 1996: Priority: Not accesible, Program: o2flash.exe
Id 1944: Priority: Not accesible, Program: svchost.exe
Id 1136: Priority: Not accesible, Program: svchost.exe
Id 1636: Priority: Not accesible, Program: TNaviSrv.exe
Id 1872: Priority: Not accesible, Program: TODDSrv.exe
Id 2004: Priority: Not accesible, Program: TosCoSrv.exe
Id 1324: Priority: Not accesible, Program: TosIPCSrv.exe
Id 2124: Priority: Not accesible, Program: ULCDRSvr.exe
Id 2156: Priority: Not accesible, Program: svchost.exe
Id 2188: Priority: Not accesible, Program: SearchIndexer.exe
Id 2252: Priority: Not accesible, Program: XAudio.exe
Id 2624: Priority: Not accesible, Program: WUDFHost.exe
Id 3060: Priority: Not accesible, Program: avgrsx.exe
Id 3536: Priority: 5, Program: taskeng.exe
Id 3588: Priority: 8, Program: dwm.exe
Id 3672: Priority: 5, Program: explorer.exe
Id 3816: Priority: 5, Program: MSASCui.exe
Id 3836: Priority: 5, Program: jusched.exe
Id 3864: Priority: 5, Program: igfxtray.exe
Id 3904: Priority: 5, Program: hkcmd.exe
Id 3932: Priority: 5, Program: igfxpers.exe
Id 3956: Priority: 5, Program: NDSTray.exe
Id 3968: Priority: 5, Program: TOPI.exe
Id 3976: Priority: 5, Program: igfxsrvc.exe
Id 3996: Priority: 6, Program: SynTPEnh.exe
Id 4016: Priority: 5, Program: traybar.exe
Id 4028: Priority: 5, Program: TPwrMain.exe
Id 4060: Priority: 5, Program: SmoothView.exe
Id 2100: Priority: 5, Program: TCrdMain.exe
Id 2120: Priority: 5, Program: ToshibaRegistration.exe
Id 2164: Priority: 5, Program: TrueImageMonitor.exe
Id 1072: Priority: 5, Program: TimounterMonitor.exe
Id 2232: Priority: 5, Program: Ext2Mgr.exe
Id 2288: Priority: 5, Program: schedhlp.exe
Id 2364: Priority: 5, Program: avgtray.exe
Id 2420: Priority: 5, Program: sidebar.exe
Id 2672: Priority: 5, Program: CEC_MAIN.exe
Id 2828: Priority: 5, Program: CFSwMgr.exe
Id 2920: Priority: 6, Program: SynTPHelper.exe
Id 812: Priority: 5, Program: conime.exe
Id 4188: Priority: 5, Program: FOXITR~1.EXE
Id 2536: Priority: 5, Program: theide.exe
Id 1300: Priority: 5, Program: mspdbsrv.exe
Id 1784: Priority: 5, Program: firefox.exe
Id 928: Priority: 5, Program: regedit.exe
Id 4696: Priority: Not accesible, Program: SearchProtocolHost.exe
Id 5640: Priority: 0, Program: SearchFilterHost.exe
Id 5732: Priority: 8, Program: SysInfo demo non-gui.exe
Id 3228: Priority: 5, Program: dllhost.exe
Press enter to end...

View file

@ -1,766 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: C:\Documents and Settings\23853\Escritorio
Programs: C:\Archivos de programa
Application Data: C:\Documents and Settings\23853\Datos de programa
Music: C:\Documents and Settings\23853\Mis documentos\Mi música
Pictures: C:\Documents and Settings\23853\Mis documentos\Mis imágenes
Video: C:\Documents and Settings\23853\Mis documentos\Mis vídeos
Personal: C:\Documents and Settings\23853\Mis documentos
Templates: C:\Documents and Settings\23853\Plantillas
Download: C:\Documents and Settings\23853\Escritorio
Temp: C:\DOCUME~1\23853\CONFIG~1\Temp
Os: C:\WINDOWS
System: C:\WINDOWS\system32
System info:
System manufacturer 'Dell Optiplex 755', product name 'OPTIPLEX 755',
version '', number of processors: 2
Real CPU Speed: 2.328 GHz
Battery info
There is no battery
Bios version '',
release date ''
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz',
architecture 'x86 Family 6 Model 15 Stepping 11', speed 2327 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz',
architecture 'x86 Family 6 Model 15 Stepping 11', speed 2327 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 40%
Total physical memory: 2111344640 bytes (2.0Gb)
Free physical memory: 1246093312 bytes (1.2Gb)
Total paging file: 4095778816 bytes (3.8Gb)
Free paging file: 2939035648 bytes (2.7Gb)
Total virtual memory: 2147352576 bytes (2.0Gb)
Free virtual memory: 2117468160 bytes (2.0Gb)
Os info:
Kernel: Windows XP, version: 5.1 Service Pack 2 (Build 2600),
architecture: 32 bits
Distro: Professional, version:
Desktop: Windows XP, version:
Program compiled with msc version 150030729. Compilation date: Dec 1 2008
Default exes info:
Default program for '.html' is 'C:\Archivos de programa\Internet Explorer\IEXPLORE.EXE'
Default program for '.doc' is 'C:\Archivos de programa\Microsoft Office\OFFICE11\WINWORD.EXE'
Default program for '.png' is 'C:\WINDOWS\system32\shimgvw.dll'
Default program for '.pdf' is 'C:\Archivos de programa\Adobe\Acrobat 7.0\Acrobat\Acrobat.exe'
Default program for '.txt' is 'C:\Archivos de programa\Windows NT\Accesorios\WORDPAD.EXE'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'A:\'
Not mounted
Drive path:'C:\'
Type: 'Hard', Volume: 'Local',
MaxName: 0, File System: NTFS
Free Bytes User: 84657565696 (78.8Gb)
Total Bytes User: 159932342272 (148.9Gb), Total Free Bytes: 84657565696 (78.8Gb)
Drive path:'D:\'
Not mounted
Drive path:'G:\'
Type: 'Network', Volume: 'Apl32',
MaxName: 0, File System: NTFS
Free Bytes User: 3120226304 (2.9Gb)
Total Bytes User: 96636764160 (90.0Gb), Total Free Bytes: 3120226304 (2.9Gb)
Drive path:'J:\'
Type: 'Network', Volume: 'Mswin311',
MaxName: 0, File System: NTFS
Free Bytes User: 676614144 (645.3Mb)
Total Bytes User: 2147483648 (2.0Gb), Total Free Bytes: 676614144 (645.3Mb)
Drive path:'M:\'
Type: 'Network', Volume: '23853$',
MaxName: 0, File System: NTFS
Free Bytes User: 684982272 (653.3Mb)
Total Bytes User: 2147483648 (2.0Gb), Total Free Bytes: 684982272 (653.3Mb)
Drive path:'N:\'
Type: 'Network', Volume: 'Pccom',
MaxName: 0, File System: NTFS
Free Bytes User: 10417651712 (9.7Gb)
Total Bytes User: 10737418240 (10.0Gb), Total Free Bytes: 10417651712 (9.7Gb)
Drive path:'O:\'
Type: 'Network', Volume: '21tf_com',
MaxName: 0, File System: NTFS
Free Bytes User: 2852200448 (2.7Gb)
Total Bytes User: 238370684928 (222.0Gb), Total Free Bytes: 2852200448 (2.7Gb)
Drive path:'P:\'
Type: 'Network', Volume: '21tf_apl',
MaxName: 0, File System: NTFS
Free Bytes User: 2197319680 (2.0Gb)
Total Bytes User: 48318382080 (45.0Gb), Total Free Bytes: 2197319680 (2.0Gb)
Drive path:'Q:\'
Type: 'Network', Volume: 'servired',
MaxName: 0, File System: NTFS
Free Bytes User: 659349504 (628.8Mb)
Total Bytes User: 1073741824 (1.0Gb), Total Free Bytes: 659349504 (628.8Mb)
Drive path:'Y:\'
Type: 'Network', Volume: 'proyecto',
MaxName: 0, File System: NTFS
Free Bytes User: 14910078976 (13.9Gb)
Total Bytes User: 1546188226560 (1.4Tb), Total Free Bytes: 14910078976 (13.9Gb)
Other Info:
Process Id: 3148
Process name: 'SysInfo demo console.exe'
Process file name: 'C:\desarrollo\upp\out\MSC9.Debug.Debug_full\SysInfo demo console.exe'
Process priority is: 5
Now changed to high priority: Yes
Process priority is: 8
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 394482, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 918684, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 65684, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 196698, processId: 2068, Name: Explorer.EXE
File name: C:\WINDOWS\Explorer.EXE
Window caption: ''
Window hwnd: 3016168, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 789472, processId: 2788, Name: EXCEL.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\EXCEL.EXE
Window caption: ''
Window hwnd: 1181656, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 1508866, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: ''
Window hwnd: 853342, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 2819784, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 1116148, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 1508712, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: ''
Window hwnd: 1574508, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 525962, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 1508904, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 787918, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 68400, processId: 3596, Name: iexplore.exe
File name: C:\Archivos de programa\Internet Explorer\iexplore.exe
Window caption: ''
Window hwnd: 68324, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 68278, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 68240, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 68104, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 68010, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 67966, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 592038, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 67908, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 198806, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 264252, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 788356, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: ''
Window hwnd: 65692, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 787238, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 394052, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: ''
Window hwnd: 393978, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 656718, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Window hwnd: 66822, processId: 3256, Name: WISPTIS.EXE
File name: C:\WINDOWS\system32\WISPTIS.EXE
Window caption: ''
Window hwnd: 65844, processId: 2444, Name: SHSTAT.EXE
File name: C:\Archivos de programa\McAfee\VirusScan Enterprise\SHSTAT.EXE
Window caption: ''
Window hwnd: 131356, processId: 2376, Name: PDVDDXSrv.exe
File name: C:\Archivos de programa\CyberLink\PowerDVD DX\PDVDDXSrv.exe
Window caption: ''
Window hwnd: 3607526, processId: 3148, Name: UNKNOWN
File name: UNKNOWN
Window caption: 'C:\desarrollo\upp\out\MSC9.Debug.Debug_full\SysInfo demo console.exe'
Window hwnd: 1313608, processId: 3548, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: 'SysInfo demo console - - TheIDE - [C:\Desarrollo\Aplicaciones\SysInfo\SysInfo.cpp UTF-8] { MyApps }'
Window hwnd: 2098696, processId: 2788, Name: EXCEL.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\EXCEL.EXE
Window caption: 'Microsoft Excel - Testing results.xls'
Window hwnd: 787678, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: 'C:\Documents and Settings\23853\Escritorio\Plan de ensayos'
Window hwnd: 854928, processId: 3548, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 1444686, processId: 3548, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Window hwnd: 1248220, processId: 2788, Name: mso.dll
File name: C:\Archivos de programa\Archivos comunes\Microsoft Shared\office11\mso.dll
Window caption: ''
Window hwnd: 723808, processId: 2788, Name: VBE6.DLL
File name: C:\ARCHIV~1\ARCHIV~1\MICROS~1\VBA\VBA6\VBE6.DLL
Window caption: ''
Window hwnd: 1247492, processId: 2788, Name: VBE6.DLL
File name: C:\ARCHIV~1\ARCHIV~1\MICROS~1\VBA\VBA6\VBE6.DLL
Window caption: ''
Window hwnd: 1378400, processId: 2788, Name: FM20.DLL
File name: C:\WINDOWS\system32\FM20.DLL
Window caption: ''
Window hwnd: 1312812, processId: 2788, Name: VBE6.DLL
File name: C:\ARCHIV~1\ARCHIV~1\MICROS~1\VBA\VBA6\VBE6.DLL
Window caption: ''
Window hwnd: 1640634, processId: 2788, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 1902532, processId: 2788, Name: mso.dll
File name: C:\Archivos de programa\Archivos comunes\Microsoft Shared\office11\mso.dll
Window caption: ''
Window hwnd: 66072, processId: 2628, Name: ctfmon.exe
File name: C:\WINDOWS\system32\ctfmon.exe
Window caption: ''
Window hwnd: 1050020, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 1117132, processId: 468, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 1115156, processId: 468, Name: Database.exe
File name: C:\Desarrollo\Aplicaciones\exe\Database.exe
Window caption: 'Datos 0.1'
Window hwnd: 1639858, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: 'C:\Datos\10 Biblioteca\20 Libros\Normas\Aernnova\Fabricacion utillajes'
Window hwnd: 852732, processId: 3000, Name: WINWORD.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\WINWORD.EXE
Window caption: 'SENER-00XXXXXX-Rev 0 Inspeccion Senertrough.doc - Microsoft Word'
Window hwnd: 1312120, processId: 3000, Name: WINWORD.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\WINWORD.EXE
Window caption: ''
Window hwnd: 265800, processId: 3000, Name: mso.dll
File name: C:\Archivos de programa\Archivos comunes\Microsoft Shared\office11\mso.dll
Window caption: ''
Window hwnd: 526088, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 1050056, processId: 3596, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 1050158, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 1050132, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 1246408, processId: 468, Name: Database.exe
File name: C:\Desarrollo\Aplicaciones\exe\Database.exe
Window caption: ''
Window hwnd: 5899458, processId: 468, Name: Database.exe
File name: C:\Desarrollo\Aplicaciones\exe\Database.exe
Window caption: ''
Window hwnd: 1049778, processId: 3872, Name: WINMM.dll
File name: C:\WINDOWS\system32\WINMM.dll
Window caption: ''
Window hwnd: 853168, processId: 3872, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Window hwnd: 1377280, processId: 3872, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: ''
Window hwnd: 328714, processId: 3600, Name: OUTLLIB.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\OUTLLIB.dll
Window caption: 'Calendario - Microsoft Outlook'
Window hwnd: 1509014, processId: 3596, Name: Flash10a.ocx
File name: C:\WINDOWS\system32\Macromed\Flash\Flash10a.ocx
Window caption: ''
Window hwnd: 1967702, processId: 3596, Name: Flash10a.ocx
File name: C:\WINDOWS\system32\Macromed\Flash\Flash10a.ocx
Window caption: ''
Window hwnd: 133898, processId: 3600, Name: outllibr.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\3082\outllibr.dll
Window caption: ''
Window hwnd: 133932, processId: 3600, Name: WINMM.dll
File name: C:\WINDOWS\system32\WINMM.dll
Window caption: ''
Window hwnd: 68342, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 68332, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 68296, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 68286, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 68258, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 68246, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 68126, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 68114, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 68028, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 68018, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 67984, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 67974, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 67942, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 67932, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 591958, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 67916, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 460990, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 198836, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 3868602, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 264268, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 460772, processId: 3596, Name: mshtml.dll
File name: C:\WINDOWS\system32\mshtml.dll
Window caption: ''
Window hwnd: 329696, processId: 3596, Name: AcroIEHelper.dll
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll
Window caption: ''
Window hwnd: 526264, processId: 3596, Name: WINMM.dll
File name: C:\WINDOWS\system32\WINMM.dll
Window caption: ''
Window hwnd: 2623070, processId: 3596, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 2622826, processId: 3596, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 984730, processId: 3596, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 3671666, processId: 3596, Name: iexplore.exe
File name: C:\Archivos de programa\Internet Explorer\iexplore.exe
Window caption: ''
Window hwnd: 133928, processId: 3600, Name: COMCTL32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
Window caption: ''
Window hwnd: 1048912, processId: 2244, Name: WORDPAD.EXE
File name: C:\Archivos de programa\Windows NT\Accesorios\WORDPAD.EXE
Window caption: 'Metrologia.txt - WordPad'
Window hwnd: 131694, processId: 2068, Name: stobject.dll
File name: C:\WINDOWS\system32\stobject.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 1442926, processId: 3000, Name: WINWORD.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\WINWORD.EXE
Window caption: ''
Window hwnd: 1180928, processId: 3000, Name: VBE6.DLL
File name: C:\ARCHIV~1\ARCHIV~1\MICROS~1\VBA\VBA6\VBE6.DLL
Window caption: ''
Window hwnd: 1246328, processId: 3000, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 721650, processId: 3000, Name: mso.dll
File name: C:\Archivos de programa\Archivos comunes\Microsoft Shared\office11\mso.dll
Window caption: ''
Window hwnd: 459582, processId: 2068, Name: comctl32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\comctl32.dll
Window caption: ''
Window hwnd: 590212, processId: 2244, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 1443408, processId: 3600, Name: OUTLLIB.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\OUTLLIB.dll
Window caption: ''
Window hwnd: 722148, processId: 3600, Name: outllibr.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\3082\outllibr.dll
Window caption: ''
Window hwnd: 2622724, processId: 3600, Name: COMCTL32.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
Window caption: ''
Window hwnd: 460042, processId: 3600, Name: MAPIR.DLL
File name: C:\Archivos de programa\Archivos comunes\SYSTEM\MSMAPI\3082\MAPIR.DLL
Window caption: ''
Window hwnd: 263374, processId: 3600, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 1049836, processId: 3600, Name: msmapi32.dll
File name: C:\Archivos de programa\Archivos comunes\System\MSMAPI\3082\msmapi32.dll
Window caption: ''
Window hwnd: 328790, processId: 3600, Name: MAPIR.DLL
File name: C:\Archivos de programa\Archivos comunes\SYSTEM\MSMAPI\3082\MAPIR.DLL
Window caption: ''
Window hwnd: 1377430, processId: 3600, Name: MAPIR.DLL
File name: C:\Archivos de programa\Archivos comunes\SYSTEM\MSMAPI\3082\MAPIR.DLL
Window caption: ''
Window hwnd: 656426, processId: 3600, Name: OUTLLIB.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\OUTLLIB.dll
Window caption: ''
Window hwnd: 197770, processId: 3600, Name: MAPIR.DLL
File name: C:\Archivos de programa\Archivos comunes\SYSTEM\MSMAPI\3082\MAPIR.DLL
Window caption: ''
Window hwnd: 525058, processId: 3600, Name: mso.dll
File name: C:\Archivos de programa\Archivos comunes\Microsoft Shared\office11\mso.dll
Window caption: ''
Window hwnd: 590598, processId: 3600, Name: OUTLOOK.EXE
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\OUTLOOK.EXE
Window caption: ''
Window hwnd: 132176, processId: 2068, Name: WINMM.dll
File name: C:\WINDOWS\system32\WINMM.dll
Window caption: ''
Window hwnd: 132162, processId: 2640, Name: PCSuite.exe
File name: C:\Archivos de programa\Nokia\Nokia PC Suite 7\PCSuite.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 66354, processId: 2640, Name: PCSuite.exe
File name: C:\Archivos de programa\Nokia\Nokia PC Suite 7\PCSuite.exe
Window caption: ''
Window hwnd: 66352, processId: 2640, Name: PCSuite.exe
File name: C:\Archivos de programa\Nokia\Nokia PC Suite 7\PCSuite.exe
Window caption: ''
Window hwnd: 66336, processId: 3384, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 66332, processId: 3384, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 66328, processId: 3384, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 66190, processId: 2684, Name: PcSync2_spa.nlr
File name: C:\ARCHIVOS DE PROGRAMA\NOKIA\NOKIA PC SUITE 7\Lang\PcSync2_spa.nlr
Window caption: ''
Window hwnd: 66334, processId: 2068, Name: fxsst.dll
File name: C:\WINDOWS\system32\fxsst.dll
Window caption: ''
Window hwnd: 66324, processId: 3704, Name: MPAPI3s.exe
File name: C:\Archivos de programa\Archivos comunes\Nokia\MPAPI\MPAPI3s.exe
Window caption: ''
Window hwnd: 66318, processId: 3592, Name: NclMSBTSrv.exe
File name: C:\Archivos de programa\PC Connectivity Solution\Transports\NclMSBTSrv.exe
Window caption: ''
Window hwnd: 131820, processId: 3508, Name: NclRSSrv.exe
File name: C:\Archivos de programa\PC Connectivity Solution\Transports\NclRSSrv.exe
Window caption: ''
Window hwnd: 66280, processId: 3404, Name: NclUSBSrv.exe
File name: C:\Archivos de programa\PC Connectivity Solution\Transports\NclUSBSrv.exe
Window caption: ''
Window hwnd: 66250, processId: 2684, Name: NGSCM.DLL
File name: C:\Archivos de programa\Nokia\Nokia PC Suite 7\NGSCM.DLL
Window caption: ''
Window hwnd: 66256, processId: 2684, Name: COMCTL32.dll
File name: C:\WINDOWS\system32\COMCTL32.dll
Window caption: ''
Window hwnd: 66244, processId: 3208, Name: ServiceLayer.exe
File name: C:\Archivos de programa\PC Connectivity Solution\ServiceLayer.exe
Window caption: ''
Window hwnd: 262260, processId: 2640, Name: PCSuite.exe
File name: C:\Archivos de programa\Nokia\Nokia PC Suite 7\PCSuite.exe
Window caption: ''
Window hwnd: 66184, processId: 2684, Name: ole32.dll
File name: C:\WINDOWS\system32\ole32.dll
Window caption: ''
Window hwnd: 196836, processId: 2068, Name: webcheck.dll
File name: C:\WINDOWS\system32\webcheck.dll
Window caption: ''
Window hwnd: 66076, processId: 2512, Name: WorkFlowTray.exe
File name: C:\Archivos de programa\ScanSoft\OmniPagePro14.0\WorkFlowTray.exe
Window caption: ''
Window hwnd: 66078, processId: 2628, Name: MSUTB.dll
File name: C:\WINDOWS\system32\MSUTB.dll
Window caption: ''
Window hwnd: 66066, processId: 2584, Name: OpScheduler.exe
File name: C:\Archivos de programa\ScanSoft\OmniPagePro14.0\OpScheduler.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 66022, processId: 2384, Name: CLI.EXE
File name: C:\Archivos de programa\ATI Technologies\ATI.ACE\CLI.EXE
Window caption: ''
Window hwnd: 131298, processId: 2384, Name: CLI.EXE
File name: C:\Archivos de programa\ATI Technologies\ATI.ACE\CLI.EXE
Window caption: ''
Window hwnd: 131240, processId: 2352, Name: smax4pnp.exe
File name: C:\Archivos de programa\Analog Devices\Core\smax4pnp.exe
Window caption: ''
Window hwnd: 66008, processId: 2600, Name: SPrnAgent.exe
File name: C:\Archivos de programa\ScanSoft\OmniPagePro14.0\PdfPrn\SPrnAgent.exe
Window caption: ''
Window hwnd: 66014, processId: 2612, Name: bthprops.cpl
File name: C:\WINDOWS\system32\bthprops.cpl
Window caption: ''
Window hwnd: 66010, processId: 2612, Name: rundll32.exe
File name: C:\WINDOWS\system32\rundll32.exe
Window caption: ''
Window hwnd: 66172, processId: 2068, Name: NETSHELL.dll
File name: C:\WINDOWS\system32\NETSHELL.dll
Window caption: ''
Window hwnd: 66170, processId: 2068, Name: cscui.dll
File name: C:\WINDOWS\System32\cscui.dll
Window caption: ''
Window hwnd: 66148, processId: 2444, Name: COMCTL32.dll
File name: C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
Window caption: ''
Window hwnd: 131360, processId: 2444, Name: SHSTAT.EXE
File name: C:\Archivos de programa\McAfee\VirusScan Enterprise\SHSTAT.EXE
Window caption: ''
Window hwnd: 65978, processId: 2416, Name: UpdRes.dll
File name: C:\Archivos de programa\McAfee\Common Framework\040A\UpdRes.dll
Window caption: ''
Window hwnd: 66002, processId: 2416, Name: COMCTL32.dll
File name: C:\WINDOWS\system32\COMCTL32.dll
Window caption: ''
Window hwnd: 65954, processId: 2416, Name: COMCTL32.dll
File name: C:\WINDOWS\system32\COMCTL32.dll
Window caption: ''
Window hwnd: 65944, processId: 2416, Name: AgentRes.dll
File name: C:\Archivos de programa\McAfee\Common Framework\040A\AgentRes.dll
Window caption: ''
Window hwnd: 65882, processId: 2416, Name: UdaterUI.exe
File name: C:\Archivos de programa\McAfee\Common Framework\UdaterUI.exe
Window caption: ''
Window hwnd: 65886, processId: 2544, Name: McTray.exe
File name: C:\Archivos de programa\McAfee\Common Framework\McTray.exe
Window caption: ''
Window hwnd: 65868, processId: 2572, Name: Opware14.exe
File name: C:\Archivos de programa\ScanSoft\OmniPagePro14.0\Opware14.exe
Window caption: ''
Window hwnd: 65858, processId: 2444, Name: COMCTL32.dll
File name: C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2982_x-ww_ac3f9c03\COMCTL32.dll
Window caption: ''
Window hwnd: 65818, processId: 2376, Name: PDVDDXSrv.exe
File name: C:\Archivos de programa\CyberLink\PowerDVD DX\PDVDDXSrv.exe
Window caption: ''
Window hwnd: 65814, processId: 2376, Name: PDVDDXSrv.exe
File name: C:\Archivos de programa\CyberLink\PowerDVD DX\PDVDDXSrv.exe
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 65806, processId: 2376, Name: PDVDDXSrv.exe
File name: C:\Archivos de programa\CyberLink\PowerDVD DX\PDVDDXSrv.exe
Window caption: ''
Window hwnd: 65792, processId: 2400, Name: Acrotray.esp
File name: C:\Archivos de programa\Adobe\Acrobat 7.0\Distillr\Acrotray.esp
Window caption: ''
Window hwnd: 65752, processId: 2352, Name: smax4pnp.exe
File name: C:\Archivos de programa\Analog Devices\Core\smax4pnp.exe
Window caption: ''
Window hwnd: 65708, processId: 2360, Name: Iaanotif.exe
File name: C:\Archivos De Programa\Intel\Intel Matrix Storage Manager\Iaanotif.exe
Window caption: ''
Window hwnd: 262204, processId: 2068, Name: SHLWAPI.dll
File name: C:\WINDOWS\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 65668, processId: 2068, Name: SHLWAPI.dll
File name: C:\WINDOWS\system32\SHLWAPI.dll
Window caption: ''
Window hwnd: 131182, processId: 2068, Name: UNKNOWN
File name: UNKNOWN
Window caption: ''
Window hwnd: 131186, processId: 2068, Name: Explorer.EXE
File name: C:\WINDOWS\Explorer.EXE
Window caption: ''
Window hwnd: 65578, processId: 1028, Name: Ati2evxx.exe
File name: C:\WINDOWS\system32\Ati2evxx.exe
Window caption: ''
Window hwnd: 66178, processId: 2684, Name: gdiplus.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
Window caption: ''
Window hwnd: 66396, processId: 2384, Name: gdiplus.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
Window caption: ''
Window hwnd: 1049612, processId: 3600, Name: OUTLLIB.dll
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\OUTLLIB.dll
Window caption: ''
Window hwnd: 984376, processId: 3000, Name: GdiPlus.DLL
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\GdiPlus.DLL
Window caption: ''
Window hwnd: 786774, processId: 2068, Name: BROWSEUI.dll
File name: C:\WINDOWS\system32\BROWSEUI.dll
Window caption: 'M:\Escritorio\20 Solar\80 Rendimiento termico colector CCP\10 Medicion dimensional colector\10 '
Window hwnd: 2098678, processId: 2068, Name: gdiplus.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
Window caption: ''
Window hwnd: 1312088, processId: 3596, Name: gdiplus.dll
File name: C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.2180_x-ww_522f9f82\gdiplus.dll
Window caption: ''
Window hwnd: 1115476, processId: 3872, Name: theide.exe
File name: C:\Desarrollo\upp\theide.exe
Window caption: 'Database - GUI - TheIDE - [Help Topics] { MyApps }'
Window hwnd: 2623058, processId: 3596, Name: IEFRAME.dll
File name: C:\WINDOWS\system32\IEFRAME.dll
Window caption: '::Biansa:: - Microsoft Internet Explorer proporcionado por SENER INGENIERIA Y SISTEMAS'
Window hwnd: 2688698, processId: 2788, Name: GdiPlus.DLL
File name: C:\Archivos de programa\Microsoft Office\OFFICE11\GdiPlus.DLL
Window caption: ''
Window hwnd: 329004, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 65682, processId: 2068, Name: SHELL32.dll
File name: C:\WINDOWS\system32\SHELL32.dll
Window caption: 'Program Manager'
Press enter to continue...
Process list:
Id 0: Priority: Not accesible, Program: [System Process]
Id 4: Priority: 5, Program: System
Id 676: Priority: 5, Program: smss.exe
Id 780: Priority: Not accesible, Program: csrss.exe
Id 808: Priority: 8, Program: winlogon.exe
Id 852: Priority: 5, Program: services.exe
Id 864: Priority: 5, Program: lsass.exe
Id 1028: Priority: 5, Program: ati2evxx.exe
Id 1044: Priority: 5, Program: svchost.exe
Id 1108: Priority: Not accesible, Program: svchost.exe
Id 1244: Priority: 5, Program: svchost.exe
Id 1380: Priority: Not accesible, Program: svchost.exe
Id 1420: Priority: Not accesible, Program: svchost.exe
Id 1580: Priority: 5, Program: spoolsv.exe
Id 1712: Priority: 5, Program: ASFAgent.exe
Id 1760: Priority: 5, Program: CATSysDemon.exe
Id 1788: Priority: Not accesible, Program: svchost.exe
Id 1824: Priority: 5, Program: GoogleUpdaterService.exe
Id 1856: Priority: 5, Program: IAANTmon.exe
Id 1904: Priority: 5, Program: FrameworkService.exe
Id 1936: Priority: 8, Program: Mcshield.exe
Id 2012: Priority: 5, Program: VsTskMgr.exe
Id 200: Priority: 5, Program: MDM.EXE
Id 592: Priority: Not accesible, Program: naPrdMgr.exe
Id 2020: Priority: Not accesible, Program: alg.exe
Id 2068: Priority: 5, Program: explorer.exe
Id 2352: Priority: 5, Program: smax4pnp.exe
Id 2360: Priority: 5, Program: IAAnotif.exe
Id 2376: Priority: 5, Program: PDVDDXSrv.exe
Id 2384: Priority: 5, Program: CLI.exe
Id 2400: Priority: 5, Program: acrotray.exe
Id 2416: Priority: 5, Program: UdaterUI.exe
Id 2444: Priority: 5, Program: shstat.exe
Id 2512: Priority: 5, Program: WorkFlowTray.exe
Id 2544: Priority: 5, Program: Mctray.exe
Id 2572: Priority: 5, Program: opware14.exe
Id 2584: Priority: 5, Program: OpScheduler.exe
Id 2600: Priority: 5, Program: SPrnAgent.exe
Id 2612: Priority: 5, Program: rundll32.exe
Id 2628: Priority: 5, Program: ctfmon.exe
Id 2640: Priority: 5, Program: PCSuite.exe
Id 2684: Priority: 5, Program: PcSync2.exe
Id 3208: Priority: 5, Program: ServiceLayer.exe
Id 3384: Priority: 5, Program: ntvdm.exe
Id 3404: Priority: 8, Program: NclUSBSrv.exe
Id 3508: Priority: 8, Program: NclRSSrv.exe
Id 3592: Priority: 8, Program: NclMSBTSrv.exe
Id 3704: Priority: 5, Program: MPAPI3s.exe
Id 2276: Priority: 5, Program: CLI.exe
Id 3256: Priority: 8, Program: WISPTIS.EXE
Id 436: Priority: 5, Program: svchost.exe
Id 3600: Priority: 5, Program: OUTLOOK.EXE
Id 2244: Priority: 5, Program: wordpad.exe
Id 3000: Priority: 5, Program: WINWORD.EXE
Id 3596: Priority: 5, Program: iexplore.exe
Id 3872: Priority: 5, Program: theide.exe
Id 468: Priority: 5, Program: Database.exe
Id 2788: Priority: 5, Program: EXCEL.EXE
Id 3548: Priority: 5, Program: theide.exe
Id 164: Priority: 5, Program: mspdbsrv.exe
Id 3148: Priority: 8, Program: SysInfo demo console.exe
Press enter to end...

View file

@ -1,460 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/ubuntu/Desktop
Programs: /usr/bin
Application Data: /home/ubuntu
Music:
Pictures:
Video:
Personal:
Templates:
Download:
Temp: /home/ubuntu
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.830 GHz
Battery info
There is no battery
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 28%
Total physical memory: 2113114112 bytes (2.0Gb)
Free physical memory: 1509265408 bytes (1.4Gb)
Total paging file: 273801216 bytes (261.1Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.27-7-generic #1 SMP Fri Oct 24 06:42:44 UTC 2008,
architecture: i686
Distro: ubuntu, version: 8.10
Desktop: xfce, version:
Program compiled with gnuc version 40103. Compilation date: Dec 2 2008
Default exes info:
Default program for '.html' is 'firefox.desktop'
Default program for '.doc' is 'abiword.desktop'
Default program for '.png' is 'gpicview.desktop'
Default program for '.pdf' is 'evince.desktop'
Default program for '.txt' is 'mousepad.desktop'
Default program for '.xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/cdrom'
Type: 'Optical', Volume: 'Xubuntu 8.10 i386',
MaxName: 255, File System: iso9660
Free Bytes User: 0 (0b)
Total Bytes User: 618119168 (589.5Mb), Total Free Bytes: 0 (0b)
Drive path:'/media/disk'
Type: 'Hard', Volume: '',
MaxName: 255, File System: ext3
Free Bytes User: 1443139584 (1.3Gb)
Total Bytes User: 2031824896 (1.9Gb), Total Free Bytes: 1443139584 (1.3Gb)
Drive path:'/media/disk-1'
Type: 'Hard', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 475602944 (453.6Mb)
Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 475602944 (453.6Mb)
Other Info:
Process Id: 8327
Process name: 'SysInfoDemoConsole'
Process file name: '/media/disk/SysInfoDemoConsole'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Ending process
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 122, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777892, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 27262979, processId: 7840, Name: xfdesktop
File name: /usr/bin/xfdesktop
Window caption: 'Escritorio '
Window hwnd: 27262980, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778118, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778119, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778120, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778121, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778122, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778123, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778124, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778125, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778126, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778127, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778128, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778129, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778130, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778131, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778132, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971523, processId: 7810, Name: Thunar
File name: /usr/bin/Thunar
Window caption: 'disk - Administrador de Archivos '
Window hwnd: 20971524, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 20971575, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971590, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971592, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971601, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971602, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971603, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971563, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971574, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778278, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778279, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778280, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778281, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778282, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778283, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778284, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778285, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778286, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778287, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778288, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778289, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 16778290, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778291, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778292, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971963, processId: 7810, Name: Thunar
File name: /usr/bin/Thunar
Window caption: 'disk-1 - Administrador de Archivos '
Window hwnd: 20971964, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971978, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971988, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971990, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971999, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972000, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972001, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971968, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20972127, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971977, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778472, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778473, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778474, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778475, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778476, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778477, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 16778478, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778479, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778480, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778481, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778482, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778483, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778484, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778485, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16778486, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040202, processId: 8286, Name: xfce4-terminal
File name: /usr/bin/xfce4-terminal
Window caption: 'Terminal - ubuntu@ubuntu: /media/disk '
Window hwnd: 44040203, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040259, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040255, processId: 0, Name:
File name:
Window caption: 'ubuntu@ubuntu: /media/disk '
Window hwnd: 44040266, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777857, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874429, processId: 7802, Name: xfce4-panel
File name: /usr/bin/xfce4-panel
Window caption: 'Xfce Panel '
Window hwnd: 18874430, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874432, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874433, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874435, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 18874436, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874439, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777824, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874400, processId: 7802, Name: xfce4-panel
File name: /usr/bin/xfce4-panel
Window caption: 'Xfce Panel '
Window hwnd: 18874401, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874407, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874408, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874410, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874417, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874419, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874420, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874422, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874423, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874427, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777425, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777424, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777423, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777422, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485763, processId: 7739, Name:
File name:
Window caption: 'gnome-screensaver '
Press enter to continue with the next 20 windows...
Window hwnd: 16777390, processId: 7794, Name: xfwm4
File name: /usr/bin/xfwm4
Window caption: 'xfwm4 '
Window hwnd: 16777391, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue...
Process list:
Id 6436: Priority: 5, Program: /bin/bash
Id 6437: Priority: 5, Program: /bin/bash
Id 6438: Priority: 5, Program: /bin/bash
Id 6439: Priority: 5, Program: /bin/bash
Id 6440: Priority: 5, Program: /bin/bash
Id 7533: Priority: 5, Program: /bin/bash
Id 7620: Priority: 5, Program: /bin/dash
Id 7730: Priority: 5, Program: /usr/bin/dbus-launch
Id 7731: Priority: 5, Program: /bin/dbus-daemon
Id 7743: Priority: 5, Program: /usr/bin/xfce4-session
Id 7752: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 7753: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 7755: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 7760: Priority: 5, Program: /usr/bin/xfce-mcs-manager
Id 7792: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 7794: Priority: 5, Program: /usr/bin/xfwm4
Id 7802: Priority: 5, Program: /usr/bin/xfce4-panel
Id 7810: Priority: 5, Program: /usr/bin/Thunar
Id 7824: Priority: 5, Program: /usr/lib/gamin/gam_server
Id 7835: Priority: 5, Program: /usr/lib/xfce4/panel-plugins/xfce4-menu-plugin
Id 7836: Priority: 5, Program: /usr/lib/xfce4/panel-plugins/xfce4-places-plugin
Id 7840: Priority: 5, Program: /usr/bin/xfdesktop
Id 7850: Priority: 5, Program: /usr/lib/xfce4/panel-plugins/xfce4-mixer-plugin
Id 7857: Priority: 5, Program: /usr/lib/thunar/xfce4/panel-plugins/thunar-tpa
Id 7866: Priority: 5, Program: /usr/bin/nm-applet
Id 7868: Priority: 5, Program: /usr/bin/python2.5
Id 7870: Priority: 5, Program: /usr/bin/update-notifier
Id 7883: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 7918: Priority: 5, Program: /usr/lib/notification-daemon/notification-daemon
Id 8286: Priority: 5, Program: /usr/bin/xfce4-terminal
Id 8292: Priority: 5, Program: /bin/bash
Id 8327: Priority: 5, Program: /media/disk/SysInfoDemoConsole
Press enter to end...

View file

@ -1,454 +0,0 @@
Introduce enter or (l) to log off, (r) to reboot or (s) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/aupa/Escritorio
Programs: /usr/bin
Application Data: /home/aupa
Music: /home/aupa/Escritorio
Pictures: /home/aupa/Escritorio
Video: /home/aupa/Escritorio
Personal: /home/aupa/Escritorio
Templates: /home/aupa/Escritorio
Download: /home/aupa/Escritorio
Temp: /home/aupa
Os: /bin
System:
System info:
System manufacturer 'TOSHIBA', product name 'Satellite A300',
version 'PSAJ0E-014013CE', number of processors: 2
Real CPU Speed: 1.829 GHz
Battery info
Working with battery: no, Percentage: 100%, Remaining: 10000 min
Bios version 'V2.70 ',
release date '04/14/2008'
Processor #0: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1000 MHz
Processor #1: Vendor 'GenuineIntel',
identifier 'Intel(R) Core(TM)2 Duo CPU T5550 @ 1.83GHz',
architecture 'i686
Family 6 Model 15 Stepping 13', speed 1833 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 55%
Total physical memory: 2116001792 bytes (2.0Gb)
Free physical memory: 935841792 bytes (892.5Mb)
Total paging file: 406704128 bytes (387.9Mb)
Free paging file: 0 bytes (0b)
Total virtual memory: 4721266688 bytes (4.4Gb)
Free virtual memory: 4721266688 bytes (4.4Gb)
Os info:
Kernel: Linux, version: 2.6.24-21-generic #1 SMP Tue Oct 21 23:43:45 UTC 2008,
architecture: i686
Distro: ubuntu, version: 8.04
Desktop: gnome, version: 2.22.3
Program compiled with gnuc version 40103. Compilation date: Nov 18 2008
Default exes info:
Default program for 'html' is 'firefox.desktop'
Default program for 'doc' is 'ooo-writer.desktop'
Default program for 'png' is 'eog.desktop'
Default program for 'pdf' is 'evince.desktop'
Default program for 'txt' is 'gedit.desktop'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'Linux',
MaxName: 255, File System: ext3
Free Bytes User: 46841184256 (43.6Gb)
Total Bytes User: 54519554048 (50.8Gb), Total Free Bytes: 46841184256 (43.6Gb)
Drive path:'/home'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 71851614208 (66.9Gb)
Total Bytes User: 130094362624 (121.2Gb), Total Free Bytes: 71851614208 (66.9Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '',
MaxName: 260, File System: vfat
Free Bytes User: 1947697152 (1.8Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 1947697152 (1.8Gb)
Other Info:
Process Id: 7572
Process name: 'demo'
Process file name: '/home/100Aplicaciones/exe/demo'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Process terminated
Press enter to continue...
Windows list:
Window hwnd: 88, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874767, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 4194305, processId: 5967, Name: seahorse-agent
File name: /usr/bin/gnome-session
Window caption: 'seahorse-agent '
Window hwnd: 18874768, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291457, processId: 5967, Name: x-session-manager
File name: /usr/bin/gnome-session
Window caption: 'x-session-manager '
Window hwnd: 18874769, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388609, processId: 6032, Name: gnome-settings-daemon
File name: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Window caption: 'gnome-settings-daemon '
Window hwnd: 18874770, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388611, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874771, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 8388612, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874772, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 12582913, processId: 6055, Name: gnome-screensaver
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 12582915, processId: 6055, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 18874773, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680065, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874774, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777217, processId: 6064, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874775, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 20971521, processId: 6137, Name: bluetooth-applet
File name: /usr/bin/bluetooth-applet
Window caption: 'Miniaplicación para Bluetooth '
Window hwnd: 18874776, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 23068673, processId: 6141, Name: update-notifier
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874369, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874370, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874388, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874389, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874390, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874391, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874392, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874393, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874394, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874395, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874396, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777220, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874777, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 33554433, processId: 6154, Name: gnome-volume-manager
File name:
Window caption: 'gnome-volume-manager '
Window hwnd: 18874778, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 25165825, processId: 6147, Name: tracker-applet
File name: /usr/bin/tracker-applet
Window caption: 'Tracker '
Window hwnd: 18874779, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 37748737, processId: 6146, Name: evolution-alarm-notify
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 18874780, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 29360129, processId: 6149, Name: gnome-power-manager
File name:
Window caption: 'Gestión de energía '
Window hwnd: 18874781, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 35651585, processId: 6160, Name: nm-applet
File name: /usr/bin/nm-applet
Window caption: 'nm-applet '
Window hwnd: 18874782, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39845889, processId: 6162, Name: gdl_box
File name: /opt/google/desktop/bin/gdl_box
Window caption: 'gdl_box '
Window hwnd: 33554435, processId: 6179, Name:
File name: /usr/lib/gnome-volume-manager/gnome-volume-manager
Window caption: 'gnome-volume-manager '
Window hwnd: 23068675, processId: 6141, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874785, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 44040193, processId: 6159, Name: applet.py
File name: /usr/bin/python2.5
Window caption: 'applet.py '
Window hwnd: 18874787, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 48234497, processId: 6187, Name: gdesklets-daemon
File name:
Window caption: 'gdesklets-daemon '
Window hwnd: 16777389, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16777250, processId: 6064, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Escritorio '
Window hwnd: 18874877, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 62918231, processId: 0, Name: theide-svn
File name:
Window caption: 'SysInfo demo non-gui - - TheIDE - [/home/100Aplicaciones/SysInfo/SysInfo.cpp UTF-8] { MyApps } '
Window hwnd: 18874993, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 31457316, processId: 7570, Name: xterm
File name:
Window caption: 'bash '
Window hwnd: 14680067, processId: 6062, Name: gnome-panel
File name:
Window caption: 'Panel lateral expandido inferior '
Window hwnd: 39845893, processId: 6162, Name: gdl_box
File name: /opt/google/desktop/bin/gdl_box
Window caption: 'Cuadro de búsqueda rápida '
Window hwnd: 18874789, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 50331649, processId: 6233, Name: evolution-exchange-storage
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 18874790, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 52428801, processId: 6266, Name: gtk-window-decorator
File name: /usr/bin/gtk-window-decorator
Window caption: 'gtk-window-decorator '
Window hwnd: 52428803, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 52428870, processId: 6266, Name: gtk-window-decorator
File name: /usr/bin/gtk-window-decorator
Window caption: 'gtk-window-decorator '
Window hwnd: 52429196, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680113, processId: 6062, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 16777468, processId: 6064, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 37748739, processId: 6146, Name:
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 23068705, processId: 6141, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 18874804, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 54525953, processId: 6351, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 18874806, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 56623105, processId: 6348, Name: gweather-applet-2
File name: /usr/lib/gnome-applets/gweather-applet-2
Window caption: 'gweather-applet-2 '
Window hwnd: 14680319, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874814, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 58720257, processId: 6359, Name: mixer_applet2
File name: /usr/lib/gnome-applets/mixer_applet2
Window caption: 'Miniaplicación del volumen '
Window hwnd: 18874816, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 60817409, processId: 6363, Name: fast-user-switch-applet
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 54526078, processId: 6351, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Press enter to continue with the next 20 windows...
Window hwnd: 14680473, processId: 6062, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 54526214, processId: 6351, Name:
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 14682855, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 14683126, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 29360163, processId: 6181, Name:
File name: /usr/bin/gnome-power-manager
Window caption: 'Gestión de energía '
Window hwnd: 60817895, processId: 6363, Name:
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 50331651, processId: 6233, Name:
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 14683218, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 14683291, processId: 6062, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874859, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 62914561, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62914563, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62915607, processId: 6411, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 62915643, processId: 6411, Name:
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 48234499, processId: 6496, Name:
File name: /usr/bin/python2.5
Window caption: 'gdesklets-daemon '
Window hwnd: 62924205, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 29360192, processId: 6181, Name: gnome-power-manager
File name: /usr/bin/gnome-power-manager
Window caption: 'Brillo '
Press enter to continue...
Process list:
Id 5967: Priority: 5, Program: /usr/bin/gnome-session
Id 6017: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 6025: Priority: 5, Program: /usr/bin/seahorse-agent
Id 6028: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 6031: Priority: 5, Program: /usr/bin/dbus-daemon
Id 6032: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 6047: Priority: 5, Program: /usr/lib/pulseaudio/pulse/gconf-helper
Id 6060: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 6061: Priority: 5, Program: /bin/dash
Id 6064: Priority: 5, Program: /usr/bin/nautilus
Id 6068: Priority: 5, Program: /usr/lib/bonobo-activation/bonobo-activation-server
Id 6095: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 6117: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 6136: Priority: 5, Program: /usr/bin/compiz.real
Id 6137: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 6141: Priority: 5, Program: /usr/bin/update-notifier
Id 6146: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-alarm-notify
Id 6147: Priority: 5, Program: /usr/bin/tracker-applet
Id 6152: Priority: 1, Program: /usr/bin/trackerd
Id 6159: Priority: 5, Program: /usr/bin/python2.5
Id 6160: Priority: 5, Program: /usr/bin/nm-applet
Id 6162: Priority: 5, Program: /opt/google/desktop/bin/gdl_box
Id 6167: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 6177: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 6178: Priority: 5, Program: /opt/google/desktop/bin/gdl_service
Id 6179: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 6181: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 6217: Priority: 5, Program: /usr/lib/evolution/evolution-data-server-2.22
Id 6223: Priority: 5, Program: /opt/google/desktop/bin/gdl_config
Id 6224: Priority: 5, Program: /opt/google/desktop/bin/gdl_indexer
Id 6225: Priority: 5, Program: /opt/google/desktop/bin/gdl_fs_crawler
Id 6233: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-exchange-storage
Id 6263: Priority: 5, Program: /bin/dash
Id 6264: Priority: 5, Program: /bin/dash
Id 6266: Priority: 5, Program: /usr/bin/gtk-window-decorator
Id 6348: Priority: 5, Program: /usr/lib/gnome-applets/gweather-applet-2
Id 6351: Priority: 5, Program: /usr/lib/gnome-applets/trashapplet
Id 6359: Priority: 5, Program: /usr/lib/gnome-applets/mixer_applet2
Id 6363: Priority: 5, Program: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Id 6411: Priority: 5, Program: /usr/bin/theide-svn
Id 6496: Priority: 5, Program: /usr/bin/python2.5
Id 7571: Priority: 5, Program: /bin/bash
Id 7572: Priority: 5, Program: /home/100Aplicaciones/exe/demo
Press enter to end...

View file

@ -1,475 +0,0 @@
Introduce enter or (L) to log off, (R) to reboot or (S) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/aupa/Escritorio
Programs: /usr/bin
Application Data: /home/aupa
Music: /home/aupa/
Pictures: /home/aupa/
Video: /home/aupa/
Personal: /home/aupa/
Templates: /home/aupa/
Download: /home/aupa/Escritorio
Temp: /home/aupa
Os: /bin
System:
System info:
System manufacturer 'Gigabyte Technology Co., Ltd.', product name 'M61P-S3',
version ' ', number of processors: 2
Real CPU Speed: 1.068 GHz
Battery info
There is no battery
Bios version 'F5',
release date '06/21/2007'
Processor #0: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 1000 MHz
Processor #1: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 1000 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 92%
Total physical memory: 1053753344 bytes (1004.9Mb)
Free physical memory: 78041088 bytes (74.4Mb)
Total paging file: 296697856 bytes (283.0Mb)
Free paging file: 364544 bytes (356.0Kb)
Total virtual memory: 1998733312 bytes (1.9Gb)
Free virtual memory: 1951297536 bytes (1.8Gb)
Os info:
Kernel: Linux, version: 2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008,
architecture: x86_64
Distro: Ubuntu, version: 8.04
Desktop: gnome, version: 2.22.3
Program compiled with gnuc version 40103. Compilation date: Nov 16 2008
Default exes info:
Default program for 'html' is 'firefox.desktop
'
Default program for 'doc' is 'ooo-writer.desktop
'
Default program for 'xls' is 'ooo-calc.desktop
'
Default program for 'pdf' is 'evince.desktop
'
Default program for 'txt' is 'gedit.desktop
'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'MyLinux',
MaxName: 255, File System: ext3
Free Bytes User: 20574494720 (19.2Gb)
Total Bytes User: 29760741376 (27.7Gb), Total Free Bytes: 20574494720 (19.2Gb)
Drive path:'/home'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 877244416 (836.6Mb)
Total Bytes User: 191534055424 (178.4Gb), Total Free Bytes: 877244416 (836.6Mb)
Drive path:'/media/DATA'
Type: 'Hard', Volume: 'DATA',
MaxName: 255, File System: fuseblk
Free Bytes User: 264536981504 (246.4Gb)
Total Bytes User: 750153728000 (698.6Gb), Total Free Bytes: 264536981504 (246.4Gb)
Drive path:'/media/Unidad100'
Type: 'Hard', Volume: 'Unidad100',
MaxName: 255, File System: fuseblk
Free Bytes User: 63337431040 (59.0Gb)
Total Bytes User: 100027596800 (93.2Gb), Total Free Bytes: 63337431040 (59.0Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '/dev/sda1 on /media/MyWindows type fuseblk (rw,nosuid,nodev,noatime,allow_other,blksize=4096) [MyWindows',
MaxName: 260, File System: vfat
Free Bytes User: 2000748544 (1.9Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 2000748544 (1.9Gb)
Drive path:'/media/MyWindows'
Type: 'Hard', Volume: 'MyWindows',
MaxName: 255, File System: fuseblk
Free Bytes User: 7614705664 (7.1Gb)
Total Bytes User: 25004814336 (23.3Gb), Total Free Bytes: 7614705664 (7.1Gb)
Other Info:
Process Id: 15882
Process name: 'Demo_32Ubuntu'
Process file name: '/media/disk/Demo_32Ubuntu'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Window was closed before!
Press enter to continue...
Windows list:
Window hwnd: 135, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291457, processId: 6058, Name: seahorse-agent
File name: /usr/bin/gnome-session
Window caption: 'seahorse-agent '
Window hwnd: 8388609, processId: 6058, Name: x-session-manager
File name: /usr/bin/gnome-session
Window caption: 'x-session-manager '
Window hwnd: 10485761, processId: 6125, Name: gnome-settings-daemon
File name: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Window caption: 'gnome-settings-daemon '
Window hwnd: 10485763, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485764, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680065, processId: 6144, Name: gnome-screensaver
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 14680067, processId: 6144, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 16777217, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874369, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 20971521, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874371, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874372, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874373, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874374, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874382, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874383, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 23068673, processId: 6162, Name: bluetooth-applet
File name: /usr/bin/bluetooth-applet
Window caption: 'Miniaplicación para Bluetooth '
Window hwnd: 25165825, processId: 6165, Name: update-notifier
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 27262977, processId: 6174, Name: tracker-applet
File name: /usr/bin/tracker-applet
Window caption: 'Tracker '
Window hwnd: 29360129, processId: 6180, Name: gnome-volume-manager
File name:
Window caption: 'gnome-volume-manager '
Press enter to continue with the next 20 windows...
Window hwnd: 29360131, processId: 6183, Name:
File name: /usr/lib/gnome-volume-manager/gnome-volume-manager
Window caption: 'gnome-volume-manager '
Window hwnd: 31457281, processId: 6177, Name: gnome-power-manager
File name:
Window caption: 'Gestión de energía '
Window hwnd: 33554433, processId: 6186, Name: nm-applet
File name: /usr/bin/nm-applet
Window caption: 'nm-applet '
Window hwnd: 25165827, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 35651585, processId: 6169, Name: evolution-alarm-notify
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 41943041, processId: 6205, Name: evolution-exchange-storage
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 37748737, processId: 6182, Name: applet.py
File name: /usr/bin/python2.5
Window caption: 'applet.py '
Window hwnd: 20971524, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20971551, processId: 6152, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Escritorio '
Window hwnd: 18946398, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18887019, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18960035, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18949502, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19061164, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19051906, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19102378, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19051519, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19149016, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19130308, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777219, processId: 6151, Name: gnome-panel
File name:
Window caption: 'Panel lateral expandido inferior '
Press enter to continue with the next 20 windows...
Window hwnd: 16777263, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971689, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20971690, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 31457312, processId: 6189, Name:
File name: /usr/bin/gnome-power-manager
Window caption: 'Gestión de energía '
Window hwnd: 25165854, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 41943043, processId: 6205, Name:
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 35651587, processId: 6169, Name:
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 39845889, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16777404, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 46137345, processId: 6255, Name: mixer_applet2
File name: /usr/lib/gnome-applets/mixer_applet2
Window caption: 'Miniaplicación del volumen '
Window hwnd: 50331649, processId: 6258, Name: fast-user-switch-applet
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 50331651, processId: 6258, Name:
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 16778439, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971924, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977589, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977638, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16785299, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785427, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785498, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 54525953, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Press enter to continue with the next 20 windows...
Window hwnd: 54526066, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 60817409, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 39846545, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 39846657, processId: 6243, Name:
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 55661939, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 44040193, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16829040, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 52428801, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52428808, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52430386, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808099, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808378, processId: 14146, Name:
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 44040224, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 44102499, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16778615, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 39849450, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 20991416, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16861094, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16778490, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16861234, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Press enter to continue with the next 20 windows...
Window hwnd: 21226171, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21214931, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 39851771, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16877493, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16778004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21578790, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21026155, processId: 6152, Name: file_progress
File name: /usr/bin/nautilus
Window caption: 'Operaciones sobre archivos '
Window hwnd: 21204514, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 55195004, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 55195057, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 16867956, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16783981, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16877324, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21042423, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 56623105, processId: 15880, Name: gedit
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 56623459, processId: 15880, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 56623460, processId: 15880, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Press enter to continue...
Process list:
Id 6058: Priority: 5, Program: /usr/bin/gnome-session
Id 6112: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 6118: Priority: 5, Program: /usr/bin/seahorse-agent
Id 6121: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 6124: Priority: 5, Program: /usr/bin/dbus-daemon
Id 6125: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 6136: Priority: 5, Program: /usr/lib/pulseaudio/pulse/gconf-helper
Id 6147: Priority: 5, Program: /usr/bin/metacity
Id 6152: Priority: 5, Program: /usr/bin/nautilus
Id 6153: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 6160: Priority: 5, Program: /usr/lib/bonobo-activation/bonobo-activation-server
Id 6162: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 6165: Priority: 5, Program: /usr/bin/update-notifier
Id 6169: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-alarm-notify
Id 6173: Priority: 5, Program: /usr/bin/obex-data-server
Id 6174: Priority: 5, Program: /usr/bin/tracker-applet
Id 6176: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 6179: Priority: 1, Program: /usr/bin/trackerd
Id 6182: Priority: 5, Program: /usr/bin/python2.5
Id 6183: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 6186: Priority: 5, Program: /usr/bin/nm-applet
Id 6189: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 6193: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 6205: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-exchange-storage
Id 6208: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 6212: Priority: 5, Program: /usr/lib/evolution/evolution-data-server-2.22
Id 6230: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 6243: Priority: 5, Program: /usr/lib/gnome-applets/trashapplet
Id 6255: Priority: 5, Program: /usr/lib/gnome-applets/mixer_applet2
Id 6258: Priority: 5, Program: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Id 6379: Priority: 5, Program: /usr/bin/gnome-terminal
Id 6382: Priority: 5, Program: /bin/bash
Id 14004: Priority: 5, Program: /bin/bash
Id 14029: Priority: 5, Program: /bin/bash
Id 14143: Priority: 5, Program: /usr/bin/transmission
Id 14146: Priority: 5, Program: /usr/bin/amule
Id 15017: Priority: 5, Program: /bin/bash
Id 15401: Priority: 5, Program: /usr/lib/gnome-vfs-2.0/gnome-vfs-daemon
Id 15408: Priority: 5, Program: /bin/bash
Id 15880: Priority: 5, Program: /usr/bin/gedit
Id 15882: Priority: 5, Program: /media/disk/Demo_32Ubuntu
Press enter to end...

View file

@ -1,488 +0,0 @@
Introduce enter or (L) to log off, (R) to reboot or (S) to shutdown
Introduce number of test cycles or just type enter to run it once:
SysInfo functions demo
Special folders
Desktop: /home/aupa/Escritorio
Programs: /usr/bin
Application Data: /home/aupa
Music: /home/aupa/
Pictures: /home/aupa/
Video: /home/aupa/
Personal: /home/aupa/
Templates: /home/aupa/
Download: /home/aupa/Escritorio
Temp: /home/aupa
Os: /bin
System:
System info:
System manufacturer 'Gigabyte Technology Co., Ltd.', product name 'M61P-S3',
version ' ', number of processors: 2
Real CPU Speed: 2.115 GHz
Battery info
There is no battery
Bios version 'F5',
release date '06/21/2007'
Processor #0: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 2100 MHz
Processor #1: Vendor 'AuthenticAMD',
identifier 'AMD Athlon(tm) 64 X2 Dual Core Processor 4000+',
architecture 'x86_64
Family 15 Model 107 Stepping 1', speed 2100 MHz
Press enter to continue...
Memory info:
Percent of memory in use: 99%
Total physical memory: 1053753344 bytes (1004.9Mb)
Free physical memory: 9314304 bytes (8.9Mb)
Total paging file: 424820736 bytes (405.1Mb)
Free paging file: 13692928 bytes (13.1Mb)
Total virtual memory: 1998733312 bytes (1.9Gb)
Free virtual memory: 1854971904 bytes (1.7Gb)
Os info:
Kernel: Linux, version: 2.6.24-21-generic #1 SMP Tue Oct 21 23:09:30 UTC 2008,
architecture: x86_64
Distro: Ubuntu, version: 8.04
Desktop: gnome, version: 2.22.3
Program compiled with gnuc version 40103. Compilation date: Nov 16 2008
Default exes info:
Default program for 'html' is 'firefox.desktop
'
Default program for 'doc' is 'ooo-writer.desktop
'
Default program for 'xls' is 'ooo-calc.desktop
'
Default program for 'pdf' is 'evince.desktop
'
Default program for 'txt' is 'gedit.desktop
'
Default program for 'xyz' is ''
Press enter to continue...
Drives list:
Drive path:'/'
Type: 'Hard', Volume: 'MyLinux',
MaxName: 255, File System: ext3
Free Bytes User: 20574490624 (19.2Gb)
Total Bytes User: 29760741376 (27.7Gb), Total Free Bytes: 20574490624 (19.2Gb)
Drive path:'/home'
Type: 'Hard', Volume: 'Compartido',
MaxName: 255, File System: ext3
Free Bytes User: 835981312 (797.3Mb)
Total Bytes User: 191534055424 (178.4Gb), Total Free Bytes: 835981312 (797.3Mb)
Drive path:'/media/DATA'
Type: 'Hard', Volume: 'DATA',
MaxName: 255, File System: fuseblk
Free Bytes User: 261689913344 (243.7Gb)
Total Bytes User: 750153728000 (698.6Gb), Total Free Bytes: 261689913344 (243.7Gb)
Drive path:'/media/disk'
Type: 'Removable', Volume: '/dev/sda1 on /media/MyWindows type fuseblk (rw,nosuid,nodev,noatime,allow_other,blksize=4096) [MyWindows',
MaxName: 260, File System: vfat
Free Bytes User: 2000715776 (1.9Gb)
Total Bytes User: 2054717440 (1.9Gb), Total Free Bytes: 2000715776 (1.9Gb)
Drive path:'/media/MyWindows'
Type: 'Hard', Volume: 'MyWindows',
MaxName: 255, File System: fuseblk
Free Bytes User: 7614705664 (7.1Gb)
Total Bytes User: 25004814336 (23.3Gb), Total Free Bytes: 7614705664 (7.1Gb)
Other Info:
Process Id: 16554
Process name: 'SysInfo demo non-gui'
Process file name: '/home/aupa/upp/out/GCC.Debug.Debug_full.Shared/SysInfo demo non-gui'
Process priority is: 5
Now changed to high priority: No
Process priority is: 5
Launch file 'test.txt':
If modify 'test.txt' it will ask you to save or not the file
If you answer Yes or No the program will be terminated
If you answer Cancel or wait more than 5 seconds the program will be killed
Press enter to terminate 'test.txt'
Window was closed before!
Press enter to continue...
Windows list:
Window hwnd: 135, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 6291457, processId: 6058, Name: seahorse-agent
File name: /usr/bin/gnome-session
Window caption: 'seahorse-agent '
Window hwnd: 8388609, processId: 6058, Name: x-session-manager
File name: /usr/bin/gnome-session
Window caption: 'x-session-manager '
Window hwnd: 10485761, processId: 6125, Name: gnome-settings-daemon
File name: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Window caption: 'gnome-settings-daemon '
Window hwnd: 10485763, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 10485764, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 14680065, processId: 6144, Name: gnome-screensaver
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 14680067, processId: 6144, Name:
File name:
Window caption: 'gnome-screensaver '
Window hwnd: 16777217, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 18874369, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 20971521, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 18874371, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874372, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874373, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874374, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874382, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18874383, processId: 6147, Name: metacity
File name: /usr/bin/metacity
Window caption: 'metacity '
Window hwnd: 23068673, processId: 6162, Name: bluetooth-applet
File name: /usr/bin/bluetooth-applet
Window caption: 'Miniaplicación para Bluetooth '
Window hwnd: 25165825, processId: 6165, Name: update-notifier
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 27262977, processId: 6174, Name: tracker-applet
File name: /usr/bin/tracker-applet
Window caption: 'Tracker '
Window hwnd: 29360129, processId: 6180, Name: gnome-volume-manager
File name:
Window caption: 'gnome-volume-manager '
Press enter to continue with the next 20 windows...
Window hwnd: 29360131, processId: 6183, Name:
File name: /usr/lib/gnome-volume-manager/gnome-volume-manager
Window caption: 'gnome-volume-manager '
Window hwnd: 31457281, processId: 6177, Name: gnome-power-manager
File name:
Window caption: 'Gestión de energía '
Window hwnd: 33554433, processId: 6186, Name: nm-applet
File name: /usr/bin/nm-applet
Window caption: 'nm-applet '
Window hwnd: 25165827, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 35651585, processId: 6169, Name: evolution-alarm-notify
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 41943041, processId: 6205, Name: evolution-exchange-storage
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 37748737, processId: 6182, Name: applet.py
File name: /usr/bin/python2.5
Window caption: 'applet.py '
Window hwnd: 20971524, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20971551, processId: 6152, Name: desktop_window
File name: /usr/bin/nautilus
Window caption: 'Escritorio '
Window hwnd: 19051906, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19102378, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 18960035, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19051519, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19165363, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19202984, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19220568, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 19220209, processId: 0, Name:
File name:
Window caption: ''
Window hwnd: 16777219, processId: 6151, Name: gnome-panel
File name:
Window caption: 'Panel lateral expandido inferior '
Window hwnd: 16777263, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971689, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Press enter to continue with the next 20 windows...
Window hwnd: 20971690, processId: 6152, Name:
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 31457312, processId: 6189, Name:
File name: /usr/bin/gnome-power-manager
Window caption: 'Gestión de energía '
Window hwnd: 25165854, processId: 6165, Name:
File name: /usr/bin/update-notifier
Window caption: 'notificador-de-actualizaciones '
Window hwnd: 41943043, processId: 6205, Name:
File name: /usr/lib/evolution/2.22/evolution-exchange-storage
Window caption: 'evolution-exchange-storage '
Window hwnd: 35651587, processId: 6169, Name:
File name: /usr/lib/evolution/2.22/evolution-alarm-notify
Window caption: 'evolution-alarm-notify '
Window hwnd: 39845889, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16777404, processId: 6151, Name:
File name:
Window caption: 'gnome-panel '
Window hwnd: 46137345, processId: 6255, Name: mixer_applet2
File name: /usr/lib/gnome-applets/mixer_applet2
Window caption: 'Miniaplicación del volumen '
Window hwnd: 50331649, processId: 6258, Name: fast-user-switch-applet
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 50331651, processId: 6258, Name:
File name: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Window caption: 'Miniaplicación del selector de usuarios '
Window hwnd: 16778439, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 20971924, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977589, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 20977638, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 16785299, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785427, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785498, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 54525953, processId: 6379, Name: gnome-terminal
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 54526066, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 60817409, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 39846545, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 39846657, processId: 6243, Name:
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 55661939, processId: 6379, Name:
File name: /usr/bin/gnome-terminal
Window caption: 'Terminal '
Window hwnd: 44040193, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16829040, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 52428801, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52428808, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52430386, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808099, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 52808378, processId: 14146, Name:
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 44040224, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 44102499, processId: 14143, Name: transmission
File name: /usr/bin/transmission
Window caption: 'Transmission '
Window hwnd: 16778615, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 39849450, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16778490, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16861234, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21214931, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 39851771, processId: 6243, Name: trashapplet
File name: /usr/lib/gnome-applets/trashapplet
Window caption: 'Miniaplicación de la papelera '
Window hwnd: 16877493, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16785004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Press enter to continue with the next 20 windows...
Window hwnd: 16783981, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16877324, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 21204514, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21578790, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 56623105, processId: 16082, Name: nautilus
File name:
Window caption: 'Administrador de archivos '
Window hwnd: 56623273, processId: 16082, Name:
File name:
Window caption: 'Administrador de archivos '
Window hwnd: 54219664, processId: 14146, Name: amule
File name: /usr/bin/amule
Window caption: 'amule '
Window hwnd: 56625399, processId: 16082, Name: nautilus
File name:
Window caption: 'Administrador de archivos '
Window hwnd: 56625434, processId: 16082, Name: nautilus
File name:
Window caption: 'Administrador de archivos '
Window hwnd: 56625368, processId: 16082, Name: nautilus
File name:
Window caption: 'Administrador de archivos '
Window hwnd: 16778004, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16861094, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 16902260, processId: 6151, Name: gnome-panel
File name:
Window caption: 'gnome-panel '
Window hwnd: 58720257, processId: 16116, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 58720259, processId: 16116, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 58721287, processId: 16116, Name: <unknown>
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 58721320, processId: 16116, Name:
File name: /usr/bin/theide-svn
Window caption: '<unknown> '
Window hwnd: 20991416, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 21042423, processId: 6152, Name: nautilus
File name: /usr/bin/nautilus
Window caption: 'Administrador de archivos '
Window hwnd: 58745560, processId: 0, Name:
File name:
Window caption: ''
Press enter to continue with the next 20 windows...
Window hwnd: 67108865, processId: 16735, Name: gedit
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 67109219, processId: 16735, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 67109220, processId: 16735, Name:
File name: /usr/bin/gedit
Window caption: 'gedit '
Window hwnd: 21026155, processId: 6152, Name: file_progress
File name: /usr/bin/nautilus
Window caption: 'Operaciones sobre archivos '
Press enter to continue...
Process list:
Id 6058: Priority: 5, Program: /usr/bin/gnome-session
Id 6112: Priority: 5, Program: /usr/lib/libgconf2-4/gconfd-2
Id 6118: Priority: 5, Program: /usr/bin/seahorse-agent
Id 6121: Priority: 5, Program: /usr/bin/gnome-keyring-daemon
Id 6124: Priority: 5, Program: /usr/bin/dbus-daemon
Id 6125: Priority: 5, Program: /usr/lib/gnome-settings-daemon/gnome-settings-daemon
Id 6136: Priority: 5, Program: /usr/lib/pulseaudio/pulse/gconf-helper
Id 6147: Priority: 5, Program: /usr/bin/metacity
Id 6152: Priority: 5, Program: /usr/bin/nautilus
Id 6153: Priority: 5, Program: /usr/bin/gnome-screensaver
Id 6160: Priority: 5, Program: /usr/lib/bonobo-activation/bonobo-activation-server
Id 6162: Priority: 5, Program: /usr/bin/bluetooth-applet
Id 6165: Priority: 5, Program: /usr/bin/update-notifier
Id 6169: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-alarm-notify
Id 6173: Priority: 5, Program: /usr/bin/obex-data-server
Id 6174: Priority: 5, Program: /usr/bin/tracker-applet
Id 6176: Priority: 5, Program: /usr/lib/gvfs/gvfsd
Id 6179: Priority: 1, Program: /usr/bin/trackerd
Id 6182: Priority: 5, Program: /usr/bin/python2.5
Id 6183: Priority: 5, Program: /usr/lib/gnome-volume-manager/gnome-volume-manager
Id 6186: Priority: 5, Program: /usr/bin/nm-applet
Id 6189: Priority: 5, Program: /usr/bin/gnome-power-manager
Id 6193: Priority: 5, Program: /usr/lib/gvfs/gvfs-fuse-daemon
Id 6205: Priority: 5, Program: /usr/lib/evolution/2.22/evolution-exchange-storage
Id 6208: Priority: 5, Program: /usr/lib/gvfs/gvfsd-burn
Id 6212: Priority: 5, Program: /usr/lib/evolution/evolution-data-server-2.22
Id 6230: Priority: 5, Program: /usr/lib/gvfs/gvfsd-trash
Id 6243: Priority: 5, Program: /usr/lib/gnome-applets/trashapplet
Id 6255: Priority: 5, Program: /usr/lib/gnome-applets/mixer_applet2
Id 6258: Priority: 5, Program: /usr/lib/fast-user-switch-applet/fast-user-switch-applet
Id 6379: Priority: 5, Program: /usr/bin/gnome-terminal
Id 14143: Priority: 5, Program: /usr/bin/transmission
Id 14146: Priority: 5, Program: /usr/bin/amule
Id 15017: Priority: 5, Program: /bin/bash
Id 15401: Priority: 5, Program: /usr/lib/gnome-vfs-2.0/gnome-vfs-daemon
Id 16116: Priority: 5, Program: /usr/bin/theide-svn
Id 16553: Priority: 5, Program: /bin/bash
Id 16554: Priority: 5, Program: /home/aupa/upp/out/GCC.Debug.Debug_full.Shared/SysInfo demo non-gui
Id 16735: Priority: 5, Program: /usr/bin/gedit
Press enter to end...