Slashdot Mirror


User: rongten

rongten's activity in the archive.

Stories
0
Comments
52
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 52

  1. Re:rsync? on Ask Slashdot: Open Source Back-Up Tool For Business? · · Score: 1

    Backuppc is exceptional for linux, but for windows and the infamous pst files, better to have a client/server architecture of the BURP software.

    Same server, running backuppc and burp, and you save to tape the whole backup FS every 6 months.

    You can use bacula for the last step if you so wish, we use straight copy to lto tapes.

  2. Re:Software doesn't really matter on Ask Slashdot: Best Software For Image Organization? · · Score: 2

    Hi there,

    For archiving purposes, it is best to never touch the original files. It helps when you have thousands of files and during the years you have made backups on different places/disks.

    When you consolidate (because either you consolidate or you lose your photos/memories) if you have photos that differ only for the exif tags is a nightmare to understand which photos are ok and which are not.

    Always prefer programs that do not touch your photos. I recently found that one of the programs I used in the past for an old camera (2002-2005), when rotating the images was nuking the exif data.. Still need to find which one it was.. and damn it to hell.

    Now it would be great to do .xmp of jpegs, but last time I tried (a few months ago) I did not manage to make it work with shotwell (there is only an option to alter the file metadata.. the horror..).

    In my case, to consolidate the photo collection, I have the originals in different folders (tematic, cronological etc. etc) and then I create some symlinks in a directory called "history". Here a work in progress


    #!/volume1/homes/admin/local_programs/bin/bash
    #set -x
    EXT="jpg JPG jpeg JPEG"
    #DEBUG="echo"
    num=0
    for exte in $EXT
    do
    for file in $(find . -name '*'.$exte| grep -v history); do
    echo "doing $file"
    OCDATE=$CDATE
    OCHOUR=$(echo $CHOUR | awk -F'.estim' '{print $1}')
    INFO=$(exiftool $file | tr '\n' '#')
    PROBLEM=$(echo $INFO |tr '#' '\n' | grep "^Make")
    [ -z "$PROBLEM" ] && echo "Problem with $file. Skipping" && continue
    CDATE=$(echo $INFO |tr '#' '\n' | grep "Media Create Date" | awk '{print $5}')
    [ -z "$CDATE" ] && CDATE=$(echo $INFO |tr '#' '\n' | grep "Create Date" | awk '{print $4}')
    [ -z "$CDATE" ] && CDATE=$(echo $INFO |tr '#' '\n' | grep "Date/Time Original" | awk '{print $5}')
    [ -z "$CDATE" ] && CDATE=$OCDATE
    [ -z "$CDATE" ] && echo "error inquiry file" $file && continue
    CHOUR=$(echo $INFO |tr '#' '\n' | grep "Media Create Date" | awk '{print $6}')
    [ -z "$CHOUR" ] && CHOUR=$(echo $INFO |tr '#' '\n' | grep "Create Date" | awk '{print $5}')
    [ -z "$CHOUR" ] && CHOUR=$(echo $INFO |tr '#' '\n' | grep "Date/Time Original" | awk '{print $5}')
    [ -z "$CHOUR" ] && num=$(expr $num + 1) && CHOUR=${OCHOUR}.estimation_$num
    [ -z "$CHOUR" ] && echo "error inquiry file" $file && continue
    TYPE=$( echo $INFO |tr '#' '\n' | grep "File Type" | awk '{print $4}')
    YEAR=$( echo $CDATE | cut -d':' -f1)
    MONTH=$(echo $CDATE | cut -d':' -f2)
    DAY=$( echo $CDATE | cut -d':' -f3)
    FNAME=$(echo $CHOUR | tr ':' '-')
    FNAME=${FNAME}.$TYPE
    DDIR=history/$YEAR/$MONTH
    DEST=${DDIR}/${DAY}-${FNAME}
    [ ! -d "$DDIR" ] && $DEBUG mkdir -p $DDIR
    if [ ! -L "$DEST" ]; then
    $DEBUG ln -s ./../../../$file $DEST
    else
    TGT=$(readlink $DEST)
    [ "$TGT" != "./../../../$file" ] && echo "Error whith $file and $DEST" && exit 1
    fi
    done
    d

  3. Systemd seems fine to me at this stage on Debian Talks About Systemd Once Again · · Score: 3, Interesting

    Hello,

      I have deployed some fedora 20 machines in the last 3-4 months, and so far I did not see anything that led me to cry foul against systemd.

      Actually, the handling of the user sessions for house-keeping purposes seems much simpler now.

      So I don't get all this hate. Maybe I did not look deep enough, time will tell.

      Cheers

  4. Re:Fleeing abusive companies? on When Customer Dissatisfaction Is a Tech Business Model · · Score: 1

    Here in Belgium a registered snail mail is sufficient in general to cancel a service (i.e. cable).
    Last time I changed internet provider I waited the expiration of the contract, but I think now they have more consumer friendly laws and you can change with much more ease.

    The general idea is to foster competition between companies making it easier for a customer jumping ship and woting with his wallet/her purse.

    Of course other governamental intervention (forcing the old telecom monopoly to lease their infrastructure at reasonable price and now trying to do the same for cable) is a godsent.

    You can always argue that the incumbent has the advantage (because you may want to avoid the ping pong between the virtual operator and the incumbent), but sure as hell it looks infinitely better of what people have suffering in USA.

    I got friends going to work there and being flabbergasted by the internet connections and prices...

  5. Re:Good grief on Ask Slashdot: Linux Login and Resource Management In a Computer Lab? · · Score: 1

    Exactly the last point.

      What I dislike the most are users that take advantage of others due to their lack of knowledge. And this is either done intentionally or unintentionally when rules are not enforced.

    I would like all the students (often coming in contact with linux, shell programming and clusters for the first time) to have a fair shot of using the available resources, and not to backstab each other.

      Before everyone could run on the cluster, until I discovered that certain students were giving their login to others: the first did not really need it (i.e. theoretical work) and the second would run on the cluster twice the amount of jobs of the others.

  6. Re:Platform LSF on Ask Slashdot: Linux Login and Resource Management In a Computer Lab? · · Score: 1

    Hi,

      another alternative would maybe sysfera-ds, but their open source offering seems lacking documentation and features (see here).

      Need to investigate. Seems something on the lines of what vizstack could have done.

  7. Re:Just deal with problem users individually. on Ask Slashdot: Linux Login and Resource Management In a Computer Lab? · · Score: 1

    Hi,

      the beowulf clusters we have are running either based on Centos or SLES. For the development workstations where newer versions of certain software are needed I install Fedora.

      This means the developers basically run production on the cluster and develop on the workstations.

      Since there is always a gap between the two (i.e. centos 5 on cluster and fedora 16 on workstations before, centos 6 on cluster and fedora 20 on workstation), when the cluster is updated there is limited breakage, at least until now.

      I understand those that push a stable distro everywhere, maybe for next cycle I will do the same, who knows.

  8. Re:Safety? on China Going Up and Coming Down · · Score: 1

    You start dancing with the sharks and *AA agents.

  9. Re:Ehh, this is a hijacked package. on Korean Mozilla Binaries Infected · · Score: 1

    Too true. I hope people will realize and drop the guns.

  10. Re:An angel? on Wine Now Has Big-Time Lawyers On Its Side · · Score: 3, Funny

    For being the chief tactical director of NERV you really should learn to do some reconnaissance first..

    Send in Section 2 and Mac Users as cannon fooder to estimate the offense capabilities of this Angel!

  11. Re:Wanna make a bet? on Some Linux Distros Found Vulnerable By Default · · Score: 1

    Kuroo is replicating this functionality.

  12. Re:Interesting on MS Files for Broad XML/Word-processing Patent in NZ · · Score: 1

    And I would be interested to know how to help the fight from the soon to be victim of crony capitalism EU.

  13. Re:Frontpage on Spain Prepares For 14,000-User Linux Installation · · Score: 1

    I agree.

    How is possible that this info has been overlooked?
    With all due respect, is not this more important
    of the new dual cpu MBs from via?

  14. Re:The Big Lie on MS Security Chief Says Windows is Safer Than Linux · · Score: 1

    "You can fool everybody once, or somebody everytime. But You cannot fool everybody everytime".

    Is this the stampede of angry share-holders that I hear going towards Redmond? Because, you know,
    I think the end is approching, maybe sooner than we could expect.

  15. Re:Apples/Oranges on MS Security Chief Says Windows is Safer Than Linux · · Score: 1

    Not to mention that some "studies" count
    the same patch multiple times since
    issued by different distributions...

    If this is not being in mala fide I do not
    know what it is.

  16. Re:"Communist" on Why I Love The GPL · · Score: 1

    And even the copyright was in beginnig a
    useful tool, as Lessig points in "Free culture".

    But in the period of crony capitalism,
    do you think the aristocrats of the financial
    world will relinquish their often ill
    gotten gains?

    Interesting times are coming, and democracy,
    being it financial or political is in
    danger.

  17. Re:Here's why I love it: on Why I Love The GPL · · Score: 1

    Is it valid pointing another ./ article?
    http://slashdot.org/articles/01/02/22/0250200_F.sh tml

  18. Re:My contrarian view of the GPL license on Why I Love The GPL · · Score: 1

    This what happens with typos.

    Remember to read the small prints as well.

  19. Re:Here's why I love it: on Why I Love The GPL · · Score: 1

    And here a nice old news about
    GPL enforcing and related comment
    from uncle Ballmer about the
    viral nature of GPL:
    http://www.eweek.com/article2/0,1759,1654625,00.as p

  20. Re:Here's why I love it: on Why I Love The GPL · · Score: 2, Insightful

    This is similar to be accused of
    being unpatriotic if you just dare to
    criticize the government.

    Is there still democracy around,
    or the seals are taking care of it?

  21. Re:Here's why I love it: on Why I Love The GPL · · Score: 5, Informative

    I seem to recall that the FSF did quite a
    lot of actions against some companies,
    like one that was producing routers in
    violation of the GPL.

    And each time stupid people were crying out loud that the FSF was "enforcing" the GPL and that
    they were communist, viral GPL, blah, blah, but that is beside the point.

    So, yes, you can force people and companies
    to abide to GPL, but not by yourself.

    That's why if you are concerned about
    company stealing the work of who
    benefit as all, there is an easy way to
    help :http://member.fsf.org/join.

    Time to actually do something about this,
    ladies and gentlemen.

  22. Re: The DVORAK Rumor on New Standard Keyboard · · Score: 1
  23. Re:I call bullshit on New Standard Keyboard · · Score: 1

    Try a keyboard that maps DVORAK in hardware,
    like the TypeMatrix.

  24. Re: Two Guys Say It.. So What IS the Truth? on New Standard Keyboard · · Score: 1

    And, of course, who defends QWERTY to the
    extreme has never possibly even tried DVORAK.

    Must be those knowledge by proxy that are so common nowadays..

  25. solution (even for security purposes..) on New Standard Keyboard · · Score: 1

    XF86Config:

    Section "ServerLayout"
    Identifier "XFree86 Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "DontZap" "True" #To avoid the zapping of the server
    EndSection