Search:

Type: Posts; User: dracayr; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.06 seconds.

  1. Thread: Ssd

    by dracayr
    Replies
    1
    Views
    304

    [all variants] Ssd

    Hi,
    I'm getting a new laptop with an SSD, so I did some research on how to best set it up. MagicFabs ssd checlist: https://wiki.ubuntu.com/MagicFab/SSDchecklist recommends turning off timestamps to...
  2. Replies
    2
    Views
    267

    [SOLVED] Re: Help with python

    put the doctest example session behind the definition of is_divisible_by_2_or_5 -- behind the return statement, that is.
    Also, as it is, the program won't output anything -- not sure if you want it...
  3. [ubuntu] Re: Shell command output not showing immediately

    so this is either a problem with bash or with your terminal simulator (probably the latter). To find out, check what it does in a tty (press Ctrl+alt+F1, login and try a command).
    If it's the...
  4. [ubuntu] Re: Shell command output not showing immediately

    so this is either a problem with bash or with your terminal simulator (probably the latter). To find out, check what it does in a tty (press Ctrl+alt+F1, login and try a command).
    If it's the...
  5. Replies
    2
    Views
    325

    [all variants] Re: Attempting a bit of scripting...

    #!/bin/bash
    /usr/openv/volmgr/bin/tpautoconf –a
    while ps -aef|grep netbackup|grep -v grep
    do
    yes|/usr/openv/netbackup/bin/bp.kill_all
    sleep 5 #you may not need this, it just delays before...
  6. Thread: IFS scripting

    by dracayr
    Replies
    7
    Views
    933

    [SOLVED] Re: IFS scripting

    In method 2, do

    for char_check in $space_file; do
    cool_file="$cool_file\\ $char_check"
    instead of

    for char_check in "$space_file"; do
    cool_file="$cool_file\\$char_check"
    (remove the...
  7. Thread: IFS scripting

    by dracayr
    Replies
    7
    Views
    933

    [SOLVED] Re: IFS scripting

    In method 2, do

    for char_check in $space_file; do
    cool_file="$cool_file\\ $char_check"
    instead of

    for char_check in "$space_file"; do
    cool_file="$cool_file\\$char_check"
    (remove the...
  8. Thread: IFS scripting

    by dracayr
    Replies
    7
    Views
    933

    [SOLVED] Re: IFS scripting

    In method 2, do

    for char_check in $space_file; do
    cool_file="$cool_file\\ $char_check"
    instead of

    for char_check in "$space_file"; do
    cool_file="$cool_file\\$char_check"
    (remove the...
  9. [all variants] Re: Any grep, sed or awk guys with regex familiarity? I need some help.

    to ectract the mfr_ids:


    cat infile | grep mfr_id |sed -e "s/<mfr_id>\(.*\)<\/mfr_id>/\1/"

    to get the name depending on the mfr_id:


    cat test|grep "<mfr_id>100701</mfr_id>" -A 2|grep...
  10. Replies
    9
    Views
    720

    [ubuntu] Re: Deleting the same words in file names

    for i in Linux\ explanation\ -\ date*.wma
    do
    mv "$i" "`echo $i|sed -e "s/.*date(\(.*\))/\1/"`"
    done
  11. Replies
    9
    Views
    720

    [ubuntu] Re: Deleting the same words in file names

    [code]
    for i in Linux\ explanation\ -\ date*.wma
    do
    mv "$i" "`echo $i|sed -e "s/.*date(\(.*\))/\1/"`"
    done
  12. Replies
    12
    Views
    2,281

    [SOLVED] Re: An error occured while mounting /media

    why do you have anything mounted on /media anyway? Flash drives and removable media are mounted on subdirectories of /media by default, mounting a drive on /media itself might not be a good idea.
  13. Replies
    10
    Views
    615

    [SOLVED] Re: Bash script help needed

    hi,

    the line
    find //home/someUser/someFolder -type f \( -iname "*.avi" -o -iname "*.mkv" -o -iname "*.mp4" \) -ctime -1 | wc -l > count doesn't store the result of the find command in the...
  14. Replies
    1
    Views
    1,500

    [SOLVED] Re: broken bochs package?

    So I tried copying the library from the older version to the plugin dir. It didn't work. this sucks :mad:

    EDIT: Ok, got it. After a closer look at the output of bochs when running it, and the deb...
  15. Replies
    1
    Views
    1,500

    [SOLVED] broken bochs package?

    Hi,

    I need bochs for a project of mine. It worked fine for quite a while, until some upgrade happened, and all at once it couldn't find any display librarys:
    dlopen failed for module 'wx': file...
  16. Replies
    4
    Views
    822

    [ubuntu] Re: Error extraxting ZIP file

    not that I know of. With unrar, there's the option -kb which lets you keep the broken extracted files /which may be at least partly correct, but I didn't see anything like that in the manpage of...
  17. [ubuntu] Re: Memory card / Sansa Fuze Mp3 Player corruption fixes?

    that's strange, it works fine on my fuze. I normally use the command line to copy files to the player. does that work? (should be sth. like
    cp music.mp3 /media/SANSA\ FUZE/ but maybe the mount...
  18. [ubuntu] Re: Memory card / Sansa Fuze Mp3 Player corruption fixes?

    for your player: If I understand correctly, you can't place files on it? in the mp3player settings, there should be sth. like connection mode where you can choose between MSC and MTP. Choose MSC and...
  19. [ubuntu] Re: Catastrophic failure - File menuitems suddenly stopped working...

    are there error messages when you try to start these applications from command line? (to open the currend directory, type 'nautilus .' in a command line
  20. Replies
    3
    Views
    1,179

    [ubuntu] Re: Screen fade out problem

    you should be able to change that in System→preferences→Power management

    dracayr
  21. Replies
    6
    Views
    2,110

    [kubuntu] Re: Kubuntu Hangs On Boot

    can you boot in recovery mode/safe graphics mode? if yes, you can probably check the errors in /var/log/boot.log
    what happens when you boot with nosplash? (in the boot menu, press e while the kernel...
  22. Replies
    4
    Views
    822

    [ubuntu] Re: Error extraxting ZIP file

    Just as it says, it's a broken zipfile
  23. Replies
    3
    Views
    456

    [ubuntu] Re: Missing Tray / Icons

    in the add to Panel... it's the Notification area I believe
  24. Replies
    4
    Views
    428

    [ubuntu] Re: Waiting to upgrade.

    It works fine on my system now, but seeing all the problems (I myself had some too), I'd wait if the choice was offered to me again.
    I've seen a few posts which claim that the mic worked in lucid...
  25. Replies
    5
    Views
    1,056

    [ubuntu] Re: updated to 10.04 and phpmyadmin no worky

    Well does the folder phpmyadmin exist?

    dracayr
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4