diff --git a/bazaar/SysInfo/SysInfo.cpp b/bazaar/SysInfo/SysInfo.cpp deleted file mode 100644 index d71d7e2bf..000000000 --- a/bazaar/SysInfo/SysInfo.cpp +++ /dev/null @@ -1,2407 +0,0 @@ -#include - -#if defined(PLATFORM_WIN32) -#include -#include -#include -#endif -#ifdef PLATFORM_POSIX -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#endif - -using namespace Upp; - -#include "SysInfo.h" - -bool FileCat(const char *file, const char *appendFile) -{ - FileAppend f(file); - if(!f.IsOpen()) - return false; - FileIn fi(appendFile); - if(!fi.IsOpen()) - return false; - CopyStream(f, fi, fi.GetLeft()); - fi.Close(); - f.Close(); - if(f.IsError()) - return false; - return true; -} - -String FormatLong(long a) -{ - return Sprintf("%ld", a); -} - -String Replace(String str, String find, String replace) -{ - String ret; - int i = 0, j; - int lenStr = str.GetCount(); - int lenFind = find.GetCount(); - int lenReplace = replace.GetCount(); - while ((j = str.Find(find, i)) >= i) { - ret += str.Mid(i, j-i) + replace; - i = j + lenFind; - if (i >= lenStr) - break; - } - ret += str.Mid(i); - return ret; -} - -void SearchFile_Each(String dir, String condFile, String text, Array &files) -{ - FindFile ff(AppendFileName(dir, condFile)); - do { - if(ff.IsFile()) { - String p = AppendFileName(dir, ff.GetName()); - if (text == "") - files.Add(p); - else { - FILE *fp = fopen(p, "r"); - if (fp != NULL) { - int i = 0, c; - while ((c = fgetc(fp)) != EOF) { - if (c == text[i]) { - ++i; - if (i == text.GetCount()) { - files.Add(p); - break; - } - } else { - if (i != 0) - fseek(fp, -(i-1), SEEK_CUR); - i = 0; - } - } - fclose(fp); - } else - puts(Format("Error: %s", AppendFileName(dir, ff.GetName()))); - } - } - } while (ff.Next()); - - ff.Search(AppendFileName(dir, "*")); - do { - String name = ff.GetName(); - if(ff.IsDirectory() && name != "." && name != "..") { - String p = AppendFileName(dir, name); - SearchFile_Each(p, condFile, text, files); - } - } while (ff.Next()); -} - -Array SearchFile(String dir, String condFile, String text) -{ - Array ret; - SearchFile_Each(dir, condFile, text, ret); - return ret; -} - -///////////////////////////////////////////////////////////////////// -// LaunchCommand -int LaunchCommand(const char *cmd, void (*readCallBack)(String &)) -{ - LocalProcess p; - if(!p.Start(cmd)) - return -1; - String str; - while(p.IsRunning()) { - str = p.Get(); - if (readCallBack) - readCallBack(str); - DoEvents(); - } - str = p.Get(); - if (readCallBack) - readCallBack(str); - return p.GetExitCode(); -} -int LaunchCommand(const char *cmd, String &ret) -{ - ret = ""; - LocalProcess p; - if(!p.Start(cmd)) - return -1; - while(p.IsRunning()) { - ret.Cat(p.Get()); - DoEvents(); - } - ret.Cat(p.Get()); - return p.GetExitCode(); -} -String LaunchCommand(const char *cmd) -{ - String ret; - LaunchCommand(cmd, ret); - return ret; -} - -///////////////////////////////////////////////////////////////////// -// LaunchFile - -bool LaunchFile(const String file) -{ -#if defined(PLATFORM_WIN32) - HINSTANCE ret; - WString fileName(file); - ret = ShellExecuteW(NULL, L"open", fileName, NULL, L".", SW_SHOWNORMAL); //SW_SHOWMINIMIZED - return (int)ret > 32; -#endif -#ifdef PLATFORM_POSIX - int ret; - if (GetDesktopManagerNew() == "gnome") - ret = system("gnome-open \"" + file + "\""); - else if (GetDesktopManagerNew() == "kde") - ret = system("kfmclient exec \"" + file + "\" &"); - else if (GetDesktopManagerNew() == "enlightenment") { - String mime = GetExtExecutable(GetFileExt(file)); - String program = mime.Left(mime.Find(".")); // Left side of mime executable is the program to run - ret = system(program + " \"" + file + "\" &"); - } else - ret = system("xdg-open \"" + file + "\""); - return (ret >= 0); -#endif -} -String GetExtExecutable(String ext) -{ - String exeFile = ""; - if (ext[0] != '.') - ext = String(".") + ext; -#if defined(PLATFORM_WIN32) - String file = AppendFileName(GetHomeDirectory(), String("pru") + ext); - SaveFile(file, " "); - if (!FileExists(file)) { - exeFile = "Error getting exe"; - puts("ERROR"); - return exeFile; - } - HINSTANCE ret; - WString fileW(file); - WCHAR exe[1024]; - ret = FindExecutableW(fileW, NULL, exe); - if ((long)ret > 32) - exeFile = WString(exe).ToString(); - DeleteFile(file); -#endif -#ifdef PLATFORM_POSIX - StringParse mime; - //if (LaunchCommand(String("xdg-mime query filetype ") + file, mime) >= 0) // xdg-mime query filetype does not work properly in Enlightenment - mime = LoadFile_Safe("/etc/mime.types"); // Search in /etc/mime.types the mime type for the extension - if ((mime.GoAfter_Init(String(" ") + ext.Right(ext.GetCount()-1))) || (mime.GoAfter_Init(String("\t") + ext.Right(ext.GetCount()-1)))) { - mime.GoBeginLine(); - mime = mime.GetText(); - exeFile = TrimRight(LaunchCommand(String("xdg-mime query default ") + mime)); - } -#endif - return exeFile; -} - -///////////////////////////////////////////////////////////////////// -// Special Folders - -String GetFirefoxDownloadFolder() -{ - String profilesPath = "mozilla/firefox"; -#ifdef PLATFORM_POSIX // Is hidden - profilesPath = String(".") + profilesPath; -#endif - StringParse profiles = LoadFile(AppendFileName(GetAppDataFolder(), AppendFileName(profilesPath, "profiles.ini"))); - if (!profiles.GoAfter("Path")) return ""; - if (!profiles.GoAfter("=")) return ""; - String path = profiles.GetText(); - String pathPrefs = AppendFileName(AppendFileName(AppendFileName(GetAppDataFolder(), profilesPath), path), "prefs.js"); - StringParse prefs = LoadFile(pathPrefs); - if (!prefs.GoAfter("\"browser.download.dir\"")) { - if (!prefs.GoAfter("\"browser.download.lastDir\"")) - return ""; - } - if (!prefs.GoAfter(",")) return ""; - return prefs.GetText(); -} - -#if defined(PLATFORM_WIN32) -String GetShellFolder(const char *local, const char *users) -{ - String ret = FromSystemCharset(GetWinRegString(local, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", - HKEY_CURRENT_USER)); - if (ret == "" && *users != '\0') - return FromSystemCharset(GetWinRegString(users, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", - HKEY_LOCAL_MACHINE)); - return ret; -} -String GetIEDownloadFolder() -{ - String ret = FromSystemCharset(GetWinRegString("Download Directory", "Software\\Microsoft\\Internet Explorer", HKEY_CURRENT_USER)); - if (ret == "") - ret = FromSystemCharset(GetWinRegString("Save Directory", "Software\\Microsoft\\Internet Explorer\\Main", HKEY_CURRENT_USER)); - return ret; -} -String GetDesktopFolder() {return GetShellFolder("Desktop", "Common Desktop");} -String GetProgramsFolder() {return FromSystemCharset(GetWinRegString("ProgramFilesDir", "Software\\Microsoft\\Windows\\CurrentVersion", HKEY_LOCAL_MACHINE));} -String GetAppDataFolder() {return GetShellFolder("AppData", "Common AppData");} -String GetMusicFolder() {return GetShellFolder("My Music", "CommonMusic");} -String GetPicturesFolder() {return GetShellFolder("My Pictures", "CommonPictures");} -String GetVideoFolder() {return GetShellFolder("My Video", "CommonVideo");} -String GetPersonalFolder() {return GetShellFolder("Personal", 0);} -String GetTemplatesFolder() {return GetShellFolder("Templates", "Common Templates");} -String GetDownloadFolder() -{ - String browser = GetExtExecutable("html"); - browser = ToLower(browser); - if (browser.Find("iexplore") >= 0) - return GetIEDownloadFolder(); - else if (browser.Find("firefox") >= 0) - return GetFirefoxDownloadFolder(); - return GetDesktopFolder(); // I do not know to do it in other browsers !! -}; -String GetTempFolder() -{ - String ret; - if ((ret = GetEnv("TEMP")) == "") // One or the other one - ret = GetEnv("TMP"); - return ret; -} -String GetOsFolder() -{ - char ret[MAX_PATH]; - ::GetWindowsDirectory(ret, MAX_PATH); - return String(ret); -} -String GetSystemFolder() -{ - char ret[MAX_PATH]; - ::GetSystemDirectory(ret, MAX_PATH); - return String(ret); -} -#endif -#ifdef PLATFORM_POSIX -String GetPathXdg(String xdgConfigHome, String xdgConfigDirs) -{ - String ret = ""; - if (FileExists(ret = AppendFileName(xdgConfigHome, "user-dirs.dirs"))) ; - else if (FileExists(ret = AppendFileName(xdgConfigDirs, "user-dirs.defaults"))) ; - else if (FileExists(ret = AppendFileName(xdgConfigDirs, "user-dirs.dirs"))) ; - return ret; -} -String GetPathDataXdg(String fileConfig, const char *folder) -{ - StringParse fileData = LoadFile(fileConfig); - - if (!fileData.GoAfter(folder)) return ""; - if (!fileData.GoAfter("=")) return ""; - - String ret = ""; - StringParse path = fileData.GetText(); - if(path.GoAfter("$HOME/")) - ret = AppendFileName(GetHomeDirectory(), path.Right()); - else if (!FileExists(path)) - ret = AppendFileName(GetHomeDirectory(), path); - - return ret; -} -String GetShellFolder(const char *local, const char *users) -{ - String xdgConfigHome = GetEnv("XDG_CONFIG_HOME"); - if (xdgConfigHome == "") // By default - xdgConfigHome = AppendFileName(GetHomeDirectory(), ".config"); - String xdgConfigDirs = GetEnv("XDG_CONFIG_DIRS"); - if (xdgConfigDirs == "") // By default - xdgConfigDirs = "/etc/xdg"; - String xdgFileConfigData = GetPathXdg(xdgConfigHome, xdgConfigDirs); - String ret = GetPathDataXdg(xdgFileConfigData, local); - if (ret == "" && *users != '\0') - return GetPathDataXdg(xdgFileConfigData, users); - else - return ret; -} -String GetDesktopFolder() -{ - String ret = GetShellFolder("XDG_DESKTOP_DIR", "DESKTOP"); - if (ret == "") - return AppendFileName(GetHomeDirectory(), "Desktop"); - else - return ret; -} -String GetProgramsFolder() {return String("/usr/bin");} -String GetAppDataFolder() {return GetHomeDirectory();}; -String GetMusicFolder() {return GetShellFolder("XDG_MUSIC_DIR", "MUSIC");} -String GetPicturesFolder() {return GetShellFolder("XDG_PICTURES_DIR", "PICTURES");} -String GetVideoFolder() {return GetShellFolder("XDG_VIDEOS_DIR", "VIDEOS");} -String GetPersonalFolder() {return GetShellFolder("XDG_DOCUMENTS_DIR", "DOCUMENTS");} -String GetTemplatesFolder() {return GetShellFolder("XDG_TEMPLATES_DIR", "XDG_TEMPLATES_DIR");} -String GetDownloadFolder() -{ - String browser = GetExtExecutable("html"); - browser = ToLower(browser); - if (browser.Find("firefox") >= 0) - return GetFirefoxDownloadFolder(); - return GetShellFolder("XDG_DOWNLOAD_DIR", "DOWNLOAD"); -}; -String GetTempFolder() -{ - return GetHomeDirectory(); -} -String GetOsFolder() -{ - return String("/bin"); -} -String GetSystemFolder() -{ - return String(""); -} -#endif - -///////////////////////////////////////////////////////////////////// -// Hardware Info -#if defined(PLATFORM_WIN32) -void GetSystemInfo(String &manufacturer, String &productName, String &version, int &numberOfProcessors) -{ - manufacturer = FromSystemCharset(GetWinRegString("SystemManufacturer", "HARDWARE\\DESCRIPTION\\System\\BIOS", HKEY_LOCAL_MACHINE)); - if (manufacturer == "") { - StringParse fileData = LoadFile(AppendFileName(GetSystemFolder(), "oeminfo.ini")); - fileData.GoAfter("Manufacturer="); - manufacturer = fileData.GetText("\r\n"); - } - productName = FromSystemCharset(GetWinRegString("SystemProductName", "HARDWARE\\DESCRIPTION\\System\\BIOS", HKEY_LOCAL_MACHINE)); - if (productName == "") - productName = FromSystemCharset(GetWinRegString("Model", "SOFTWARE\\Microsoft\\PCHealth\\HelpSvc\\OEMInfo", HKEY_LOCAL_MACHINE)); - version = FromSystemCharset(GetWinRegString("SystemVersion", "HARDWARE\\DESCRIPTION\\System\\BIOS", HKEY_LOCAL_MACHINE)); - numberOfProcessors = atoi(GetEnv("NUMBER_OF_PROCESSORS")); -} -void GetBiosInfo(String &biosVersion, Date &biosReleaseDate) -{ - String strBios = FromSystemCharset(GetWinRegString("BIOSVersion", "HARDWARE\\DESCRIPTION\\System\\BIOS", HKEY_LOCAL_MACHINE)); - for (int i = 0; i < strBios.GetLength(); ++i) { - if (strBios[i] == '\0') - biosVersion.Cat(". "); - else - biosVersion.Cat(strBios[i]); - } - StrToDate(biosReleaseDate, FromSystemCharset(GetWinRegString("BIOSReleaseDate", "HARDWARE\\DESCRIPTION\\System\\BIOS", HKEY_LOCAL_MACHINE))); -} -bool GetProcessorInfo(int number, String &vendor, String &identifier, String &architecture, int &speed) -{ - String strReg = Format("HARDWARE\\DESCRIPTION\\System\\CentralProcessor\\%d", number); - vendor = FromSystemCharset(GetWinRegString("VendorIdentifier", strReg, HKEY_LOCAL_MACHINE)); - identifier = FromSystemCharset(GetWinRegString("ProcessorNameString", strReg, HKEY_LOCAL_MACHINE)); - architecture = FromSystemCharset(GetWinRegString("Identifier", strReg, HKEY_LOCAL_MACHINE)); - speed = GetWinRegInt("~MHz", strReg, HKEY_LOCAL_MACHINE); - return true; -} -#endif -#if defined (PLATFORM_POSIX) -void GetSystemInfo(String &manufacturer, String &productName, String &version, int &numberOfProcessors) -{ - manufacturer = LoadFile_Safe("/sys/devices/virtual/dmi/id/board_vendor"); - productName = LoadFile_Safe("/sys/devices/virtual/dmi/id/board_name"); - version = LoadFile_Safe("/sys/devices/virtual/dmi/id/product_version"); - - StringParse cpu(LoadFile_Safe("/proc/cpuinfo")); - numberOfProcessors = 1; - while (cpu.GoAfter("processor")) { - cpu.GoAfter(":"); - numberOfProcessors = atoi(cpu.GetText()) + 1; - } -} -void GetBiosInfo(String &biosVersion, Date &biosReleaseDate) -{ - String biosVendor = LoadFile_Safe("/sys/devices/virtual/dmi/id/bios_vendor"); - biosVersion = LoadFile_Safe("/sys/devices/virtual/dmi/id/bios_version"); - StrToDate(biosReleaseDate, LoadFile_Safe("/sys/devices/virtual/dmi/id/bios_date")); -} -bool GetProcessorInfo(int number, String &vendor, String &identifier, String &architecture, int &speed) -{ - StringParse cpu(LoadFile_Safe("/proc/cpuinfo")); - - int cpuNumber; - do { - if (!cpu.GoAfter("processor", ":")) - return false; - String sCpu = cpu.GetText(); - if (sCpu == "") - return false; - cpuNumber = atoi(sCpu); - } while (cpuNumber != number); - - cpu.GoAfter("vendor_id", ":"); - vendor = cpu.GetText(); - cpu.GoAfter("cpu family", ":"); - String family = cpu.GetText(); // 6 means 686 - cpu.GoAfter("model", ":"); - String model = cpu.GetText(); - cpu.GoAfter("model name", ":"); - identifier = cpu.GetText("\n"); - cpu.GoAfter("stepping", ":"); - String stepping = cpu.GetText(); - architecture = LaunchCommand("uname -m"); // CPU type - architecture << " Family " << family << " Model " << model << " Stepping " << stepping; // And 64 bits ?? uname -m - cpu.GoAfter_Init("cpu MHz", ":"); - speed = cpu.GetInt(); -} -#endif - -///////////////////////////////////////////////////////////////////// -// Memory Info - -#if defined(__MINGW32__) -typedef struct _MEMORYSTATUSEX { - DWORD dwLength; - DWORD dwMemoryLoad; - DWORDLONG ullTotalPhys; - DWORDLONG ullAvailPhys; - DWORDLONG ullTotalPageFile; - DWORDLONG ullAvailPageFile; - DWORDLONG ullTotalVirtual; - DWORDLONG ullAvailVirtual; - DWORDLONG ullAvailExtendedVirtual; -} MEMORYSTATUSEX,*LPMEMORYSTATUSEX; - -WINBASEAPI BOOL WINAPI GlobalMemoryStatusEx(LPMEMORYSTATUSEX); - -bool GetMemoryInfo( -int &memoryLoad, // percent of memory in use -uint64 &totalPhys, // physical memory -uint64 &freePhys, // free physical memory -uint64 &totalPageFile, // total paging file -uint64 &freePageFile, // free paging file -uint64 &totalVirtual, // total virtual memory -uint64 &freeVirtual) // free virtual memory -{ - MEMORYSTATUS status; - status.dwLength = sizeof (status); - GlobalMemoryStatus(&status); - - memoryLoad = status.dwMemoryLoad; - totalPhys = status.dwTotalPhys; - freePhys = status.dwAvailPhys; - totalPageFile = status.dwTotalPageFile; - freePageFile = status.dwAvailPageFile; - totalVirtual = status.dwTotalVirtual; - freeVirtual = status.dwAvailVirtual; - - return true; -} -#endif -#ifdef COMPILER_MSC - -bool GetMemoryInfo( -int &memoryLoad, // percent of memory in use -uint64 &totalPhys, // physical memory -uint64 &freePhys, // free physical memory -uint64 &totalPageFile, // total paging file -uint64 &freePageFile, // free paging file -uint64 &totalVirtual, // total virtual memory -uint64 &freeVirtual) // free virtual memory -{ - MEMORYSTATUSEX status; - status.dwLength = sizeof (status); - if (!GlobalMemoryStatusEx(&status)) - return false; - memoryLoad = status.dwMemoryLoad; - totalPhys = status.ullTotalPhys; - freePhys = status.ullAvailPhys; - totalPageFile = status.ullTotalPageFile; - freePageFile = status.ullAvailPageFile; - totalVirtual = status.ullTotalVirtual; - freeVirtual = status.ullAvailVirtual; - - return true; -} -#endif - -#include -#include -#include - -// This system files are like pipes: it is not possible to get the length to size the buffer -String LoadFile_Safe(String fileName) -{ -#ifdef PLATFORM_POSIX - int fid = open(fileName, O_RDONLY); -#else - int fid = _wopen(fileName.ToWString(), O_RDONLY|O_BINARY); -#endif - if (fid < 0) - return String(""); - const int size = 1024; - int nsize; - StringBuffer s; - char buf[size]; - while((nsize = read(fid, buf, size)) == size) - s.Cat(buf, size); - if (nsize > 1) - s.Cat(buf, nsize-1); - close(fid); - return s; -} - -#ifdef PLATFORM_POSIX -bool GetMemoryInfo( -int &memoryLoad, // percent of memory in use -uint64 &totalPhys, // physical memory -uint64 &freePhys, // free physical memory -uint64 &totalPageFile, // total paging file -uint64 &freePageFile, // free paging file -uint64 &totalVirtual, // total virtual memory -uint64 &freeVirtual) -{ - StringParse meminfo = LoadFile_Safe("/proc/meminfo"); - if (meminfo == "") - return false; - meminfo.GoAfter_Init("MemTotal", ":"); totalPhys = 1024*meminfo.GetUInt64(); - meminfo.GoAfter_Init("MemFree", ":"); freePhys = 1024*meminfo.GetUInt64(); - memoryLoad = (int)(100.*(totalPhys-freePhys)/totalPhys); - meminfo.GoAfter_Init("SwapCached", ":");freePageFile = 1024*meminfo.GetUInt64(); - meminfo.GoAfter_Init("Cached", ":"); totalPageFile = 1024*meminfo.GetUInt64() + freePageFile; - meminfo.GoAfter_Init("SwapTotal", ":"); totalVirtual = 1024*meminfo.GetUInt64(); - meminfo.GoAfter_Init("SwapFree", ":"); freeVirtual = 1024*meminfo.GetUInt64(); - - return true; -} -#endif - - -///////////////////////////////////////////////////////////////////// -// Process list - -#if defined(PLATFORM_WIN32) - -// Get the list of process identifiers. -bool GetProcessList(Array &pid, Array &pNames) -{ - PROCESSENTRY32 proc; - HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); - if (hSnap == INVALID_HANDLE_VALUE) - return false; - proc.dwSize = sizeof(proc); - long f = Process32First(hSnap, &proc); - while (f) { - pid.Add(proc.th32ProcessID); - pNames.Add(proc.szExeFile); - f = Process32Next(hSnap, &proc); - } - CloseHandle(hSnap); - return true; -} -Array GetProcessList() -{ - PROCESSENTRY32 proc; - Array ret; - HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); - if (hSnap == INVALID_HANDLE_VALUE) - return ret; - proc.dwSize = sizeof(proc); - long f = Process32First(hSnap, &proc); - while (f) { - ret.Add(proc.th32ProcessID); - f = Process32Next(hSnap, &proc); - } - CloseHandle(hSnap); - return ret; -} -String GetProcessName(long processID) -{ - WCHAR szProcessName[MAX_PATH]; - // Get a handle to the process. - HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processID); - - // Get the process name. - if (hProcess != NULL) { - HMODULE hMod; - DWORD cbNeeded; - - if (EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cbNeeded)) - GetModuleBaseNameW(hProcess, hMod, szProcessName, sizeof(szProcessName)/sizeof(WCHAR)); - } - CloseHandle(hProcess); - - return FromSystemCharset(WString(szProcessName).ToString()); -} -String GetProcessFileName(long processID) -{ - WCHAR szProcessName[MAX_PATH]; - // Get a handle to the process. - HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processID); - - // Get the process name. - if (hProcess != NULL) { - HMODULE hMod; - DWORD cbNeeded; - - if (EnumProcessModules(hProcess, &hMod, sizeof(hMod), &cbNeeded)) - GetModuleFileNameExW(hProcess, hMod, szProcessName, sizeof(szProcessName)/sizeof(WCHAR)); - } - CloseHandle(hProcess); - - return FromSystemCharset(WString(szProcessName).ToString()); -} -BOOL CALLBACK EnumGetWindowsList(HWND hWnd, LPARAM lParam) -{ - if (!hWnd) - return TRUE; // Not a window - if (GetParent(hWnd) != 0) - return TRUE; // Child window - Array *ret = (Array *)lParam; - ret->Add((int)hWnd); - return TRUE; -} -void GetWindowsList(Array &hWnd, Array &processId, Array &name, Array &fileName, Array &caption) -{ - HANDLE hProcess; - DWORD dwThreadId, dwProcessId; - HINSTANCE hInstance; - WCHAR str[MAX_PATH]; - - EnumWindows(EnumGetWindowsList, (LPARAM)&hWnd); - for (int i = 0; i < hWnd.GetCount(); ++i) { - hInstance = (HINSTANCE)GetWindowLong((HWND)hWnd[i], GWL_HINSTANCE); - dwThreadId = GetWindowThreadProcessId((HWND)hWnd[i], &dwProcessId); - processId.Add(dwProcessId); - hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, dwProcessId); - if (GetModuleFileNameExW(hProcess, hInstance, str, sizeof(str)/sizeof(WCHAR))) - fileName.Add(FromSystemCharset(WString(str).ToString())); - else - fileName.Add("UNKNOWN"); - if (GetModuleBaseNameW(hProcess, hInstance, str, sizeof(str)/sizeof(WCHAR))) - name.Add(FromSystemCharset(WString(str).ToString())); - else - name.Add("UNKNOWN"); - CloseHandle(hProcess); - if (IsWindowVisible((HWND)hWnd[i])) { - int count = SendMessageW((HWND)hWnd[i], WM_GETTEXT, sizeof(str)/sizeof(WCHAR), (LPARAM)str); - str[count] = '\0'; - caption.Add(FromSystemCharset(WString(str).ToString())); - } else - caption.Add(""); - } -} -Array GetWindowsList() -{ - Array ret; - EnumWindows(EnumGetWindowsList, (LPARAM)&ret); - return ret; -} -BOOL CALLBACK TerminateAppEnum(HWND hwnd, LPARAM lParam) -{ - DWORD dwID ; - GetWindowThreadProcessId(hwnd, &dwID) ; - if(dwID == (DWORD)lParam) - PostMessage(hwnd, WM_CLOSE, 0, 0) ; - return TRUE ; -} -// pid Process ID of the process to shut down. -// timeout Wait time in milliseconds before shutting down the process. -bool ProcessTerminate(long processId, int timeout) -{ - // If we can't open the process with PROCESS_TERMINATE rights, then we give up immediately. - HANDLE hProc = ::OpenProcess(SYNCHRONIZE|PROCESS_TERMINATE, FALSE, processId); - if(hProc == NULL) - return false ; - // TerminateAppEnum() posts WM_CLOSE to all windows whose PID matches your process's. - ::EnumWindows((WNDENUMPROC)TerminateAppEnum, (LPARAM)processId) ; - - int ret; - // Wait on the handle. If it signals, great. If it times out, - // then you kill it. - int state = ::WaitForSingleObject(hProc, timeout); - if ((state == WAIT_TIMEOUT) || (state == WAIT_FAILED)) - ret = ::TerminateProcess(hProc, 0); - else - ret = true; - CloseHandle(hProc) ; - return ret; -} - -int GetProcessPriority(long pid) -{ - int priority; - HANDLE hProc = ::OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid); - if(hProc == NULL) - return -1; - priority = ::GetPriorityClass(hProc); - CloseHandle(hProc); - - switch(priority) { - case REALTIME_PRIORITY_CLASS: priority = 10; // Process that has the highest possible priority. The threads of a real-time priority class process preempt the threads of all other processes, including operating system processes performing important tasks. For example, a real-time process that executes for more than a very brief interval can cause disk caches not to flush or cause the mouse to be unresponsive. - break; - case HIGH_PRIORITY_CLASS: priority = 8; // Process that performs time-critical tasks that must be executed immediately for it to run correctly. The threads of a high-priority class process preempt the threads of normal or idle priority class processes. An example is the Task List, which must respond quickly when called by the user, regardless of the load on the operating system. Use extreme care when using the high-priority class, because a high-priority class CPU-bound application can use nearly all available cycles. - break; - case ABOVE_NORMAL_PRIORITY_CLASS: priority = 6; // Process that has priority above NORMAL_PRIORITY_CLASS but below HIGH_PRIORITY_CLASS. - break; - case NORMAL_PRIORITY_CLASS: priority = 5; // Process with no special scheduling needs. - break; - case BELOW_NORMAL_PRIORITY_CLASS: priority = 3; // Process that has priority above IDLE_PRIORITY_CLASS but below NORMAL_PRIORITY_CLASS. - break; - case IDLE_PRIORITY_CLASS: priority = 0; // Process whose threads run only when the system is idle and are preempted by the threads of any process running in a higher priority class. An example is a screen saver. The idle priority class is inherited by child processes. - break; - default: return -1; - } - return priority; -} - -bool SetProcessPriority(long pid, int priority) -{ - HANDLE hProc = ::OpenProcess(PROCESS_SET_INFORMATION , FALSE, pid); - if(hProc == NULL) - return false; - if (priority == 10) - priority = REALTIME_PRIORITY_CLASS; - else if (priority >= 8) - priority = HIGH_PRIORITY_CLASS; - else if (priority >= 6) - priority = ABOVE_NORMAL_PRIORITY_CLASS; - else if (priority >= 5) - priority = NORMAL_PRIORITY_CLASS; - else if (priority >= 3) - priority = BELOW_NORMAL_PRIORITY_CLASS; - else - priority = IDLE_PRIORITY_CLASS; - int ret = ::SetPriorityClass(hProc, priority); // SetProcessAffinityMask - CloseHandle(hProc) ; - return ret; -} - -#endif -#ifdef PLATFORM_POSIX //Check with ps - -bool IsInteger(String s) -{ - for (int i = 0; i < s.GetCount(); ++i) { - if (!isdigit(s[i])) - return false; - } - return true; -} -bool GetProcessList(Array &pid, Array &pNames) -{ - FindFile ff; - if(ff.Search("/proc/*")) { - do { - if (IsInteger(ff.GetName())) { - String exe = Format("/proc/%s/exe", ff.GetName()); - StringBuffer exeb; - exeb = exe; - char procName[2048]; - int procNameLen = readlink(exeb, procName, sizeof(procName)-1); - if (procNameLen > 0) { - procName[procNameLen] = 0; - pNames.Add(procName); - pid.Add(atoi(ff.GetName())); - } - } - } while(ff.Next()); - } - return true; -} -Array GetProcessList() -{ - FindFile ff; - Array pid; - if(ff.Search("/proc/*")) { - do { - if (IsInteger(ff.GetName())) { - String exe = Format("/proc/%s/exe", ff.GetName()); - StringBuffer exeb; - exeb = exe; - char procName[2048]; - int procNameLen = readlink(exeb, procName, sizeof(procName)-1); - if (procNameLen > 0) - pid.Add(atoi(ff.GetName())); - } - } while(ff.Next()); - } - return pid; -} -String GetProcessName(long pid) -{ - return GetFileName(GetProcessFileName(pid)); -} -// ls -l /proc/%d/fd gets also the files opened by the process -String GetProcessFileName(long pid) -{ - String ret = ""; - String exe = Format("/proc/%s/exe", FormatLong(pid)); - StringBuffer exeb; - exeb = exe; - char procName[2048]; - int procNameLen = readlink(exeb, procName, sizeof(procName)-1); - if (procNameLen > 0) { - procName[procNameLen] = 0; - ret = procName; - } - return ret; -} - -#ifdef PLATFORM_POSIX -#ifdef CTRLLIB_H - void SetX11ErrorHandler(); - #define SetSysInfoX11ErrorHandler() {} -#else - #define SetX11ErrorHandler() {} - int SysInfoX11ErrorHandler(Display *, XErrorEvent *) {return 0;} - void SetSysInfoX11ErrorHandler() {XSetErrorHandler(SysInfoX11ErrorHandler);} -#endif -#endif - -void GetWindowsList_Rec (Display *dpy, Window w, int depth, Array &wid) -{ - if (depth > 3) // 1 is enough for Gnome. 2 is necessary for Xfce and Kde - return; - - wid.Add(w); - - Window root, parent; - unsigned int nchildren; - Window *children = NULL; - if (XQueryTree (dpy, w, &root, &parent, &children, &nchildren)) { - for (int i = 0; i < nchildren; i++) { - XWindowAttributes windowattr; - XGetWindowAttributes(dpy, children[i], &windowattr); - if (windowattr.map_state == IsViewable) - GetWindowsList_Rec (dpy, children[i], depth + 1, wid); - } - } - if (children) - XFree((char *)children); - return; -} -Array GetWindowsList() -{ - Array ret; - SetSysInfoX11ErrorHandler(); - - Display *dpy = XOpenDisplay (NULL); - if (!dpy) { - SetX11ErrorHandler(); - return ret; - } - GetWindowsList_Rec (dpy, RootWindow(dpy, DefaultScreen(dpy)), 0, ret); - XCloseDisplay (dpy); - SetX11ErrorHandler(); - return ret; -} -void GetWindowsList(Array &hWnd, Array &processId, Array &nameL, Array &fileName, Array &caption) -{ - SetSysInfoX11ErrorHandler(); - Display *dpy = XOpenDisplay (NULL); - if (!dpy) { - SetX11ErrorHandler(); - return; - } - GetWindowsList_Rec(dpy, RootWindow (dpy, DefaultScreen (dpy)), 0, hWnd); - for (int i = 0; i < hWnd.GetCount(); ++i) { - // Get window name - XTextProperty tp; - if (XGetWMName(dpy, hWnd[i], &tp) == 0) - caption.Add(""); - else { - if (tp.nitems > 0) { - int count = 0, i, ret; - char **list = NULL; - ret = XmbTextPropertyToTextList(dpy, &tp, &list, &count); - if((ret == Success || ret > 0) && list != NULL) { - String sret; - for(i = 0; i < count; i++) - sret << list[i] << " "; - XFreeStringList(list); - caption.Add(FromSystemCharset(sret)); - } else - caption.Add(FromSystemCharset((char *)tp.value)); - } else - caption.Add(""); - } - // Get pid - Atom atomPID = XInternAtom(dpy, "_NET_WM_PID", True); - unsigned long pid = 0; - if (atomPID == None) - processId.Add(0L); - else { - Atom type; - int format; - unsigned long nItems; - unsigned long bytesAfter; - unsigned char *propPID = 0; - if (0 == XGetWindowProperty(dpy, hWnd[i], atomPID, 0, 1024, False, XA_CARDINAL, &type, &format, &nItems, &bytesAfter, &propPID)) { - if(propPID != 0) { - pid = *((unsigned long *)propPID); - processId.Add(pid); - XFree(propPID); - } else - processId.Add(0L); - } else - processId.Add(0L); - } - if (pid != 0L) - fileName.Add(GetProcessFileName(pid)); - else - fileName.Add(""); - // Name and class - XClassHint ch; - ch.res_name = ch.res_class = NULL; - Status status = XGetClassHint (dpy, hWnd[i], &ch); - if (status != BadWindow) { - if (ch.res_name) - nameL.Add(ch.res_name); - else - nameL.Add(""); - } else - nameL.Add(""); - if (ch.res_name) - XFree (ch.res_name); - if (ch.res_class) - XFree (ch.res_class); - } - XCloseDisplay (dpy); - SetX11ErrorHandler(); - return; -} - -bool WindowKill(long wid) -{ - if (wid == 0) - return false; - - Display *dpy = XOpenDisplay (NULL); - if (!dpy) - return false; - - XSync (dpy, 0); - XKillClient (dpy, wid); - XSync (dpy, 0); - - XCloseDisplay (dpy); - return true; -} - -// Also possible to stop or cont -bool ProcessTerminate(long pid, int timeout) -{ - if (!ProcessExists(pid)) - return false; - long wid = GetWindowIdFromProcessId(pid); // Just in case - - // First... SIGTERM - kill(pid, SIGTERM); - Sleep(timeout/3); - if (!ProcessExists(pid)) - return true; - // Second... SIGKILL - kill(pid, SIGKILL); - Sleep(timeout/3); - if (!ProcessExists(pid)) - return true; - // Third ... WindowKill - Sleep((int)(timeout/3)); - return WindowKill(wid); -} - -int GetProcessPriority(long pid) -{ - int priority = getpriority(PRIO_PROCESS, pid); - return 10 - (priority + 20)/4; // Rescale -20/20 to 10/0 -} -bool SetProcessPriority(long pid, int priority) -{ - priority = 20 - 4*priority; - if (0 == setpriority(PRIO_PROCESS, pid, priority)) - return true; - else - return false; -} -#endif - -long GetWindowIdFromCaption(String windowCaption, bool exactMatch) -{ - Array wid, pid; - Array name, fileName, caption; - GetWindowsList(wid, pid, name, fileName, caption); - for (int i = 0; i < wid.GetCount(); ++i) { - if (exactMatch) { - if (caption[i] == windowCaption) - return wid[i]; - } else { - if (caption[i].Find(windowCaption) >= 0) - return wid[i]; - } - } - return -1; -} -long GetProcessIdFromWindowCaption(String windowCaption, bool exactMatch) -{ - Array wid, pid; - Array name, fileName, caption; - GetWindowsList(wid, pid, name, fileName, caption); - for (int i = 0; i < wid.GetCount(); ++i) { - if (exactMatch) { - if (caption[i] == windowCaption) - return pid[i]; - } else { - if (caption[i].Find(windowCaption) >= 0) - return pid[i]; - } - } - return -1; -} -long GetProcessIdFromWindowId(long _wId) -{ - Array wId, pid; - Array name, fileName, caption; - GetWindowsList(wId, pid, name, fileName, caption); - for (int i = 0; i < pid.GetCount(); ++i) { - if (wId[i] == _wId) - return pid[i]; - } - return 0; -} -long GetWindowIdFromProcessId(long _pid) -{ - Array wId, pid; - Array name, fileName, caption; - GetWindowsList(wId, pid, name, fileName, caption); - for (int i = 0; i < pid.GetCount(); ++i) { - if (pid[i] == _pid) - return wId[i]; - } - return 0; -} - -bool ProcessExists(long pid) -{ - return DirectoryExists(Format("/proc/%s", FormatLong(pid))); -} -///////////////////////////////////////////////////////////////////// -// Os Info - -#if defined(PLATFORM_WIN32) -#if defined(__MINGW32__) - -//#define PRODUCT_UNDEFINED 0x00000000 - -#define PRODUCT_ULTIMATE 0x00000001 -#define PRODUCT_HOME_BASIC 0x00000002 -#define PRODUCT_HOME_PREMIUM 0x00000003 -#define PRODUCT_ENTERPRISE 0x00000004 -#define PRODUCT_HOME_BASIC_N 0x00000005 -#define PRODUCT_BUSINESS 0x00000006 -#define PRODUCT_STANDARD_SERVER 0x00000007 -#define PRODUCT_DATACENTER_SERVER 0x00000008 -#define PRODUCT_SMALLBUSINESS_SERVER 0x00000009 -#define PRODUCT_ENTERPRISE_SERVER 0x0000000A -#define PRODUCT_STARTER 0x0000000B -#define PRODUCT_DATACENTER_SERVER_CORE 0x0000000C -#define PRODUCT_STANDARD_SERVER_CORE 0x0000000D -#define PRODUCT_ENTERPRISE_SERVER_CORE 0x0000000E -#define PRODUCT_ENTERPRISE_SERVER_IA64 0x0000000F -#define PRODUCT_BUSINESS_N 0x00000010 -#define PRODUCT_WEB_SERVER 0x00000011 -#define PRODUCT_CLUSTER_SERVER 0x00000012 -#define PRODUCT_HOME_SERVER 0x00000013 -#define PRODUCT_STORAGE_EXPRESS_SERVER 0x00000014 -#define PRODUCT_STORAGE_STANDARD_SERVER 0x00000015 -#define PRODUCT_STORAGE_WORKGROUP_SERVER 0x00000016 -#define PRODUCT_STORAGE_ENTERPRISE_SERVER 0x00000017 -#define PRODUCT_SERVER_FOR_SMALLBUSINESS 0x00000018 -#define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM 0x00000019 - -#define PRODUCT_UNLICENSED 0xABCDABCD -#endif - -typedef void (WINAPI *PGNSI)(LPSYSTEM_INFO); -typedef BOOL (WINAPI *PGPI)(DWORD, DWORD, DWORD, DWORD, PDWORD); - -bool GetOsInfo(String &kernel, String &kerVersion, String &kerArchitecture, String &distro, String &distVersion, String &desktop, String &deskVersion) -{ - OSVERSIONINFOEX osvi; - SYSTEM_INFO si; - PGNSI pGNSI; - PGPI pGPI; - BOOL bOsVersionInfoEx; - DWORD dwType; - - ZeroMemory(&si, sizeof(SYSTEM_INFO)); - ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX)); - - osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX); - - if(!(bOsVersionInfoEx = GetVersionEx((OSVERSIONINFO *) &osvi))) - return false; - - // Call GetNativeSystemInfo if supported or GetSystemInfo otherwise. - pGNSI = (PGNSI) GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetNativeSystemInfo"); - if(NULL != pGNSI) - pGNSI(&si); - else - GetSystemInfo(&si); - - kerVersion = Format("%d.%d", (int)osvi.dwMajorVersion, (int)osvi.dwMinorVersion); - kernel = "Windows"; - if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_AMD64) - kerArchitecture = "64 bits"; - else if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_IA64) - kerArchitecture = "Itanium 64 bits"; - else if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_INTEL) - kerArchitecture = "32 bits"; - else - kerArchitecture = "Unknown"; //PROCESSOR_ARCHITECTURE_UNKNOWN - if (VER_PLATFORM_WIN32_NT==osvi.dwPlatformId && osvi.dwMajorVersion > 4 ) { - // Test for the specific product. - if ( osvi.dwMajorVersion == 6 && osvi.dwMinorVersion == 0 ) { - if( osvi.wProductType == VER_NT_WORKSTATION ) - kernel.Cat(" Vista"); - else - kernel.Cat(" Server 2008"); - pGPI = (PGPI) GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetProductInfo"); - pGPI( 6, 0, 0, 0, &dwType); - - switch( dwType ) { - case PRODUCT_ULTIMATE: - distro = "Ultimate Edition"; - break; - case PRODUCT_HOME_PREMIUM: - distro = "Home Premium Edition"; - break; - case PRODUCT_HOME_BASIC: - distro = "Home Basic Edition"; - break; - case PRODUCT_ENTERPRISE: - distro = "Enterprise Edition"; - break; - case PRODUCT_BUSINESS: - distro = "Business Edition"; - break; - case PRODUCT_STARTER: - distro = "Starter Edition"; - break; - case PRODUCT_CLUSTER_SERVER: - distro = "Cluster Server Edition"; - break; - case PRODUCT_DATACENTER_SERVER: - distro = "Datacenter Edition"; - break; - case PRODUCT_DATACENTER_SERVER_CORE: - distro = "Datacenter Edition (core installation)"; - break; - case PRODUCT_ENTERPRISE_SERVER: - distro = "Enterprise Edition"; - break; - case PRODUCT_ENTERPRISE_SERVER_CORE: - distro = "Enterprise Edition (core installation)"; - break; - case PRODUCT_ENTERPRISE_SERVER_IA64: - distro = "Enterprise Edition for Itanium-based Systems"; - break; - case PRODUCT_SMALLBUSINESS_SERVER: - distro = "Small Business Server"; - break; - case PRODUCT_SMALLBUSINESS_SERVER_PREMIUM: - distro = "Small Business Server Premium Edition"; - break; - case PRODUCT_STANDARD_SERVER: - distro = "Standard Edition"; - break; - case PRODUCT_STANDARD_SERVER_CORE: - distro = "Standard Edition (core installation)"; - break; - case PRODUCT_WEB_SERVER: - distro = "Web Server Edition"; - break; - } - } - if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2) { - if (GetSystemMetrics(SM_SERVERR2) ) - kernel.Cat(" Server 2003 R2"); - else if ( osvi.wSuiteMask==VER_SUITE_STORAGE_SERVER ) - kernel.Cat(" Storage Server 2003"); - else if( osvi.wProductType == VER_NT_WORKSTATION && si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_AMD64) - kernel.Cat(" XP Professional x64 Edition"); - else - kernel.Cat(" Server 2003"); - // Test for the server type. - if (osvi.wProductType != VER_NT_WORKSTATION ) { - if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_IA64 ) { - if(osvi.wSuiteMask & VER_SUITE_DATACENTER ) - distro = "Datacenter Edition for Itanium-based Systems"; - else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE ) - distro = "Enterprise Edition for Itanium-based Systems"; - } - } else if (si.wProcessorArchitecture==PROCESSOR_ARCHITECTURE_AMD64 ) { - if(osvi.wSuiteMask & VER_SUITE_DATACENTER ) - distro = "Datacenter x64 Edition"; - else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE ) - distro = "Enterprise x64 Edition"; - else - distro = "Standard x64 Edition"; - } else { - if (osvi.wSuiteMask & VER_SUITE_COMPUTE_SERVER ) - distro = "Compute Cluster Edition"; - else if(osvi.wSuiteMask & VER_SUITE_DATACENTER ) - distro = "Datacenter Edition"; - else if(osvi.wSuiteMask & VER_SUITE_ENTERPRISE ) - distro = "Enterprise Edition"; - else if (osvi.wSuiteMask & VER_SUITE_BLADE ) - distro = "Web Edition"; - else - distro = "Standard Edition"; - } - } - if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1 ) { - kernel.Cat(" XP"); - if(osvi.wSuiteMask & VER_SUITE_PERSONAL ) - distro = "Home Edition"; - else - distro = "Professional"; - } - if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 0 ) { - kernel.Cat(" 2000"); - if ( osvi.wProductType == VER_NT_WORKSTATION ) - distro = "Professional"; - else { - if(osvi.wSuiteMask & VER_SUITE_DATACENTER ) - distro = "Datacenter Server"; - else if( osvi.wSuiteMask & VER_SUITE_ENTERPRISE ) - distro = "Advanced Server"; - else - distro = "Server"; - } - } - // Include service pack (if any) and build number. - if(osvi.wServicePackMajor > 0) - kerVersion.Cat(Format(" %s", osvi.szCSDVersion)); - - kerVersion.Cat(Format(" (Build %d)", (int)osvi.dwBuildNumber)); - } else if (osvi.dwPlatformId == 1) { - switch(osvi.dwMinorVersion) { - case 0: - kernel.Cat(" 95"); - break; - case 10: - kernel.Cat(" 98"); - break; - case 90: - kernel.Cat(" Millennium"); - break; - } - distro = ""; - } else if (osvi.dwPlatformId == 2) { - switch(osvi.dwMajorVersion) { - kernel.Cat(" NT"); - case 3: - kernel.Cat(" 3.51"); - break; - case 4: - kernel.Cat(" 4.0"); - break; - } - distro = ""; - } - desktop = kernel; - distVersion = deskVersion = ""; - return true; -} -#endif -#ifdef PLATFORM_POSIX - -bool GetOsInfo_CheckLsb(String &distro, String &distVersion) -{ - StringParse lsb; - lsb = LoadFile_Safe("/etc/lsb-release"); - if (lsb == "") - return false; - if(!lsb.GoAfter("DISTRIB_ID=")) - return false; - distro = ToLower(lsb.GetText()); - if (distro == "") - return false; - lsb.GoAfter_Init("DISTRIB_RELEASE="); - distVersion = lsb.GetText(); - - return true; -} -String GetDesktopManagerNew() -{ - String kernel, kerVersion, kerArchitecture, distro, distVersion, desktop, deskVersion; - if (GetOsInfo(kernel, kerVersion, kerArchitecture, distro, distVersion, desktop, deskVersion)) - return desktop; - else - return String(""); -} -bool GetOsInfo(String &kernel, String &kerVersion, String &kerArchitecture, String &distro, String &distVersion, String &desktop, String &deskVersion) -{ - struct utsname buf; - - if (0 == uname(&buf)) { - kernel = buf.sysname; - kerVersion = String(buf.release) + " " + String(buf.version); - kerArchitecture = buf.machine; - } - if (kernel == "") - kernel = LoadFile_Safe("/proc/sys/kernel/ostype"); - if (kernel == "") - kernel = LoadFile_Safe("/proc/version"); - if (kernel == "") { - if (LaunchCommand("sysctl_cmd -n kern.version").Find("FreeBSD") >= 0) - kernel = "freebsd"; - } - if (kerVersion == "") - kerVersion = LoadFile_Safe("/proc/sys/kernel/osrelease") + " " + LoadFile_Safe("/proc/sys/kernel/version"); - if (kerArchitecture == "") - kerArchitecture = LaunchCommand("uname -m"); // Kernel. See too /proc/version, /proc/version_signature and uname -a looking for architecture - - if (kernel == "") - kernel = kerVersion = kerArchitecture = "UNKNOWN"; - - // Desktop - if(GetEnv("GNOME_DESKTOP_SESSION_ID").GetCount() || GetEnv("GNOME_KEYRING_SOCKET").GetCount()) { - desktop = "gnome"; - StringParse gnomeVersion = LaunchCommand("gnome-about --version"); - gnomeVersion.GoAfter("gnome-about"); - deskVersion = gnomeVersion.GetText(); - } else if(GetEnv("KDE_FULL_SESSION").GetCount() || GetEnv("KDEDIR").GetCount() || GetEnv("KDE_MULTIHEAD").GetCount()) { - desktop = "kde"; - StringParse konsole = LaunchCommand("konsole --version"); - konsole.GoAfter("KDE:"); - deskVersion = konsole.GetText("\r\n"); - if (deskVersion == "") - deskVersion = GetEnv("KDE_SESSION_VERSION"); - } else { - StringParse desktopStr; - if (LaunchCommand("xprop -root _DT_SAVE_MODE").Find("xfce") >= 0) - desktop = "xfce"; - else if ((desktopStr = LaunchCommand("xprop -root")).Find("ENLIGHTENMENT") >= 0) { - desktop = "enlightenment"; - desktopStr.GoAfter("ENLIGHTENMENT_VERSION(STRING)", "="); - desktopStr = desktopStr.GetText(); - if (desktopStr.GetText() == "Enlightenment") - deskVersion = desktopStr.GetText(); - } else - desktop = GetEnv("DESKTOP_SESSION"); - } - if (desktop == "") - desktop = deskVersion = "UNKNOWN"; - - // Distro - if (GetOsInfo_CheckLsb(distro, distVersion)) - ; - else if (FileExists("/usr/share/doc/ubuntu-minimal")) - distro = "ubuntu"; - else if (FileExists("/etc/fedora-release")) { - distro = "fedora"; - StringParse strFile = LoadFile_Safe("/etc/fedora-release"); - String str; - do { - str = strFile.GetText(); - if ((str != "fedora") && (str != "release")) - distVersion << str << " "; - } while (str != ""); - } else if (FileExists("/etc/redhat-release")) { - distro = "redhat"; - distVersion = LoadFile_Safe("/etc/redhat-release"); - } else if (FileExists("/etc/SuSE-release")) { - StringParse strFile = LoadFile_Safe("/etc/SuSE-release"); - distro = strFile.GetText(); - strFile.GoAfter_Init("VERSION", "="); - distVersion = strFile.GetText(); - } else if (FileExists("/etc/mandrake-release")) { - distro = "mandrake"; - distVersion = LoadFile_Safe("/etc/mandrake-release"); - } else if (FileExists("/etc/mandriva-release")) { - distro = "mandriva"; - distVersion = LoadFile_Safe("/etc/mandriva-release"); - } else if (FileExists("/etc/aurox-release")) { - distro = "aurox"; - distVersion = LoadFile_Safe("/etc/aurox-release"); - } else if (FileExists("/etc/altlinux-release")) { - distro = "altlinux"; - distVersion = LoadFile_Safe("/etc/altlinux-releas"); - } else if (FileExists("/etc/gentoo-release")) { - distro = "gentoo"; - distVersion = LoadFile_Safe("/etc/gentoo-release"); - } else if (FileExists("/usr/portage")) { - distro = "gentoo"; - distVersion = LoadFile_Safe("/usr/portage"); - } else if (FileExists("/etc/slackware-version")) { - distro = "slackware"; - StringParse strFile = LoadFile_Safe("/etc/slackware-version"); - strFile.GetText(); - distVersion = strFile.GetText(); - } else if (FileExists("/etc/debian_version")) { - distro = "debian"; - distVersion = LoadFile_Safe("/etc/debian_version"); - } else if (LoadFile_Safe("/etc/release").Find("Solaris") >= 0) - distro = "solaris"; - else if (LaunchCommand("uname -r").Find("solaris") >= 0) - distro = "solaris"; - else { // If not try with /etc/osname_version - distro = LoadFile_Safe("/etc/osname_version"); - distVersion = ""; - } - if (distro == "") - distro = LoadFile_Safe("/etc/issue"); - if (distro == "") - distro = distVersion = "UNKNOWN"; - - return true; -} - -#endif - -///////////////////////////////////////////////////////////////////// -// Others - -long GetProcessId() {return getpid();} - -///////////////////////////////////////////////////////////////////// -// Drives list -#if defined(PLATFORM_WIN32) - -Array GetDriveList() -{ - char drvStr[26*4+1]; // A, B, C, ... - Array ret; - - int lenDrvStrs = ::GetLogicalDriveStrings(sizeof(drvStr), drvStr); - // To get the error call GetLastError() - if (lenDrvStrs == 0) - return ret; - - ret.Add(drvStr); - for (int i = 0; i < lenDrvStrs-1; ++i) { - if (drvStr[i] == '\0') - ret.Add(drvStr + i + 1); - } - return ret; -} - -bool GetDriveSpace(String drive, -//uint64 &totalBytes, // To determine the total number of bytes on a disk or volume, use IOCTL_DISK_GET_LENGTH_INFO. -uint64 &freeBytesUser, // Total number of free bytes on a disk that are available to the user who is associated with the calling thread. -uint64 &totalBytesUser, // Total number of bytes on a disk that are available to the user who is associated with the calling thread. -uint64 &totalFreeBytes) // Total number of free bytes on a disk. -{ - StringBuffer sb(drive); - - if(!GetDiskFreeSpaceEx(sb, (PULARGE_INTEGER)&freeBytesUser, (PULARGE_INTEGER)&totalBytesUser, (PULARGE_INTEGER)&totalFreeBytes)) - return false; - //totalBytes = 0; - return true; -} -// return true if mounted -bool GetDriveInformation(String drive, String &type, String &volume, /*uint64 &serial, */int &maxName, String &fileSystem) -{ - StringBuffer sb(drive); - - switch (::GetDriveType(sb)) { - case DRIVE_UNKNOWN: type = "Drive unknown"; break; - case DRIVE_NO_ROOT_DIR: type = "The root directory does not exist"; break; - case DRIVE_REMOVABLE: - switch (*sb) { - case 'A': - case 'B': type = "Floppy"; - volume = fileSystem = ""; - /*serial = */maxName = 0; - return false; - default: type = "Removable"; break; - } - break; - case DRIVE_FIXED: type = "Hard"; break; - case DRIVE_REMOTE: type = "Network"; break; - case DRIVE_CDROM: type = "Optical"; break; - case DRIVE_RAMDISK: type = "RAM"; break; - } - char vol[MAX_PATH], fs[MAX_PATH]; - long flags; - uint64 serial; - uint64 _maxName; - if(!::GetVolumeInformation(sb, vol, MAX_PATH, (LPDWORD)&serial, (LPDWORD)&_maxName, (LPDWORD)&flags, fs, MAX_PATH)) - return false; - volume = vol; - fileSystem = fs; - maxName = (int)maxName; - - return true; -} - -#elif defined(PLATFORM_POSIX) - -Array GetDriveList() -{ - Array ret; - // Search for mountable file systems - String mountableFS; - StringParse sfileSystems(LoadFile_Safe("/proc/filesystems")); - String str; - while (true) { - str = sfileSystems.GetText(); - if (str == "") - break; - else if (str != "nodev") - mountableFS << str << "."; - else - str = sfileSystems.GetText(); - } - // Get mounted drives - StringParse smounts(LoadFile_Safe("/proc/mounts")); - StringParse smountLine(smounts.GetText("\r\n")); - do { - String devPath = smountLine.GetText(); - String mountPath = smountLine.GetText(); - String fs = smountLine.GetText(); - if ((mountableFS.Find(fs) >= 0) && (mountPath.Find("/dev") < 0) && (mountPath.Find("/rofs") < 0)) // Is mountable - ret.Add(mountPath); - smountLine = smounts.GetText("\r\n"); - } while (smountLine != ""); - - return ret; -} -bool GetDriveSpace(String drive, -//uint64 &totalBytes, // To determine the total number of bytes on a disk or volume, use IOCTL_DISK_GET_LENGTH_INFO. -uint64 &freeBytesUser, // Total number of free bytes on a disk that are available to the user who is associated with the calling thread. -uint64 &totalBytesUser, // Total number of bytes on a disk that are available to the user who is associated with the calling thread. -uint64 &totalFreeBytes) // Total number of free bytes on a disk. -{ - freeBytesUser = totalBytesUser = totalFreeBytes = 0; - - StringParse space = LaunchCommand("df -T"); - if (space == "") - return false; - - while (drive != space.GetText()) - ; - space.MoveRel(-10); space.GoBeginLine(); - space.GetText(); space.GetText(); // Jumps over device path and filesystem - totalBytesUser = 1024*space.GetUInt64(); - space.GetText(); // Jumps over used space - freeBytesUser = totalFreeBytes = 1024*space.GetUInt64(); - return true; -} - -// return true if mounted -bool GetDriveInformation(String drive, String &type, String &volume, /*uint64 &serial, */int &maxName, String &fileSystem) -{ - StringParse info = LaunchCommand("mount -l"); - if (info == "") - return false; - String straux; - while (drive != (straux = info.GetText())) - if (straux == "") - return false; - - if("type" != info.GetText()) // Jumps over "type" - return false; - - fileSystem = info.GetText(); - String details = info.GetText(); - info.GoAfter("["); - volume = info.GetText("]"); - //serial = 0; // Unknown - if ((fileSystem == "udf" || fileSystem == "iso9660") && details.Find("ro") >=0) - type = "Optical"; - else if (details.Find("flush") >=0) - type = "Removable"; - else - type = "Hard"; - - struct statfs buf; - if (0 == statfs(drive, &buf)) { - //puts(Format("%x", buf.f_type)); // Filesystem type - maxName = buf.f_namelen; - } else { - maxName = 0; - } -} - -#endif - -#if defined (PLATFORM_WIN32) -unsigned __int64 spstart, spstop; -unsigned __int64 nCtr, nFreq, nCtrStop; - -#if defined(__MINGW32__) - -int GetCpuSpeed() -{ - if(!QueryPerformanceFrequency((LARGE_INTEGER *) &nFreq)) - return 0; - - QueryPerformanceCounter((LARGE_INTEGER *)&nCtrStop); - nCtrStop += nFreq/10000; - - __asm__(".byte 0x0F"); - __asm__(".byte 0x31"); - __asm__("mov %eax,_spstart"); - __asm__("mov %edx,4+(_spstart)"); - - do - QueryPerformanceCounter((LARGE_INTEGER *)&nCtr); - while (nCtr < nCtrStop); - - __asm__(".byte 0x0F"); - __asm__(".byte 0x31"); - __asm__("mov %eax,_spstop"); - __asm__("mov %edx,4+(_spstop)"); - - return (int)((spstop-spstart)/100); -} -#elif defined(_MSC_VER) -int GetCpuSpeed() -{ - if(!QueryPerformanceFrequency((LARGE_INTEGER *) &nFreq)) - return 0; - QueryPerformanceCounter((LARGE_INTEGER *) &nCtrStop); - nCtrStop += nFreq/10000; - - _asm { - __asm _emit 0x0f - __asm _emit 0x31 - mov DWORD PTR spstart, eax - mov DWORD PTR [spstart + 4], edx - } - do - QueryPerformanceCounter((LARGE_INTEGER *) &nCtr); - while (nCtr < nCtrStop); - _asm { - __asm _emit 0x0f - __asm _emit 0x31 - mov DWORD PTR spstop, eax - mov DWORD PTR [spstop + 4], edx - } - return (int)((spstop-spstart)/100); -} -#endif -#endif -#if defined(PLATFORM_POSIX) - -#define RDTSC_READ(tm) __asm__ __volatile__ (".byte 0x0f; .byte 0x31" :"=a" (tm)) -#define COUNT_SEC (double)tv.tv_sec + (1.e-6)*tv.tv_usec - -int GetCpuSpeed() -{ - struct timeval tv; - double cnt1,cnt2; - unsigned long start,end; - - RDTSC_READ(start); - gettimeofday(&tv, 0); - cnt1 = COUNT_SEC + 0.01; - - do { - gettimeofday(&tv, 0); - cnt2 = COUNT_SEC; - } while(cnt2 < cnt1); - - RDTSC_READ(end); - - return (int)((end-start)/10000); -} -#endif -#if defined(PLATFORM_WIN32) - -#define SHTDN_REASON_MINOR_OTHER 0 - -bool Shutdown(String action) -{ - unsigned int flag; - if (action == "logoff") - flag = EWX_LOGOFF; -// else if (action == "poweroff") -// flag = EWX_POWEROFF; - else if (action == "reboot") - flag = EWX_REBOOT; - else if (action == "shutdown") - flag = EWX_SHUTDOWN; - else - return false; - - HANDLE hToken; - TOKEN_PRIVILEGES tkp; - - // Get a token for this process. - if (!OpenProcessToken(GetCurrentProcess(), - TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) - return false; - - // Get the LUID for the shutdown privilege. - LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, &tkp.Privileges[0].Luid); - - tkp.PrivilegeCount = 1; // one privilege to set - tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; - - // Get the shutdown privilege for this process. - AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, - (PTOKEN_PRIVILEGES)NULL, 0); - - if (GetLastError() != ERROR_SUCCESS) - return false; - - // Shut down the system and force all applications to close. - if (!ExitWindowsEx(flag | EWX_FORCE, SHTDN_REASON_MINOR_OTHER)) - return false; - - return true; -} -#endif - -#ifdef PLATFORM_POSIX -bool Shutdown(String action) -{ - if (action == "logoff") { - kill(1, SIGTSTP); - sync(); - signal(SIGTERM, SIG_IGN); - setpgrp(); - kill(-1, SIGTERM); - sleep(1); - kill(-1, SIGHUP); //* Force PPPD's down, too * - sleep(1); - kill(-1, SIGKILL); - sync(); - sleep(1); - } else if (action == "shutdown") { -#if __GNU_LIBRARY__ > 5 - reboot(0xCDEF0123); -#else - reboot(0xfee1dead, 672274793, 0xCDEF0123); -#endif - } else if (action == "reboot") { // LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2 -#if __GNU_LIBRARY__ > 5 - reboot(0x01234567); -#else - reboot(0xfee1dead, 672274793, 0x01234567); -#endif - } - exit(0); - return true; -} -#endif - -String BytesToKMGT(uint64 _bytes) -{ - String ret; - uint64 bytes = _bytes; - - if (bytes >= 1024) { - bytes /= 1024; - if (bytes >= 1024) { - bytes /= 1024; - if (bytes >= 1024) { - bytes /= 1024; - if (bytes >= 1024) { - bytes /= 1024; - ret = Format("%.1f%s", _bytes/(1024*1024*1024*1024.), "Tb"); - } else - ret = Format("%.1f%s", _bytes/(1024*1024*1024.), "Gb"); - } else - ret = Format("%.1f%s", _bytes/(1024*1024.), "Mb"); - } else - ret = Format("%.1f%s", _bytes/1024., "Kb"); - } else - ret << _bytes << "b"; - return ret; -} - -void GetCompilerInfo(String &name, int &version, String &date) -{ - name = ""; - version = 0; - date = __DATE__; - #if defined(WIN32) - #if defined(__MINGW32__) - name = "mingw"; - version = __GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__; // __VERSION__ - #elif defined(COMPILER_MSC) - name = "msc"; - version = _MSC_FULL_VER; - #elif defined (__BORLANDC__) - name = "borlandc" - version = __BORLANDC__; - #elif defined (__WATCOMC__) - name = "watcomc" - version = __WATCOMC__; - #endif - #elif defined (PLATFORM_POSIX) - #if defined(__GNUC__) - name = "gnuc"; - version = __GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__; - #endif - #elif defined (__APPLE__) - // In a next future? - #endif -} - - -#ifdef PLATFORM_POSIX -bool GetBatteryStatus(bool &discharging, int &percentage, int &remainingMin) -{ - percentage = 100; - Array files = SearchFile("/proc/acpi/battery", "state"); - if (files.GetCount() == 0) - return false; - StringParse state = LoadFile_Safe(files[0]); - if (state == "") - return false; - bool present; - if(!state.GoAfter_Init("present", ":")) - return false; - present = state.GetText() == "yes"; - if (!present) - return false; // No battery inserted - state.GoAfter_Init("charging state", ":"); discharging = state.GetText() == "discharging"; - int presentRate, remainingCapacity; - state.GoAfter_Init("present rate", ":"); presentRate = state.GetInt(); - state.GoAfter_Init("remaining capacity", ":"); remainingCapacity = state.GetInt(); - if (presentRate == 0 || !discharging) - remainingMin = 10000; - else - remainingMin = (int)((60.*remainingCapacity)/presentRate); - - int designCapacity,lastFullCapacity; - String vendor, type, model, serial; - if (!GetBatteryInfo(present/*, designCapacity, lastFullCapacity, vendor, type, model, serial*/)) - percentage = (int)((100.*remainingCapacity)/lastFullCapacity); - return true; -} -bool GetBatteryInfo(bool &present/*, int &designCapacity, int &lastFullCapacity, String &vendor, String &type, String &model, String &serial*/) -{ - Array files = SearchFile("/proc/acpi/battery", "info"); - if (files.GetCount() == 0) - return false; - StringParse info = LoadFile_Safe(files[0]); - if (info == "") - return false; - info.GoAfter_Init("present", ":"); present = info.GetText() == "yes"; - /* - info.GoAfter_Init("design capacity", ":"); designCapacity = info.GetInt(); - info.GoAfter_Init("last full capacity", ":");lastFullCapacity = info.GetInt(); - info.GoAfter_Init("OEM info", ":"); vendor = info.GetText(); - info.GoAfter_Init("battery type", ":"); type = info.GetText(); - info.GoAfter_Init("model number", ":"); model = info.GetText(); - info.GoAfter_Init("serial number", ":"); serial = info.GetText(); - */ - return true; -} - -#endif -#if defined(PLATFORM_WIN32) -bool GetBatteryStatus(bool &discharging, int &percentage, int &remainingMin) -{ - SYSTEM_POWER_STATUS power; - - if(::GetSystemPowerStatus(&power) == 0) - return false; - - if (power.ACLineStatus == 1) - discharging = false; - else - discharging = true; - percentage = power.BatteryLifePercent; - remainingMin = (int)(power.BatteryLifeTime/60); - - return true; -} -bool GetBatteryInfo(bool &present/*, int &designCapacity, int &lastFullCapacity, String &vendor, String &type, String &model, String &serial*/) -{ - SYSTEM_POWER_STATUS power; - - if(::GetSystemPowerStatus(&power) == 0) - return false; - if (power.BatteryFlag == 128) - return false; // No battery - - //designCapacity = (int)(power.BatteryFullLifeTime/60.); - - present = true; - //power.ACLineStatus == 0; - //lastFullCapacity = 0; - //vendor = type = model = serial = "UNKNOWN"; - - return true; -} -#endif - -#if defined(PLATFORM_WIN32) - -void Mouse_LeftDown() -{ - mouse_event (MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0); -} -void Mouse_LeftUp() -{ - mouse_event (MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); -} -void Mouse_MiddleDown() -{ - mouse_event (MOUSEEVENTF_MIDDLEDOWN, 0, 0, 0, 0); -} -void Mouse_MiddleUp() -{ - mouse_event (MOUSEEVENTF_MIDDLEUP, 0, 0, 0, 0); -} -void Mouse_RightDown() -{ - mouse_event (MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0); -} -void Mouse_RightUp() -{ - mouse_event (MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0); -} -void Mouse_LeftClick() -{ - Mouse_LeftDown(); - Mouse_LeftUp(); -} -void Mouse_MiddleClick() -{ - Mouse_MiddleDown(); - Mouse_MiddleUp(); -} -void Mouse_RightClick() -{ - Mouse_RightDown(); - Mouse_RightUp(); -} -void Mouse_LeftDblClick() -{ - Mouse_LeftClick(); - Mouse_LeftClick(); -} -void Mouse_MiddleDblClick() -{ - Mouse_MiddleClick(); - Mouse_MiddleClick(); -} -void Mouse_RightDblClick() -{ - Mouse_RightClick(); - Mouse_RightClick(); -} - -bool PutWindowPlacement(HWND hwnd, RECT rcNormalPosition, POINT ptMinPosition, POINT ptMaxPosition, long showcmd, long flags) -{ - WINDOWPLACEMENT place; - - place.ptMinPosition = ptMinPosition; - place.ptMaxPosition = ptMaxPosition; - place.rcNormalPosition = rcNormalPosition; - place.showCmd = showcmd; - place.flags = flags; - place.length = sizeof(place); - return SetWindowPlacement(hwnd, &place); -} -bool TakeWindowPlacement(HWND hwnd, RECT &rcNormalPosition, POINT &ptMinPosition, POINT &ptMaxPosition, long &showcmd) -{ - WINDOWPLACEMENT place; - - place.length = sizeof(place); - bool ret = GetWindowPlacement(hwnd, &place); - ptMinPosition = place.ptMinPosition; - ptMaxPosition = place.ptMaxPosition; - rcNormalPosition = place.rcNormalPosition; - showcmd = place.showCmd; //SW_SHOWMAXIMIZED, SW_SHOWMINIMIZED, SW_SHOWNORMAL - //flags = place.flags; // Always 0 - - return ret; -} -bool Window_GetRect(long windowId, long &left, long &top, long &right, long &bottom) -{ - RECT rcNormalPosition; - POINT ptMinPosition, ptMaxPosition; - long showcmd; - - TakeWindowPlacement((HWND)windowId, rcNormalPosition, ptMinPosition, ptMaxPosition, showcmd); - - left = rcNormalPosition.left; - top = rcNormalPosition.top; - right = rcNormalPosition.right; - bottom = rcNormalPosition.bottom; - - return true; -} -void Window_SetRect(long windowId, long left, long top, long right, long bottom) -{ - RECT rcNormalPosition; - POINT ptMinPosition, ptMaxPosition; - long showcmd; - - TakeWindowPlacement((HWND)windowId, rcNormalPosition, ptMinPosition, ptMaxPosition, showcmd); - - rcNormalPosition.left = left; - rcNormalPosition.top = top; - rcNormalPosition.right = right; - rcNormalPosition.bottom = bottom; - PutWindowPlacement((HWND)windowId, rcNormalPosition, ptMinPosition, ptMaxPosition, showcmd, 0); -} -bool Mouse_SetPos(long xMove, long yMove, long windowId) -{ - long left, top, right, bottom; - - if (windowId != 0) { - Window_GetRect(windowId, left, top, right, bottom); - xMove = xMove + left; - yMove = yMove + top; - } - SetCursorPos(xMove, yMove); - DoEvents(); - - return true; -} -bool Mouse_GetPos(long &x, long &y) -{ - POINT p; - - GetCursorPos (&p); - x = p.x; - y = p.y; - - return true; -} - -struct KeyCodes { - String key; - int code; -}; - -KeyCodes keyCodes[60] = { - "NUMPAD7", VK_NUMPAD7, "BACK", VK_BACK, - "NUMPAD8", VK_NUMPAD8, "TAB", VK_TAB, - "NUMPAD9", VK_NUMPAD9, "RETURN", VK_RETURN, - "MULTIPLY", VK_MULTIPLY, "SHIFT", VK_SHIFT, - "ADD", VK_ADD, "CONTROL", VK_CONTROL, - "SEPARATOR", VK_SEPARATOR, "MENU", VK_MENU, - "SUBTRACT", VK_SUBTRACT, "PAUSE", VK_PAUSE, - "DECIMAL", VK_DECIMAL, "CAPITAL", VK_CAPITAL, - "DIVIDE", VK_DIVIDE, "ESCAPE", VK_ESCAPE, - "F1", VK_F1, "SPACE", VK_SPACE, - "F2", VK_F2, "END", VK_END, - "F3", VK_F3, "HOME", VK_HOME, - "F4", VK_F4, "LEFT", VK_LEFT, - "F5", VK_F5, "UP", VK_UP, - "F6", VK_F6, "RIGHT", VK_RIGHT, - "F7", VK_F7, "DOWN", VK_DOWN, - "F8", VK_F8, "PRINT", VK_PRINT, - "F9", VK_F9, "SNAPSHOT", VK_SNAPSHOT, - "F10", VK_F10, "INSERT", VK_INSERT, - "F11", VK_F11, "DELETE", VK_DELETE, - "F12", VK_F12, "LWIN", VK_LWIN, - "NUMLOCK", VK_NUMLOCK, "RWIN", VK_RWIN, - "SCROLL", VK_SCROLL, "NUMPAD0", VK_NUMPAD0, - "LSHIFT", VK_LSHIFT, "NUMPAD1", VK_NUMPAD1, - "RSHIFT", VK_RSHIFT, "NUMPAD2", VK_NUMPAD2, - "LCONTROL", VK_LCONTROL, "NUMPAD3", VK_NUMPAD3, - "RCONTROL", VK_RCONTROL, "NUMPAD4", VK_NUMPAD4, - "LMENU", VK_LMENU, "NUMPAD5", VK_NUMPAD5, - "RMENU", VK_RMENU, "NUMPAD6", VK_NUMPAD6, - "" -}; - -int GetKeyCode(String key) -{ - for (int i = 0; keyCodes[i].code != 0; ++i) - if (keyCodes[i].key == key) - return keyCodes[i].code; - return 0; -} - -void PressKey(int key, bool hold = false, bool release = false) -{ - bool caps, num, scroll; - if (IsLetter(key)) { - GetKeyLockStatus(caps, num, scroll); - if (caps) - SetKeyLockStatus(false, num, scroll); - } - long nVK = VkKeyScan(key); - - if (nVK == 0) - return; - - long nScan, nExtended; - - nScan = MapVirtualKey(nVK, 2); - nExtended = 0; - if (nScan == 0) - nExtended = KEYEVENTF_EXTENDEDKEY; - - nScan = MapVirtualKey(nVK, 0); - - bool shift, ctrl, alt; - - shift = nVK & 0x100; - ctrl = nVK & 0x200; - alt = nVK & 0x400; - nVK = nVK & 0xFF; - - if (!release) { - if (shift) - keybd_event (VK_SHIFT, 0, 0, 0); - if (ctrl) - keybd_event (VK_CONTROL, 0, 0, 0); - if (alt) - keybd_event (VK_MENU, 0, 0, 0); - - keybd_event ((BYTE)nVK, (BYTE)nScan, nExtended, 0); - } - if (!hold) { - keybd_event ((BYTE)nVK, (BYTE)nScan, KEYEVENTF_KEYUP | nExtended, 0); - - if (shift) - keybd_event (VK_SHIFT, 0, KEYEVENTF_KEYUP, 0); - if (ctrl) - keybd_event (VK_CONTROL, 0, KEYEVENTF_KEYUP, 0); - if (alt) - keybd_event (VK_MENU, 0, KEYEVENTF_KEYUP, 0); - } - if (IsLetter(key) && caps) - SetKeyLockStatus(true, num, scroll); -} -void PressKeyVK(int keyVK, bool hold = false, bool release = false, bool compatible = false) -{ - long nScan, nExtended; - - nScan = MapVirtualKey(keyVK, 2); - nExtended = 0; - if (nScan == 0) - nExtended = KEYEVENTF_EXTENDEDKEY; - nScan = MapVirtualKey(keyVK, 0); - - if (compatible) - nExtended = 0; - - if (!release) - keybd_event ((BYTE)keyVK, (BYTE)nScan, nExtended, 0); - - if (!hold) - keybd_event ((BYTE)keyVK, (BYTE)nScan, KEYEVENTF_KEYUP | nExtended, 0); -} - -void Keyb_SendKeys(String text, long finalDelay, long delayBetweenKeys) -{ - bool inKey = false; - String key = ""; - for (int i = 0; i < text.GetCount(); ++i) { - bool vk = false; - Sleep(delayBetweenKeys); - int c = text[i]; - if (c == '{') - inKey = true; - else if (c == '}') { - if (key == "{") - c = '{'; - else { - c = GetKeyCode(key); - vk = true; - } - inKey = false; - key = ""; - } else if (inKey == 1) - key.Cat(c); - - if (inKey == false) { - if (!vk) - PressKey(c); - else - PressKeyVK(c); - } - } - Sleep(finalDelay); -} - -void GetKeyLockStatus(bool &caps, bool &num, bool &scroll) -{ - caps = GetKeyState(VK_CAPITAL); - num = GetKeyState(VK_NUMLOCK); - scroll = GetKeyState(VK_SCROLL); -} -void SetKeyLockStatus(bool caps, bool num, bool scroll) -{ - bool capsnow, numnow, scrollnow; - - GetKeyLockStatus(capsnow, numnow, scrollnow); - if (capsnow != caps) - PressKeyVK(VK_CAPITAL); - if (numnow != num) - PressKeyVK(VK_NUMLOCK); - if (scrollnow != scroll) - PressKeyVK(VK_SCROLL); -} - -#if defined(__MINGW32__) - #define labs(x) labs((Upp::int64)(x)) -#elif defined(_MSC_VER) - #define labs(x) abs(x) -#endif - -bool Window_SaveCapture(long windowId, String fileName) -{ - if (windowId == 0) - windowId = (long)GetDesktopWindow(); - - if (GetFileExt(fileName) != ".bmp") - fileName += ".bmp"; - - RECT rc; - GetWindowRect ((HWND)windowId, &rc); - - int width = rc.right-rc.left; - int height = rc.bottom-rc.top; - - HDC hDC = GetDC(0); - HDC memDC = CreateCompatibleDC (hDC); - HBITMAP hb = CreateCompatibleBitmap (hDC, width, height); - HBITMAP OldBM = (HBITMAP)SelectObject(memDC, hb); - BitBlt(memDC, 0, 0, width, height , hDC, rc.left, rc.top , SRCCOPY); - - FILE *file = NULL; - LPVOID buf = NULL; - BITMAPINFO bmpInfo; - BITMAPFILEHEADER bmpFileHeader; - ZeroMemory(&bmpInfo, sizeof(BITMAPINFO)); - bmpInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); - GetDIBits(hDC, hb, 0, 0, NULL, &bmpInfo, DIB_RGB_COLORS); - if(bmpInfo.bmiHeader.biSizeImage <= 0) - bmpInfo.bmiHeader.biSizeImage = bmpInfo.bmiHeader.biWidth*labs(bmpInfo.bmiHeader.biHeight)*(bmpInfo.bmiHeader.biBitCount+7)/8; - if((buf = malloc(bmpInfo.bmiHeader.biSizeImage)) == NULL) - return false; - bmpInfo.bmiHeader.biCompression = BI_RGB; - GetDIBits(hDC, hb, 0, bmpInfo.bmiHeader.biHeight, buf, &bmpInfo, DIB_RGB_COLORS); - if((file = fopen(fileName,"wb")) == NULL) - return false; - bmpFileHeader.bfReserved1 = 0; - bmpFileHeader.bfReserved2 = 0; - bmpFileHeader.bfSize = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER)+bmpInfo.bmiHeader.biSizeImage; - bmpFileHeader.bfType = 19778; - bmpFileHeader.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER); - fwrite(&bmpFileHeader, sizeof(BITMAPFILEHEADER), 1, file); - fwrite(&bmpInfo.bmiHeader,sizeof(BITMAPINFOHEADER), 1, file); - fwrite(buf,bmpInfo.bmiHeader.biSizeImage, 1, file); - - free(buf); - fclose(file); - - SelectObject(hDC, OldBM); - DeleteObject(hb); - DeleteDC(memDC); - ReleaseDC(0, hDC); - - return true; -} -#endif - -#ifdef PLATFORM_POSIX - -bool Window_GetRect(long windowId, long &left, long &top, long &right, long &bottom) -{ - SetSysInfoX11ErrorHandler(); - Display *dpy = XOpenDisplay (NULL); - if (!dpy) { - SetX11ErrorHandler(); - return false; - } - bool ret = false; - Window rt; - int x, y, rx, ry; - unsigned int width, height, bw, depth_; - if (XGetGeometry(dpy, windowId, &rt, &x, &y, &width, &height, &bw, &depth_)) { - left = x; - top = y; - right = x + width; - bottom = y + height; - ret = true; - } -// Window child; -// if (XTranslateCoordinates (dpy, windowId, rt, 0, 0, &rx, &ry, &child)) -// printf (" +%d+%d", rx - bw, ry - bw); - - XCloseDisplay (dpy); - SetX11ErrorHandler(); - return ret; -} - -bool Mouse_GetPos(long &x, long &y) -{ - SetSysInfoX11ErrorHandler(); - Display *dpy = XOpenDisplay (NULL); - if (!dpy) { - SetX11ErrorHandler(); - return false; - } - bool ret = false; - Window root, child; - Window r = DefaultRootWindow(dpy); - int retx, rety; - int wx, wy; - unsigned int keys_buttons; - if (XQueryPointer(dpy, r, &root, &child, &retx, &rety, &wx, &wy, &keys_buttons)) { - x = wx; - y = wy; - ret = true; - } else - x = y = -1; - - XCloseDisplay (dpy); - SetX11ErrorHandler(); - - return ret; -} - -bool Mouse_SetPos(long x, long y, long windowId) -{ - SetSysInfoX11ErrorHandler(); - Display *dpy = XOpenDisplay (NULL); - if (!dpy) { - SetX11ErrorHandler(); - return false; - } - long left, top, right, bottom; - Window r = DefaultRootWindow(dpy); - if (windowId != 0) { - Window_GetRect(windowId, left, top, right, bottom); - x = x + left; - y = y + top; - } - XWarpPointer(dpy, None, r, 0, 0, 0, 0, x, y); - XCloseDisplay (dpy); - SetX11ErrorHandler(); - - return true; -} - -bool Window_SaveCapture(long windowId, String fileName) -{ - if (GetFileExt(fileName) != ".xwd") - fileName += ".xwd"; - - String command; - if (windowId == 0) - command = "xwd -root -silent -out \"" + fileName + "\""; - else - command = "xwd -id " + FormatLong(windowId) + " -silent -out \"" + fileName + "\""; - - String strret; - int ret = LaunchCommand(command, strret); - - return ret == 0 ? true : false; -} - -#endif diff --git a/bazaar/SysInfo/SysInfo.h b/bazaar/SysInfo/SysInfo.h deleted file mode 100644 index 3b87a28d4..000000000 --- a/bazaar/SysInfo/SysInfo.h +++ /dev/null @@ -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 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 &wid, Array &pid, Array &name, Array &fileName, Array &title); -Array GetWindowsList(); - -///////////////////////////////////////////////////////////////////// -// Process list -// They get arrays with handles to all the opened processes and process names -bool GetProcessList(Array &pid, Array &pNames); -Array 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 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 diff --git a/bazaar/SysInfo/SysInfo.upp b/bazaar/SysInfo/SysInfo.upp deleted file mode 100644 index 3df509d59..000000000 --- a/bazaar/SysInfo/SysInfo.upp +++ /dev/null @@ -1,15 +0,0 @@ -uses - Core; - -library(WIN32) psapi; - -library(!WIN32) X11; - -file - SysInfo.h, - SysInfo.cpp, - src.tpp; - -mainconfig - "" = ""; - diff --git a/bazaar/SysInfo/Testing results/Pending/logEnlightenment b/bazaar/SysInfo/Testing results/Pending/logEnlightenment deleted file mode 100644 index 021dc2799..000000000 --- a/bazaar/SysInfo/Testing results/Pending/logEnlightenment +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Pending/logFluxbox b/bazaar/SysInfo/Testing results/Pending/logFluxbox deleted file mode 100644 index d022f328d..000000000 --- a/bazaar/SysInfo/Testing results/Pending/logFluxbox +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Pending/logKde b/bazaar/SysInfo/Testing results/Pending/logKde deleted file mode 100644 index 28728221a..000000000 --- a/bazaar/SysInfo/Testing results/Pending/logKde +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Pending/logXfce b/bazaar/SysInfo/Testing results/Pending/logXfce deleted file mode 100644 index c261fd6e1..000000000 --- a/bazaar/SysInfo/Testing results/Pending/logXfce +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Pending/logindowMaker b/bazaar/SysInfo/Testing results/Pending/logindowMaker deleted file mode 100644 index 4e059ee2f..000000000 --- a/bazaar/SysInfo/Testing results/Pending/logindowMaker +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Pending/xpropWindowMaker b/bazaar/SysInfo/Testing results/Pending/xpropWindowMaker deleted file mode 100644 index e1e1f4575..000000000 --- a/bazaar/SysInfo/Testing results/Pending/xpropWindowMaker +++ /dev/null @@ -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 diff --git a/bazaar/SysInfo/Testing results/Pending/xpropenlightenment b/bazaar/SysInfo/Testing results/Pending/xpropenlightenment deleted file mode 100644 index f3546a0a0..000000000 --- a/bazaar/SysInfo/Testing results/Pending/xpropenlightenment +++ /dev/null @@ -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 diff --git a/bazaar/SysInfo/Testing results/Pending/xpropxfce b/bazaar/SysInfo/Testing results/Pending/xpropxfce deleted file mode 100644 index 59ec947a1..000000000 --- a/bazaar/SysInfo/Testing results/Pending/xpropxfce +++ /dev/null @@ -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 diff --git a/bazaar/SysInfo/Testing results/SysInfoOpenSuseGnome.log b/bazaar/SysInfo/Testing results/SysInfoOpenSuseGnome.log deleted file mode 100644 index b4f0e5ceb..000000000 --- a/bazaar/SysInfo/Testing results/SysInfoOpenSuseGnome.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfoOpenSuseKde.log b/bazaar/SysInfo/Testing results/SysInfoOpenSuseKde.log deleted file mode 100644 index ea5cec210..000000000 --- a/bazaar/SysInfo/Testing results/SysInfoOpenSuseKde.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Fedora.log b/bazaar/SysInfo/Testing results/SysInfo_Fedora.log deleted file mode 100644 index c67a137c5..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Fedora.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_FedoraKde.log b/bazaar/SysInfo/Testing results/SysInfo_FedoraKde.log deleted file mode 100644 index 8e85f3e77..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_FedoraKde.log +++ /dev/null @@ -1,2480 +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: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 928243712 bytes (885.2Mb) -Total paging file: 768692224 bytes (733.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241896448 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 926339072 bytes (883.4Mb) -Total paging file: 769077248 bytes (733.4Mb) -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: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241912832 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 925323264 bytes (882.5Mb) -Total paging file: 769683456 bytes (734.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241925120 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 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: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 924147712 bytes (881.3Mb) -Total paging file: 770043904 bytes (734.4Mb) -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: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241937408 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 923529216 bytes (880.7Mb) -Total paging file: 770576384 bytes (734.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241953792 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 922800128 bytes (880.1Mb) -Total paging file: 770805760 bytes (735.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241970176 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 921972736 bytes (879.3Mb) -Total paging file: 771788800 bytes (736.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2241982464 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 921120768 bytes (878.4Mb) -Total paging file: 771809280 bytes (736.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2242002944 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 920121344 bytes (877.5Mb) -Total paging file: 771989504 bytes (736.2Mb) -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: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2242015232 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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' -Window was closed before! - -Press enter to continue... - -Windows list: -Window hwnd: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20976120, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20976128, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20976141, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976143, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976145, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976147, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976121, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 58720257, processId: 4751, Name: kwrite - File name: /usr/bin/kwrite - Window caption: 'Untitled - KWrite ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo -Id 4751: Priority: 5, Program: /usr/bin/kwrite - -Press enter to end... -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: 2.241 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: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 913289216 bytes (871.0Mb) -Total paging file: 772820992 bytes (737.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2242027520 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20976474, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20976482, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20976495, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976497, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976499, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976501, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976475, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 58720257, processId: 4840, Name: kwrite - File name: /usr/bin/kwrite - Window caption: 'test.txt - KWrite ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo -Id 4837: Priority: 5, Program: /usr/bin/kfmclient -Id 4839: Priority: 5, Program: /usr/bin/kioclient -Id 4840: Priority: 5, Program: /usr/bin/kwrite - -Press enter to end... -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.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 1000 MHz - -Press enter to continue... - -Memory info: -Percent of memory in use: 56% -Total physical memory: 2115461120 bytes (2.0Gb) -Free physical memory: 911663104 bytes (869.4Mb) -Total paging file: 773394432 bytes (737.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.25-14.fc9.i686 #1 SMP Thu May 1 06:28:41 EDT 2008, - architecture: i686 - -Distro: fedora, version: Fedora 9 (Sulphur) -Desktop: kde, version: 4.0.3 (KDE 4.0.3) - -Program compiled with gnuc version 40103. Compilation date: Nov 27 2008 - -Default exes info: -Default program for '.html' is 'kfmclient_html.desktop' -Default program for '.doc' is 'kword.desktop' -Default program for '.png' is 'gwenview.desktop' -Default program for '.pdf' is 'okularApplication_pdf.desktop' -Default program for '.txt' is 'kwrite.desktop' -Default program for '.xyz' is '' - -Press enter to continue... - -Drives list: -Drive path:'/' - Type: 'Hard', Volume: 'Fedora-9-Live-KD', - MaxName: 255, File System: ext3 - Free Bytes User: 55296 (54.0Kb) - Total Bytes User: 2242043904 (2.1Gb), Total Free Bytes: 55296 (54.0Kb) -Drive path:'/mnt/live' - Type: 'Optical', Volume: 'Fedora-9-Live-KDE-i686', - MaxName: 255, File System: iso9660 - Free Bytes User: 0 (0b) - Total Bytes User: 724975616 (691.4Mb), Total Free Bytes: 0 (0b) -Drive path:'/media/disk' - Type: 'Hard', Volume: '', - MaxName: 260, File System: vfat - Free Bytes User: 426999808 (407.2Mb) - Total Bytes User: 509321216 (485.7Mb), Total Free Bytes: 426999808 (407.2Mb) - -Other Info: -Process Id: 3988 -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: 122, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971576, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971577, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068675, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: 'Qt-subapplication ' -Window hwnd: 20972385, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972393, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20972409, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972411, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972413, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972415, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20972386, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 50331649, processId: 3838, Name: dolphin - File name: /usr/bin/dolphin - Window caption: 'disk - Dolphin ' -Window hwnd: 20976892, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976900, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20976913, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976915, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976917, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976919, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20976893, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 56623105, processId: 4925, Name: kwrite - File name: /usr/bin/kwrite - Window caption: 'test.txt - KWrite ' -Window hwnd: 20971709, processId: 0, Name: - File name: - Window caption: '' - -Press enter to continue with the next 20 windows... -Window hwnd: 20971717, processId: 3330, Name: kwin - File name: /usr/bin/kwin - Window caption: 'kwin ' -Window hwnd: 20971733, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971735, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971737, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971739, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971710, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 29360129, processId: 3746, Name: konsole - File name: /usr/bin/konsole - Window caption: 'disk : SysInfoDemo ' -Window hwnd: 20971567, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 20971568, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 23068712, processId: 3364, Name: Qt-subapplication - File name: /usr/bin/plasma - Window caption: '' -Window hwnd: 20971563, processId: 0, Name: - File name: - Window caption: '' -Window hwnd: 27270230, processId: 0, Name: Qt-subapplication - File name: - Window caption: '' - -Press enter to continue... - -Process list: -Id 3141: Priority: 5, Program: /bin/bash -Id 3191: Priority: 5, Program: /usr/bin/dbus-launch -Id 3192: Priority: 5, Program: /bin/dbus-daemon -Id 3226: Priority: 5, Program: /bin/bash -Id 3258: Priority: 5, Program: /usr/bin/gpg-agent -Id 3292: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3293: Priority: 5, Program: /usr/libexec/kde4/klauncher -Id 3295: Priority: 5, Program: /usr/bin/kded4 -Id 3301: Priority: 5, Program: /usr/libexec/gam_server -Id 3321: Priority: 5, Program: /usr/bin/kwrapper4 -Id 3323: Priority: 5, Program: /usr/bin/ksmserver -Id 3330: Priority: 5, Program: /usr/bin/kwin -Id 3364: Priority: 5, Program: /usr/bin/plasma -Id 3434: Priority: 5, Program: /usr/bin/knotify4 -Id 3517: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3537: Priority: 5, Program: /usr/bin/krunner -Id 3552: Priority: 5, Program: /usr/bin/kaccess -Id 3553: Priority: 5, Program: /usr/bin/kmix -Id 3554: Priority: 5, Program: /usr/bin/kerneloops-applet -Id 3557: Priority: 5, Program: /usr/bin/nm-applet -Id 3558: Priority: 5, Program: /usr/bin/python -Id 3563: Priority: 5, Program: /usr/bin/python -Id 3568: Priority: 5, Program: /usr/bin/klipper -Id 3570: Priority: 5, Program: /usr/libexec/gconfd-2 -Id 3580: Priority: 5, Program: /usr/bin/kpowersave -Id 3586: Priority: 5, Program: /usr/bin/kdeinit -Id 3589: Priority: 5, Program: /usr/bin/dcopserver -Id 3591: Priority: 5, Program: /usr/bin/kdeinit -Id 3595: Priority: 5, Program: /usr/bin/kded -Id 3746: Priority: 5, Program: /usr/bin/konsole -Id 3747: Priority: 5, Program: /bin/bash -Id 3838: Priority: 5, Program: /usr/bin/dolphin -Id 3864: Priority: 5, Program: /usr/bin/kdeinit4 -Id 3988: Priority: 5, Program: /media/disk/SysInfoDemo -Id 4922: Priority: 5, Program: /usr/bin/kfmclient -Id 4924: Priority: 5, Program: /usr/bin/kioclient -Id 4925: Priority: 5, Program: /usr/bin/kwrite - -Press enter to end... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Kubuntu.log b/bazaar/SysInfo/Testing results/SysInfo_Kubuntu.log deleted file mode 100644 index 850dd6361..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Kubuntu.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_MandrivaGnome.log b/bazaar/SysInfo/Testing results/SysInfo_MandrivaGnome.log deleted file mode 100644 index bc8949756..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_MandrivaGnome.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Mandriva_2009_Kde_2008_12_01.log b/bazaar/SysInfo/Testing results/SysInfo_Mandriva_2009_Kde_2008_12_01.log deleted file mode 100644 index 20cfd4b00..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Mandriva_2009_Kde_2008_12_01.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_OpenGeui_Enlightenment.log b/bazaar/SysInfo/Testing results/SysInfo_OpenGeui_Enlightenment.log deleted file mode 100644 index 14f027b9e..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_OpenGeui_Enlightenment.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Slackware.log b/bazaar/SysInfo/Testing results/SysInfo_Slackware.log deleted file mode 100644 index d4dd8f510..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Slackware.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_32.log b/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_32.log deleted file mode 100644 index 0e4d3f50a..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_32.log +++ /dev/null @@ -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: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62914563, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62915607, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62915643, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_64.log b/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_64.log deleted file mode 100644 index 732854db6..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Ubuntu_8_04_Gnome_64.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Vista_32.log b/bazaar/SysInfo/Testing results/SysInfo_Vista_32.log deleted file mode 100644 index 89c681c16..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Vista_32.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_XP.log b/bazaar/SysInfo/Testing results/SysInfo_XP.log deleted file mode 100644 index b17c0f351..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_XP.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/SysInfo_Xubuntu_8.10_Xfce.log b/bazaar/SysInfo/Testing results/SysInfo_Xubuntu_8.10_Xfce.log deleted file mode 100644 index 59afed141..000000000 --- a/bazaar/SysInfo/Testing results/SysInfo_Xubuntu_8.10_Xfce.log +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/Testing results.xls b/bazaar/SysInfo/Testing results/Testing results.xls deleted file mode 100644 index 60b14283b..000000000 Binary files a/bazaar/SysInfo/Testing results/Testing results.xls and /dev/null differ diff --git a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 32 b/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 32 deleted file mode 100644 index 0e4d3f50a..000000000 --- a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 32 +++ /dev/null @@ -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: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62914563, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62915607, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 62915643, processId: 6411, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 b/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 deleted file mode 100644 index 732854db6..000000000 --- a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 +++ /dev/null @@ -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... \ No newline at end of file diff --git a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 Orig b/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 Orig deleted file mode 100644 index 7f0ea474a..000000000 --- a/bazaar/SysInfo/Testing results/log Ubuntu 8.04 Gnome 64 Orig +++ /dev/null @@ -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: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 58720259, processId: 16116, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 58721287, processId: 16116, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -Window hwnd: 58721320, processId: 16116, Name: - File name: /usr/bin/theide-svn - Window caption: ' ' -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... \ No newline at end of file