Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.05 seconds.

  1. [SOLVED] sudo command lag after renaming an ubuntu VM (hostnamectl)

    UPDATE: this thread should be moved to the server section as I think it has nothing to do with virtualization in the end

    Hi,

    I have a strange thing happening with ubuntu and vmware fusion pro...
  2. Re: How can I keep/import information, like 'recently played' tracks, with rhythmbox?

    have a look at .local/share/rhythmbox
  3. Replies
    17
    Views
    15,547

    [SOLVED] Re: Ubuntu version compatible with WebEx, etc.

    webex seems to be working with 14.04. (haven't tried and won't try 13.10)

    I installed the oracle java jre then the plugin for firefox.
  4. [SOLVED] Re: Cannot create Bootable usb for ubuntu-12.04.4-desktop-i386

    are you using ubuntu already?
  5. Replies
    4
    Views
    377

    Re: shortening a url

    sed 's-http://\(.*\)/.*-\1-'
  6. Replies
    3
    Views
    838

    [ubuntu] Re: Problem With Crash Plan

    "yes/bin/CrashPlanDesktop" doesn't look like a valid path for the executable file.

    you should reinstall the software or at least correct the path. right click on the desktop icon, properties and...
  7. Replies
    2
    Views
    429

    [ubuntu] Re: I have install ubuntu v 13.10

    a good chance is that the computer was working in the background while you were trying to update/install things manually.

    Install directly the new version. it will save you some time...
  8. Replies
    2
    Views
    396

    Re: like CRM but more intranet

    looking at an entreprise content management system apparently (ECM).

    have a look at alfresco or similar product.
    could even look at a groupware such as egroupware.
  9. [ubuntu] Re: How to install document template on Nautilus menu?

    it is in ~/Templates and it works.
  10. Replies
    1
    Views
    295

    Re: Does Ubuntu Desktop have dns server?

    if you wish, yes
  11. Replies
    3
    Views
    498

    [lubuntu] Re: How to alias a path in .bashrc

    have a look in .bashrc to see what is an alias.

    you don't need an alias to delete things in command line. use rm.

    you can use functions to ease your life. put those functions in bashrc or...
  12. Replies
    1
    Views
    348

    [ubuntu] Re: password problem

    I assume you have defined more than one keyboard on your system. Then a shortcut to switch the keyboard layout is all you need

    change shortcuts
  13. Replies
    4
    Views
    782

    Re: sed - How to use the matched result

    an array index is a number, nothing else if not mistaken.

    you have to think about what you want to achieve with what means/tools before coding
  14. [ubuntu] Re: How to merge folders in different case (lower case/upper case)

    homogenize your writings and it will roll.

    transform your names in capital or lower
  15. Replies
    4
    Views
    782

    Re: sed - How to use the matched result

    not sure i understand your logic but this might help you.

    i=$(grep ~.*~ template.html | sed "s/.*~\(.*\)~.*/\1/")

    echo $i
    title

    echo ${param[title]}
    Test title
  16. Re: how to become root or change permissions?

    https://help.ubuntu.com/community/RootSudo
  17. Thread: SSH problems

    by bluefrog
    Replies
    1
    Views
    406

    Re: SSH problems

    should ask the hosting company if they change the ssh key regularly
  18. Replies
    2
    Views
    488

    Re: Bash color output

    http://mylinuxbook.com/ubuntu-command-line-prompt-colour/
    https://wiki.archlinux.org/index.php/Color_Bash_Prompt
  19. Replies
    2
    Views
    493

    Re: Change icon for specific file

    right click on the file, properties, click on its icon, select another picture
  20. Replies
    2
    Views
    307

    Re: bash - globbing order

    ls [[:upper:]]ile* should work

    you have to change the locale if you want to use [A-Z]
    http://pubs.opengroup.org/onlinepubs/007908799/xbd/locale.html
  21. Thread: logoff timer

    by bluefrog
    Replies
    1
    Views
    466

    [ubuntu] Re: logoff timer

    http://askubuntu.com/questions/68918/how-do-i-restrict-my-kids-computing-time
  22. Replies
    3
    Views
    1,629

    [ubuntu] Re: Merging multiple csv files

    could also use join which would be better. sry long time didn't use any command line.

    need the files to be sorted. you can sort them on the fly or before hand.

    join -a 1 -t ";" -o 1.1 1.2 1.3...
  23. Replies
    3
    Views
    1,629

    [ubuntu] Re: Merging multiple csv files

    a quick and dirty answer which would need that all your files have the same students on the same line numbers

    let's name your files 1 2 3 4 5 6
    cat 2 | awk 'BEGIN{FS=";"} { print $4 }'> tmp2...
  24. Re: Multiple expression if statement - Shell script

    wondering if the following is correct. (it works on my computer, doesn't mean it's well written)

    corrections made after reading next reply by prodigy...


    #!/bin/bash

    # find out if the first...
  25. Replies
    2
    Views
    389

    [SOLVED] Re: Duplicity time is off

    the time is UTC

    it does not seem you can do anyting about that but I can be mistaken

    http://www.w3.org/TR/NOTE-datetime
    Times are expressed in UTC (Coordinated Universal Time), with a special...
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4