Gnome-system-monitor (dark remix) 4 those using dark themes

hey fellow archers,
I'm a guy who digs dark themes, i am also someone who uses Gnome. Something that has irritated me for years is gnome-system-monitor ~ specifically, when using a dark theme. those white graphs (CPU graph), are just brutal. At work, i use CentOS on a couple of machines, while i don't use gnome with a server (obviously..lol) i have usedf CentOS with gnome before and had made note of the fact that it had a dark graph, and no ugly highlight bar in the 'system' tab, which was a little bit nicer on the eyes.
well, today i decided to fix the default colors for that graph, and i also decided to remove the stupid cairo-gradient that greets you in the 'system' tab. i did this because i prefer a nice graphic, over having a plain gnome logo, and a tacky gradient, it just doesn't need to be there.
here is what it looks like;
here is my gitorious branch where the sources are available;
git clone git://gitorious.org/gnome-system-monitor-blackgtk3/gnome-system-monitor-blackgtk3.git
you all use archlinux, so i need not explain how to compile it and this is gnome-system-monitor 3.1.4 (development) but i have not noticed any bugs whatsoever.
I am thinking of making a pkgbuild for AUR, that would pull from Gnome's git repo, and then apply a patch. Currently i have 2 roughed out patches (that work), but i have no experience writing patches, or even making pkgbuilds. if you are interested here is what i have got;
1. black-graph.patch
--- /home/ninez/Desktop/gnome-system-monitor/src/load-graph.cpp 2011-08-18 19:58:21.443838034 -0400
+++ /home/ninez/Desktop/gnome-system-monitor-3.1.4-NINEZ/src/load-graph.cpp 2011-08-18 19:50:24.000000000 -0400
@@ -76,7 +76,7 @@
cairo_text_extents_t extents;
num_bars = graph->num_bars();
- graph->graph_dely = (graph->draw_height - 15) / num_bars; /* round to int to avoid AA blur */
+ graph->graph_dely = (graph->draw_height - 8) / num_bars; /* round to int to avoid AA blur */
graph->real_draw_height = graph->graph_dely * num_bars;
graph->graph_delx = (graph->draw_width - 2.0 - graph->rmargin - graph->indent) / (LoadGraph::NUM_POINTS - 3);
graph->graph_buffer_offset = (int) (1.5 * graph->graph_delx) + FRAME_WIDTH ;
@@ -88,66 +88,67 @@
allocation.height);
cr = cairo_create (graph->background);
- // set the background colour
+ // set the background colour - cairo_set_source_rgb = outside of graph
GtkStyle *style = gtk_widget_get_style (ProcData::get_instance()->notebook);
- gdk_cairo_set_source_color (cr, &style->bg[GTK_STATE_NORMAL]);
+ gdk_cairo_set_source_color (cr, &style->bg[0, 0, 1, 1]);
+ cairo_set_source_rgb (cr, 0.10, 0.10, 0.10);
cairo_paint (cr);
/* draw frame */
cairo_translate (cr, FRAME_WIDTH, FRAME_WIDTH);
- /* Draw background rectangle */
- cairo_set_source_rgb (cr, 1.0, 1.0, 1.0);
- cairo_rectangle (cr, graph->rmargin + graph->indent, 0,
+ /* Draw background rectangle - inside graph */
+ cairo_set_source_rgb (cr, 0.10, 0.10, 0.10);
+ cairo_rectangle (cr, graph->rmargin + graph->indent, 1,
graph->draw_width - graph->rmargin - graph->indent, graph->real_draw_height);
cairo_fill(cr);
- cairo_set_line_width (cr, 1.0);
- cairo_set_dash (cr, dash, 2, 0);
+ cairo_set_line_width (cr, 2.0);
+ cairo_set_dash (cr, dash, 2, 1);
cairo_set_font_size (cr, graph->fontsize);
for (i = 0; i <= num_bars; ++i) {
double y;
if (i == 0)
- y = 0.5 + graph->fontsize / 2.0;
+ y = 0.5 + graph->fontsize / 3.0;
else if (i == num_bars)
y = i * graph->graph_dely + 0.5;
else
- y = i * graph->graph_dely + graph->fontsize / 2.0;
+ y = i * graph->graph_dely + graph->fontsize / 4.0;
- gdk_cairo_set_source_color (cr, &style->fg[GTK_STATE_NORMAL]);
+ gdk_cairo_set_source_color (cr, &style->fg[1]);
if (graph->type == LOAD_GRAPH_NET) {
// operation orders matters so it's 0 if i == num_bars
unsigned rate = graph->net.max - (i * graph->net.max / num_bars);
const std::string caption(procman::format_network_rate(rate, graph->net.max));
cairo_text_extents (cr, caption.c_str(), &extents);
- cairo_move_to (cr, graph->indent - extents.width + 20, y);
+ cairo_move_to (cr, graph->indent - extents.width + 40, y);
cairo_show_text (cr, caption.c_str());
} else {
// operation orders matters so it's 0 if i == num_bars
caption = g_strdup_printf("%d %%", 100 - i * (100 / num_bars));
cairo_text_extents (cr, caption, &extents);
- cairo_move_to (cr, graph->indent - extents.width + 20, y);
+ cairo_move_to (cr, graph->indent - extents.width + 40, y);
cairo_show_text (cr, caption);
g_free (caption);
- cairo_set_source_rgba (cr, 0, 0, 0, 0.75);
+ cairo_set_source_rgba (cr, 0.7, 0.7, 0.7, 0.70);
cairo_move_to (cr, graph->rmargin + graph->indent - 3, i * graph->graph_dely + 0.5);
cairo_line_to (cr, graph->draw_width - 0.5, i * graph->graph_dely + 0.5);
cairo_stroke (cr);
- cairo_set_dash (cr, dash, 2, 1.5);
+ cairo_set_dash (cr, dash, 2, 0.20);
const unsigned total_seconds = graph->speed * (LoadGraph::NUM_POINTS - 2) / 1000;
for (unsigned int i = 0; i < 7; i++) {
double x = (i) * (graph->draw_width - graph->rmargin - graph->indent) / 6;
- cairo_set_source_rgba (cr, 0, 0, 0, 0.75);
- cairo_move_to (cr, (ceil(x) + 0.5) + graph->rmargin + graph->indent, 0.5);
- cairo_line_to (cr, (ceil(x) + 0.5) + graph->rmargin + graph->indent, graph->real_draw_height + 4.5);
+ cairo_set_source_rgba (cr, 0.7, 0.7, 0.7, 0.75);
+ cairo_move_to (cr, (ceil(x) + 0.3) + graph->rmargin + graph->indent, 0.3);
+ cairo_line_to (cr, (ceil(x) + 0.3) + graph->rmargin + graph->indent, graph->real_draw_height + 4.5);
cairo_stroke(cr);
unsigned seconds = total_seconds - i * total_seconds / 6;
const char* format;
@@ -158,7 +159,7 @@
caption = g_strdup_printf(format, seconds);
cairo_text_extents (cr, caption, &extents);
cairo_move_to (cr, ((ceil(x) + 0.5) + graph->rmargin + graph->indent) - (extents.width/2), graph->draw_height);
- gdk_cairo_set_source_color (cr, &style->fg[GTK_STATE_NORMAL]);
+ gdk_cairo_set_source_color (cr, &style->fg[1]);
cairo_show_text (cr, caption);
g_free (caption);
@@ -226,20 +227,20 @@
/* Subframe offset */
x_offset += graph->rmargin - ((sample_width / graph->frames_per_unit) * graph->render_counter);
- /* draw the graph */
+ /* draw the graph - LINE WIDTH 3 */
cairo_t* cr;
cr = gdk_cairo_create (window);
- cairo_set_line_width (cr, 1);
+ cairo_set_line_width (cr, 2);
cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND);
- cairo_rectangle (cr, graph->rmargin + graph->indent + FRAME_WIDTH + 1, FRAME_WIDTH - 1,
+ cairo_rectangle (cr, graph->rmargin + graph->indent + FRAME_WIDTH + 2, FRAME_WIDTH - 2,
graph->draw_width - graph->rmargin - graph->indent - 1, graph->real_draw_height + FRAME_WIDTH - 1);
cairo_clip(cr);
for (j = 0; j < graph->n; ++j) {
- cairo_move_to (cr, x_offset, (1.0f - graph->data[0][j]) * graph->real_draw_height);
+ cairo_move_to (cr, x_offset, (1.0f - graph->data[1][j]) * graph->real_draw_height);
gdk_cairo_set_source_color (cr, &(graph->colors [j]));
for (i = 1; i < LoadGraph::NUM_POINTS; ++i) {
2. no-highlight.patch
--- /home/ninez/Desktop/gnome-system-monitor/src/sysinfo.cpp 2011-08-18 19:58:21.443838034 -0400
+++ /home/ninez/Desktop/gnome-system-monitor-3.1.4-NINEZ/src/sysinfo.cpp 2011-08-18 16:03:52.000000000 -0400
@@ -477,7 +477,7 @@
style->base[GTK_STATE_SELECTED].green / 65535.0,
style->base[GTK_STATE_SELECTED].blue / 65535.0,
1.0);
- cairo_pattern_add_color_stop_rgba(cp, 1.0,
+ cairo_pattern_add_color_stop_rgba(cp, 0.0,
style->base[GTK_STATE_SELECTED].red / 65535.0,
style->base[GTK_STATE_SELECTED].green / 65535.0,
style->base[GTK_STATE_SELECTED].blue / 65535.0,
EDIT: if you noticed the RGBA transparency where the icons are, that isn't a bug or something being misdrawn. My gtk3 theme is partially RGBA (in compiz only, not gnome-shell/mutter). the theme is 'Marples-black' found here;
http://gnome-look.org/content/show.php?content=144240
last note: My branch is only for the short term, until i get things sorted out. i also wanted to make the sources available to anyone, on any distro. so , it was easist to just quickly setup a branch, that anyone can pull from.
cheerz
Last edited by triplesquarednine (2011-08-19 03:58:42)

triplesquarednine wrote:
dodo3773 wrote:Yeah, if it wasn't for dark themes / stylish I would probably be blind by now ha ha ha. Have you though about putting it in the aur? Maybe calling it gnome-system-monitor-dark or something?
I spend way too much time both at work/home in front of a computer. dark is the way to go. so much more relaxed on the eyes.
Yes, i have (thought about putting it into AUR).  in the short term it was just quicker to throw it up on my gitorious though. As i said above, i haven't really made too many patches, and i currently only maintain one package in AUR, so i have a little reading to do, first. that's also why i posted my patches. in case someone has something to point out, aside from the obvious thing - which is that i need to modify the first part of the patch, as i can ditch a 1st couple directories ...
Ideally, it will end up in AUR...  But, i will probably also have my gitorious branch sync'd to gnome's branch, and i will create a patch using GIT to maintain my branch ~ so that people outside the Arch community, can have easy access too. plus, who knows, i may change around some other things as well. in the 3-4 hours i have been using this 'mod', i am way happier than with the upstream version.
cheerz
Right on. Looking forward to further development. I will stay posted  (subscribed to thread).

Similar Messages

  • Gnome-system-monitor mislabels root partition

    Since the recent Gnome 2.30.2 upgrades the other day, Gnome System Monitor has oddly started mislabeling my root partition in the "file systems" tab. Every other partition is labeled as "/dev/sda2," "/dev/sda5," etc. But my root partition is labeled "/dev/disk/by-uuid/42d32269-85ca-4567-a3ha-71hj8e0f7838." So the mode of labeling is not consistent, using one type of label for every partition and another type just for my root partition.
    The problem with this is that the columns are automatically resized to fit the entire length of the uuid label, pushing information I want to see off screen and forcing me to scroll over to see it or resize the window or or resize the column every time, etc..
    I see that the gnome-system-monitor package is still at 2.28.1, so it wasn't upgraded. What could cause this? It's an annoying bug and was not a problem before I did the 2.30.2 upgrades yesterday. I also notice that the Gnome Disk Utility and Gparted do not do this; they label my root partition /dev/sda1.
    Last edited by cb474 (2010-06-24 05:09:31)

    gnome-system-monitor uses libgnomesu for this. It's a library that does the same things as sudo does.

  • Gnome-system-monitor not getting decorated properly (openbox)

    If I run gnome-system-monitor it doesn't get decorated properly.
    This is the terminal output:
    gnome-system-monitor
    (gnome-system-monitor:3789): Gtk-WARNING **: Theme directory scalable/places/22 of theme black-white_2-Neon has no size field
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    (gnome-system-monitor:3789): Wnck-WARNING **: Unhandled action type _OB_WM_ACTION_UNDECORATE
    And here is a screenshot:
    It just draws the titlebar as omni-transparent, takes whatever is beneath it at the moment it spawns and just gets garbled as soon as I move it.

    gnome-system-monitor uses libgnomesu for this. It's a library that does the same things as sudo does.

  • Release in gnome-system-monitor is "n/a"

    Hello, I tried much but still don't know how does gnome-system-monitor read the "release" info.
    May anyone help me? Thanks!

    you need to install lsb-release, and adjust whatever you want in /etc/lsb-release
    https://www.archlinux.org/packages/?sor … =&limit=50

  • [Gnome3] Is gnome-system-monitor supposed to work?

    Upgraded to Gnome 3.0.
    When I start gnome-system-monitor I get:
    gnome-system-monitor: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by gnome-system-monitor)
    gnome-system-monitor: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/lib/libgtkmm-3.0.so.1)
    gnome-system-monitor: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /usr/lib/libglibmm-2.4.so.1)
    Is this normal? Am I missing a library?
    I have the following lib installed:
    - testing/gtkmm 2.24.0-1
    - testing/gtkmm3 3.0.0-1
    Thanks
    Alphazo
    Last edited by alphazo (2011-04-08 13:33:48)

    Thank you!
    FWIW, multilib-testing was not listed in my /etc/pacman.conf.pacnew file (just upgraded today).

  • GNOME System Monitor

    Is there any way i can setup GNOME System Monitor on linex boxes which i am accessing remotely?

    You might have better luck posting your question on the Linux forum.
    Generic Linux

  • System MOnitor Like gnome system monitor but not gnome?

    Is there one?
    Not kdes version either, trying to keep a system Gnome or KDE free if i can.

    smakked wrote:Yeah conky is ok if you want to see it all teh time, it can get messy if you have alot of info going on.
    It doesn't have to be placed on the desktop. I'm actually currently working on getting a config that is more in line with gnome's monitor than with most conky configs (though of course I'm limited because I can't have tabs). I'll post it here when I finish it, and maybe update this post if I remember to.

  • System monitor for awesome

    Im currently using awesome, its great except for one thing, there is no system monitor, like gnome-system-monitor for example. though I want something that dosent depend on gnome and displays remainning laptop battery time, aswell as mounted file systems, ram/cpu/network usage and a list of prosesses.

    Here's what I'm using with dwm - probably good for dzen as well:
    dwm-mystats.sh
    #!/bin/zsh
    # vim:ft=zsh ts=4
    # (c) 2007 by Robert Manea
    # Date format as recognized by standard system 'date'
    SDATE_FORMAT='%Y-%m-%d %H:%M'
    sdate() {
    date +${SDATE_FORMAT}
    sdfree() {
    print -n `df -h / /home` | awk '{verf1=$11; part1=$13; verf2=$17; part2=$19}; END {print "["part1"] -"verf1" [~] -"verf2}'
    smemused() {
    awk '/MemTotal/ {t=$2}; /MemFree/ {f=$2}; END {print t-f " " t}' /proc/meminfo | dbar -w 6 -s '='
    swapused() {
    awk '/SwapTotal/ {t=$2}; /SwapFree/ {f=$2}; END {print t-f " " t}' /proc/meminfo | dbar -w 6 -s '='
    sload() {
    print -n ${(@)$(</proc/loadavg)[1,3]}
    scpu() {
    vmstat | awk '/0/ {print 100-$15}' | dbar -w 6 -s '='
    snetabs() {
    local iface
    iface=`ifconfig | grep "Ethernet" | awk '{print $1}'`
    if [ $iface != "" ] ; then
    print -n "$iface: `mesure -l -i $iface -avK -c 2`||"
    fi
    snetbar() {
    mesure -aK -c 2 -l -i `ifconfig | grep "Ethernet" | awk '{print $1}'` | dbar -nonl -w 6 -s '=' -min 0 -max 270
    sac() {
    case `awk '{print $2}' /proc/acpi/ac_adapter/AC/state` in
    on-line)
    print -n "yep"
    print -n "no"
    esac
    sbatt() {
    local STATE
    STATE=`cat /proc/acpi/battery/BAT0/state /proc/acpi/battery/BAT0/info`
    case `echo $STATE | awk '/present:/{print $2}' - | tail -n 1` in
    no)
    print -n "no"
    echo $STATE | awk '/design capacity:/ {f=$3}; /remaining capacity:/ {r=$3}; END {print 100*r/f"%"}' -
    esac
    sgov() {
    < /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
    sfreq() {
    awk '{print $1/1000}' /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
    stemp() {
    awk '{print $2}' /proc/acpi/thermal_zone/THRC/temperature
    supdates() {
    grep pkg.tar.gz /var/log/updates.log | wc -l
    # Main
    while true; do
    upd=$(supdates)
    if [ $upd = 0 ] ; then
    print " AC: $(sac) | Batt: $(sbatt) || $(sdfree) || CPU:$(scpu) ($(sload)) | $(sgov) / $(sfreq) MHz -> $(stemp)° || $(sdate)"
    else
    print " AC: $(sac) | Batt: $(sbatt) || $(sdfree) || CPU:$(scpu) ($(sload)) | $(sgov) / $(sfreq) MHz -> $(stemp)° || $upd UPD. || $(sdate)"
    fi
    # change polling frequency in AC/BATT mode
    case $(sac) in
    yep)
    sleep 8
    no)
    sleep 1m
    esac
    done
    You can play around a bit with the functions that get called/displayed in the main loop. It depends on zsh and makes use of this cronjob (in /etc/cron.hourly/pacsync):
    #!/bin/dash
    pacman -Syup --noprogressbar > /var/log/updates.log

  • GNOME System Monitory says no mem consumed by ZFS??

    Hi, I'm guessing there is probably a simple answer to this but Google and I haven't found it.
    With OpenSolaris svn_111b, the GNOME System Monitor would show almost all memory consumed. (By ZFS cache...a good thing.)
    With Solaris Express svn_151a, System Monitor shows <1gb (out of 16gb) consumed.
    Would I be correct in assuming that ZFS cache is no longer counted in the System Monitor, but ZFS is still using almost all available memory (hopefully)?
    The reason for concern is that with svn_111b, I was getting a reliable 90 MB/s transfer over SMB (with Solaris as Samba server), without even jumbo frames. But now, on the same server and network config but with a clean install of svn_151a and minimal tweaking, I'm getting terrible performance at about 3 to 10 MB/s.
    (I've posted the performance problem specifically as a separate post, so as not to double-post I don't want to dwell on that here - this is just about the System Monitor / ZFS cache question.)
    Thanks!!
    -Jim
    Specs, if it matters for this question:
    Machine:
    - 2*4-core Xeons
    - 16gb ECC RAM
    - Onboard e1000g NIC
    - 20 hot-swap bays
    - cooling out the wazoo
    rpool:
    - mirrored 30gb SSDs
    Pool "zp3" config:
    - LSI SAS1068E-R c9 HBAs
    - 6 * 3-way mirrors, 1tb, 7200 RPM enterprise-class SATA
    - 2 hot spares
    - 2 * 30gb SSD for L2ARC
    Pool "zp3" settings:
    zp3 version 5 -
    zp3 sync disabled local
    zp3 com.sun:auto-snapshot true local
    zp3 recordsize 128K default
    zp3 utf8only on -
    zp3 normalization formD -
    zp3 casesensitivity insensitive -
    zp3 encryption off -
    zp3 compression on local
    zp3 compressratio 1.07x -
    zp3 dedup off local
    zp3 logbias throughput local
    zp3 used 4.21T -
    zp3 usedbysnapshots 311G -
    zp3 usedbydataset 3.90T -
    zp3 usedbychildren 8.78G -
    zp3 usedbyrefreservation 0 -
    zp3 available 1.04T -
    Type of data and access:
    - Mostly large media files (DNG photos, large photoshop project files, high bitrate 1080p video, 32-bit/96khz audio, etc.)
    - Plenty of small "office" data files too, but of secondary importance.
    - Low usage. Typically accessed by one CIFS/SMB client - and one application - at a time. Needs throughput, not IOPS.
    Edited by: user13689618 on Feb 8, 2011 12:48 PM (Oops, used ">" as list bullets.)

    Hi, I'm guessing there is probably a simple answer to this but Google and I haven't found it.
    With OpenSolaris svn_111b, the GNOME System Monitor would show almost all memory consumed. (By ZFS cache...a good thing.)
    With Solaris Express svn_151a, System Monitor shows <1gb (out of 16gb) consumed.
    Would I be correct in assuming that ZFS cache is no longer counted in the System Monitor, but ZFS is still using almost all available memory (hopefully)?
    The reason for concern is that with svn_111b, I was getting a reliable 90 MB/s transfer over SMB (with Solaris as Samba server), without even jumbo frames. But now, on the same server and network config but with a clean install of svn_151a and minimal tweaking, I'm getting terrible performance at about 3 to 10 MB/s.
    (I've posted the performance problem specifically as a separate post, so as not to double-post I don't want to dwell on that here - this is just about the System Monitor / ZFS cache question.)
    Thanks!!
    -Jim
    Specs, if it matters for this question:
    Machine:
    - 2*4-core Xeons
    - 16gb ECC RAM
    - Onboard e1000g NIC
    - 20 hot-swap bays
    - cooling out the wazoo
    rpool:
    - mirrored 30gb SSDs
    Pool "zp3" config:
    - LSI SAS1068E-R c9 HBAs
    - 6 * 3-way mirrors, 1tb, 7200 RPM enterprise-class SATA
    - 2 hot spares
    - 2 * 30gb SSD for L2ARC
    Pool "zp3" settings:
    zp3 version 5 -
    zp3 sync disabled local
    zp3 com.sun:auto-snapshot true local
    zp3 recordsize 128K default
    zp3 utf8only on -
    zp3 normalization formD -
    zp3 casesensitivity insensitive -
    zp3 encryption off -
    zp3 compression on local
    zp3 compressratio 1.07x -
    zp3 dedup off local
    zp3 logbias throughput local
    zp3 used 4.21T -
    zp3 usedbysnapshots 311G -
    zp3 usedbydataset 3.90T -
    zp3 usedbychildren 8.78G -
    zp3 usedbyrefreservation 0 -
    zp3 available 1.04T -
    Type of data and access:
    - Mostly large media files (DNG photos, large photoshop project files, high bitrate 1080p video, 32-bit/96khz audio, etc.)
    - Plenty of small "office" data files too, but of secondary importance.
    - Low usage. Typically accessed by one CIFS/SMB client - and one application - at a time. Needs throughput, not IOPS.
    Edited by: user13689618 on Feb 8, 2011 12:48 PM (Oops, used ">" as list bullets.)

  • System monitor won't start.

    I am having a problem and I am not sure how I caused it or how I can fix it.
    when I try to start system monitor I get this following error.
    [jacko@kermit ~]$ gnome-system-monitor
    gnome-system-monitor: error while loading shared libraries: libsigc-2.0.so.0: wrong ELF class: ELFCLASS32
    [jacko@kermit ~]$
    what should I do to fix this problem? I am using arch 64, the only things I have installed that are 32 bit is skype and flash I believe.
    I don't wanna break my other programs to get system monitor working either...
    Last edited by jacko (2007-11-24 22:05:44)

    jacko wrote:How does one check the pacman logs?
    [dante4d ~]$ tail /var/log/pacman.log
    [2007-11-24 05:00] installed spcaview (1.1.7-1)
    [2007-11-24 05:00] installed motion (3.2.8-1)
    [2007-11-24 05:01] synchronizing package lists
    [2007-11-24 05:02] synchronizing package lists
    [2007-11-24 05:08] upgraded stk11xx (1.1.0-1 -> 1.1.0-1)
    [2007-11-24 06:26] The jdk package is licensed software.
    [2007-11-24 06:26] You MUST read and agree to the license stored in
    [2007-11-24 06:26] /opt/java/LICENSE before using it.
    [2007-11-24 06:26] installed jdk (6u3-1)
    [2007-11-24 06:39] installed eclipse-sdk (3.3.1.1-1)

  • Maown - file system monitor for shared group directories

    Maown Info Page
    I needed a way to manage ownership and permissions of files in a shared directory. ACLs and "chmod g+s" alone were not enough so I wrote maown.
    Maown is a file system monitor written in C. It uses inotify to recursively watch a directory tree for file creation and attribute modification. It automatically chowns files to user:group and adjusts group permissions to match user permissions.
    The package includes a daemon with a simple configuration file. Each line in the configuration file specifies a user, a group and a list of directories to monitor:
    <user> <group> <directory> [<directory>...]
    Last edited by Xyne (2012-05-21 02:35:24)

    Maown has been replaced with Autochown.

  • How to setup system monitoring of EP 7 to Solution Manger 7.0

    Hi Experts,
    I need help for configuring EP 7 (only JAVA engine) for system to Solution Manger 7.0. IF anyone of you have steps or config guide pls help me ???

    Hi Vikas,
    In general, system monitoring in SAP Solution Manager use CCMS as the data supplier, which means that, you need to configure CCMS alert infrastructure for your EP system.
    General steps:
    1. Configure solution manager or other ABAP system as the CEN (central) system as the CCMS infrastructure.
    2. Install SAPCCMSR agent (which is part of CCMS Agent), and connect the agent to CEN system
    3. Setup system monitoring in Solution Manager
    For more information, you can access the help portal of SAP.
    Hope that helps.
    Thanks, Jett

  • My mac become so slow i can't use any app. All the time there is sound of hard drive but no swapping is reported by system monitor.

    Hi Folks,
    recently my Mac after latest upgrade of Maverics 10.9.2 degraded performance dramatically to the point that when I switch from one app to another i should wait 30-40 seconds to get the response back from the System. The Hard drive is in use each time I click a mouse button. Sounds like an excessive hard drive usage usually caused by swapping. But System monitor shows Free memory ) Swapping and plenty of Idle CPU.
    I tried to find the Process that might over uses the disk but all appear to be Ok. i couldn't spot any process that would over use the IO.
    IO looks normal from System Monitor.
    I checked the Apple Support whenever it is a defected hard disk issue but according to serial this Mac is not under disk replacement program.
    Any tips on what should I do to find the root cause?
    Mac specifications:
    27-inch Mid 2010
    MEMORY 4GB 1333 MHZ DDR3
    Software  OS X 10.9.2 (13C64)
    ATI Radeon HD 5750 1024 MB graphics
    Intel 5 Series Chipset:
      Vendor:          Intel
      Product:          5 Series Chipset
      Link Speed:          3 Gigabit
      Negotiated Link Speed:          3 Gigabit
      Physical Interconnect:          SATA
      Description:          AHCI Version 1.30 Supported
    ST31000528AS:
      Capacity:          1 TB (1,000,204,886,016 bytes)
      Model:          ST31000528AS                           
      Revision:          AP25   
      Serial Number:                      9VP87BKN
      Native Command Queuing:          Yes
      Queue Depth:          32
      Removable Media:          No
      Detachable Drive:          No
      BSD Name:          disk0
      Rotational Rate:          7200
      Medium Type:          Rotational
      Partition Map Type:          GPT (GUID Partition Table)
      S.M.A.R.T. status:          Verified
    Thanks in advance
    Emile

    I have plenty of disk space 350 GB free.
    I don't run excessive number of apps as you can see in top I have plenty of free Physical RAm plenty of idle CPU and IO is Ok too Swap is not in use means there is no lack of any resources
    Even I f I quit all applications and use just safari the problem exists.
    Processes: 174 total, 2 running, 6 stuck, 166 sleeping, 813 threads                                                11:35:05
    Load Avg: 0.79, 0.78, 0.46  CPU usage: 0.47% user, 1.42% sys, 98.10% idle
    SharedLibs: 134M resident, 0B data, 21M linkedit. MemRegions: 23450 total, 1500M resident, 121M private, 411M shared.
    PhysMem: 3342M used (539M wired), 747M unused. VM: 418G vsize, 1310M framework vsize, 0(0) swapins, 0(0) swapouts.
    Networks: packets: 25114/24M in, 16805/2740K out. Disks: 67293/2231M read, 15086/343M written.
    I don't run any MAc keeper like apps nor antiviruses . I don't trust them. I f I need to clean something I will do it myself
    Happens in switch between all apps even between the tabs in safari
    The only symptom I have so far is noisy hard disk
    each time i switch apps or windows I hear hard disk doing something.
    Makes me think it might be hard disk problem but fsck doesn't show any issue
    no bad secktors etc.
    According to all diagnostics everything is Ok
    That's kind of worries me not to be able to find the bottleneck having more than 20 years experience with UNIX

  • In system monitoring, CCMS absolete now ? or we still use it ?

    Hi Seniors,  I have a doubt in system monitoring. Now Solution manager is used for system monitoring. So is CCMS absolete now ? or we still use it ?   Could you please clariy this. Thank you,  Sri

    Mr Sri
    Solution manager can be used for central system monitoring and this still uses the ccms data of monitored system to monitor centrally. CCMS can still be used to monitor your system locally.This way CCMS is not obsolete.
    If the concept is cleared pls award points.
    Regards
    IMAD

  • CCMS is used for system monitoring , why should we use solution manage ?

    CCMS is used for system monitoring , why should we use solution manage ?
    Whats the relationship between CCMS system and SolMan?
    Thank you .

    hi,
    I just want to ask a question. At our client we have solution manager and CCMS. There is data in CCMS I can extract, it is loading on BW side ok the same number of recs,  but the problem on CCMS cubes says there are the same number of record in the cube and also showing as the data is ready for the reporting. But when I run the report and view the data as listcube it is empty. 
    ANy of you have the situation like this cube say it has the data but when do th BEX or infocube contents the cube is empty nothing in there. The same thing is happening with hourly, 15 minute and daily cubes.
    Anyhelp on this matter is appreciated

Maybe you are looking for

  • Sound on palm pre

    My phone will no longer allow me to hear an incoming call without going to speakerphone.  Sometimes it rings, sometimes it doesn't.  I can listen to Pandora if I use the headphones.  Sometimes it won't even make a noise when I throw out my cards.  Oc

  • How do I change the settings in Acrobat 9 so my files aren't automatically (SECURED)?

    Even when I save a completely new pdf, it always automatically says (SECURED) at the top and I need to turn this off so I can put in my own passwords to secure the document. It won't let me change the password because I have no idea what the password

  • HP Pavilion All-in-one touch 23-h027c

    I purchased this computer 2 months ago.  Within the first week my touch screen stopped working and the HP tech ran diagnostics only to tell me I had to reformat/reinstall/recover windows.  Now it's happened again and I use it for work.  I don't want

  • XP Bootcamp nVidia drivers

    Ok, this is an outstanding question/problem I have posted on another forum. Video drivers. ATI and nVidia are constantly updating drivers for performance increases and bug fixes but I have yet to get some kind of answer on how/if/where I am able to d

  • Mini mac screen goes blank frequently

    My Mac Mini utilizes a samsung screen with the vga adappter used for my display it goes black in the middle of work even while typing our utilizing the mouse and usualy does it twice in a row.