[solved] remove --MARK-- from everyting.log

I use conky to print everything.log on my desktop. Every 20 minutes -- MARK -- appears. I don't know why, and there is probably a good reason for it. After a while, the only lines that appear are these lines. Can I remove this?
Last edited by anadyr (2009-12-29 18:34:36)

here's your solution
http://bbs.archlinux.org/viewtopic.php?id=68092

Similar Messages

  • How can I remove marks from the screen?

    I inadvertently touched the screen with the tip of a black permanent marker, and now have 2 little black dots spoiling the view! Is there anything I can (safely) use to get rid of them?

    YES there is a solution!
    I had this happen several years back to a new laptop. Someone borrowed my laptop at a business meeting to do a powerpoint presentation and had a permanent sharpie in their hand while they presented. In reaching over to press the "next" button during the presentation, they accidentally wrote on the screen. This put about a 1" blue mark across my screen. I totally freaked out!
    Anyway, in researching a solution, I discovered that there is a chemical solution used to remove permanet marker from photographic negatives without damaging/discoloring the surface or coating. I had a recommendation to try this as it would not damage the laptop screen. It worked great!!! The permanent marker wiped off as if it were a whiteboard. In the years using this laptop, I never noticed the mark again and never noticed any sort of discoloration or damage to the surface or screen coating.
    The chemical is used is a photographic emulsion cleaner called PEC-12. If you do a google search you'll find it all over the Internet. You may also be able to get it (or a reasonable substitute) at a local professional camera shop. You'll also see wipes for sale with these, which I also purchased. It's a lint free cloth that you spray the cleaner on and then wipe the film (or screen).
    I hope this helps you out.
    shepherdboy

  • Remove marker from chart legend.

    How do I remove a marker with no display name from a legend?

    Looks like no one wanted to tackle this problem. i guess no one suffered from this?
    in any case, i got a good tip on how to customize the XML in the flash chart, so that the marker doesn't show:
    a normal entry for the line chart section of the XML would look somnething like this:
    <line_chart left_space="5" right_space="5">
    <block_names enabled="no" />
    </line_chart>
    so, to remove the marker, set the dots radius in the location as follows, to 1
    <line_chart left_space="5" right_space="5">
    <block_names enabled="no" /><dots radius="1"/>
    </line_chart>
    worked like a charm! thanks Joel...

  • [solved] remove packages from a txt file list

    as the subject header says, I want to run "pacman -R" and have it read a list of packages from a text file.
    Is this possible????
    text file is formatted as such....
    file1
    file2
    file3
    Last edited by orphius (2013-07-09 08:11:53)

    Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.

  • [solved]remove backslashes from file names?

    Hi!
    I have a lot of files that contain backslashes in file name, spread over many many folders.
    How do I remove that character from all file names? The approaches / scripts / programs I usually work with can't handle the invalid file names (e.g. loose the '\' and then 'cant stat()' -.-").
    Thanks!
    edit: Argh... now I've got copies of half of the files without the "\" in the same folders, because copying did work on most but deleting only on some... also multiple \\\ because I messed up one sed line. and "echo" failed to warn me about the result, just dropping a few \ while mv didn't... or something. So confused.
    Last edited by whoops (2011-02-22 00:22:58)

    sisco311 wrote:#!/usr/bin/env bash
    while IFS= read -rd '' file; do
    dirname="${file%/*}"
    basename="${file##*/}"
    mv --backup=numbered -- "${file}" "${dirname}/${basename//\\/_}"
    done < <(find /full/path/to/dir -depth -name '*\\*' -print0)
    Thanks, that did it!
    Don't know what exactly I've been doing wrong, but it seems not to happen any more since I try to do stuff with "while, read, ${}"  instead of "for, $(), echo, sed"
    pulce wrote:Not sure that's the point, but backslash is an escape
    Yes, I know, that was the problem. That's why those stupid things always keep either disappearing or multiplying - I guess I just suck at keeping track of what program handles them which way and depending on what.
    Last edited by whoops (2011-02-22 00:15:30)

  • [solved]Removing applet from kdemod [my bad]

    Well I had a clean install of KDE mod, tried to install xfce, then E, rebooted broke X, tried to troubleshoot, gave up reinstalled, messed that up, next day, reinstalled again.....
    Went back to kde mod for now, but I have a question.
    While trying to add an application to the panel, I accidentally added an applet "System monitor". How in the heck do I remove it, as it isn't nearly as informative as conky, or anything else for that matter...
    Right clicking  and removing isn't there, when I right click on it.
    Thanks in advance, and btw I think I may have learned a thing or two during the last two re-installs, lol.
    Last edited by dunc4n (2008-03-14 07:34:37)

    It would have been nice if you wrote how you solved the problem: this way it will be a reference for future users with the same issue.
    futureguy "Cool, this guy had my same problem, let's see how he solved it!"
    you "Nevermind, I solved it!"
    futureguy "Damn!"
    Even if this was a trivial problem (as you probably forgot to unlock the panel), you can't really say.
    Last edited by carlocci (2008-03-14 16:13:53)

  • Removing output from my logging

    Hello
    I use the logger package to print both debug info and userinfo. A irritating feature with logging is that it prints all kinds of AWT events on the level "FINE", which easily swamps my debug info. I find that kind of information more naturally on a level "FINER" or "FINEST" (god knows what they logg). I want to use "FINE" exclusively for my own logging messages to "FINE", or atleast awoid the AWT hell. Does anyone know how to avoid them some way. I have no clue as to where their level is set, or where they originates from.
    FYI I am using the root logmanager for all my loggers, and use custom handlers for all my loggings (they extends Handler tough).
    Regards
    Fluid

    bump
    Does really no one know anything about this? I would really appreciate an answer.
    Regards
    Fluid

  • [solved] Remove words from file using a list variable?????

    Is it possible with bash, to create a script that will scan a text file and remove words that are set in a list?
    I have a file with words like so:
    word1
    word2
    word3
    I would like to be able to set script to scan file and remove only the words (and spaces left) that are in a list,
    that is inside script. Is this possible???
    Last edited by orphius1970 (2010-04-22 12:05:45)

    sorry I am new to scripting and Have NEVER used sed.
    Can you explain a little better?
    Ok i tried it and understand a little better. However,
    It left space behind. How do I fix that?
    Also, how do I get it to save the file with the changes?
    Sorry If I seem so noobie
    Last edited by orphius1970 (2010-04-22 11:27:18)

  • [SOLVED] Removing brackets from file - python/sed

    I wrote a small python-script in order to do some manipulation of columns. I'm quite unexperienced, and i stumbled upon a problem i didn't manage to solve:
    When the script is finished with the data manipulation, everything is stored as data type "list", which implies the following form when i output the data with print: ['2321321', '321321321', '55555']. I don't want the brackets and ' (since i want to import the data into a spreadsheet). I've tried to make a loop to print out list content, but then i get everything in one column, which i don't want. (Something like: for l in line: print l )
    Is there a way to print lists without the brackets and '? I tried to solve it with sed, but my knowledge of that program is zero, and no success. My solution was to open the output in a text editor and use search and replace, which is very tedious work for 50 files.

    I think the quicker way is using the join() method:
    [andyr@roo ~]$ python
    Python 2.4.1 (#1, Apr 5 2005, 11:00:51)
    [GCC 3.4.3] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> items = ["one", "two", "three"]
    >>> allitems = " ".join(items)
    >>> print allitems
    one two three
    Of course, you could have "," or "t" (tabs), etc to delimit the columns rather than the space in the above example.

  • How to remove esclamation mark from itunes

    how to remove esclamation mark from itunes???

    See these...
    -> One computer using multiple iTunes Store authorizations
    -> About iTunes Store authorization and deauthorization

  • How to remove quotations marks  from csv file

    Hi
    My input file is a .csv file which contains each value in quotation marks
    ex: - "123456778","jakob","grade10"
    Also each record in the input file contains 333 values .
    i am reading these records and using stringtokenizer to fetch value by value for that record .
    i want to remove the quotation marks before i put the values back into an output file with .txt extension .
    those output files will be bcped later into sybase db.
    Should the quotation marks be removed in the java code or is their anyother way to remove the quotation marks from the output file while bcping them .
    Thank You

    njb7ty wrote:
    I also suggest if possible, you use tab delimited cvs files rather than comma delimited cvs files.That would be TSV, LOL...
    If there are commas inside your data elements, you will not be able to tell if they are part of the data or are delimiters. Tab delimited files avoid this.What if your data contain tabs? Although there's no CSV specification, the common standard practice is to use two double quotes to escape a quote.

  • Removing crop/reg marks from PDF

    I'm using Acrobat 8 Pro.
    I need to place individual pages from a PDF (for which I do not have -- and cannot get -- the native files) in an InDesign document.
    I need to remove the crop marks and registration marks from the PDF pages. (They weren't offset properly, so they extend into the bleed area.) I know how to do it manually, but there are a lot of pages and I'm looking for an easier way out.
    I could have SWORN that I had once stumbled upon a setting/option to remove all marks that were outside the image area, but I didn't make a note of it and can't find any such option. (It might not work in this case anyway, since the marks do overlap the image, but I still want to know if the capability is there.)
    At this point, I'm seriously thinking that maybe I dreamed it.
    Does such an option exist? If not, is there some way to remove those extraneous marks from all pages in a PDF in one fell swoop?
    TIA,
    Marlene

    If I crop the pages so that the crop marks and registration marks are gone, the pages will be too small. I need to retain the full image size, but get rid of the marks that are jutting into the image.
    Maybe I'm not explaining this clearly ... the bleed size of the image area on each page is correct. But the crop marks, instead of being offset so they fall OUTSIDE the bleed edge, actually extend into the bleed area.
    The marks should be offset a couple points more than the bleed size -- e.g., if there's a 9 pt bleed, the marks should be offset 12 pts or 15 pts.
    But they aren't -- they were offset less than 9 pts, so they don't fall outside the bleed edges. They extend into the bleed area.
    Marlene

  • IMac running 10.7.5 and have 2 question marks from old PPC apps, which I cannot locate to remove from the system?  Any suggestions please?

    iMac running 10.7.5 and have 2 question marks from old PPC apps, which I cannot locate any links to remove from the system?  Any suggestions please?

    Hello, if those Question marks are in the Dock, it means OSX can't find them either.
    Right click on the Q mark & choose Remove from Dock, might be Roght click or click, then Options>Remove from dock on later OSX versions.
    Sometimes you can just drag it of the Dock, or CMD +drag it off.

  • How to remove the question mark from the dock

    How do I remove the question mark from the dock.  Nothing I tried works.

    What have you tried?
    What happens when you click on it?  Does a menu appear?
    Would you provide a screen shot (SHIFT COMMAND 4).
    Ciao.

  • Remove computer from printer memory (scan to computer) SOLVED

    Recently I replaced some computers at home.
    When I want to use the option "scan to computer" the old computers are still listed and I have no clue how to remove them from the printermemory. Is there a way to do this ?

    Problem solved.
    I used the "return to factory settings" in the menu.
    I had tried that earlier, but without result.
    This time it worked fine.

Maybe you are looking for

  • AP Discounts report

    Is there a report in AP or banking that can show the discounts on payables, so a company can take advantage of early payment discounts and then select just these in the payment wizard?

  • Can Ipods do this?

    I have the first Ipod and wanted to know if new ipods can do this. On the original you can not fast forward or rewind to a point in a song. Your stuck playing the whole thing. Can new ipods Fast Forward or FR?

  • DISM error under WinPE

    Hello there, I have a problem with when I want to use DISM.exe during a Task sequence under WinPE. I run the following scripts under WinPE: (Run Command Line Task Sequence with Package) Powershell.exe -Command Set-executionpolicy remotesigned start "

  • How to use mysql in J2EE server?

    Hi all, I have been learning J2EE and playing around with Pointbase as my database and the IDE that I'm using is Forte For JAVA 4 EE. Now, I wanna use mysql in J2EE, EJB. But I do not know how to use mysql in j2ee server. I have try to altered the re

  • I want to ship an photo album manufactured by Apple to friends abroad. How can I change the shipping address??

    I want to ship an photo album manufactured by Apple to friends abroad. How can I change the shipping address??