Search:

Type: Posts; User: dagnabit dang doohickey; Keyword(s):

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    7
    Views
    1,036

    [xubuntu] Re: Cron interactive job

    You need to specify the full path to the executables somewhere. Either in the script, by expanding of all of them to include the full path (eg. zenity to /path/to/zenity), or in the crontab file, by...
  2. Replies
    7
    Views
    1,036

    [xubuntu] Re: Cron interactive job

    You need to add a DISPLAY environment variable to the cron job.

    Example of using anacron to run somescript.sh every week:

    # period delay job-identifier command
    7 20 somescript.weekly ...
  3. [ubuntu] Re: How do i add a specific command to the sudoers files ?

    apt-get update is already one of the daily cron jobs.
  4. [ubuntu] Re: Permanently block some websites in firefox

    Firefox has a built-in popup blocker. Look under the Content tab in the preferences.

    You can also use the /etc/hosts file to block sites.
  5. [ubuntu] Re: Can I make my mouse disappear until I move it?

    Have a look at unclutter. [man page]
  6. [all variants] Re: Restore Google Im Feeling Lucky search in firefox?

    The about:config preference that handles this is keyword.URL
  7. [kubuntu] Re: How to autorun program at boot up Ypops

    I'm vaguely remembering the problem I had with ypops was that it never seemed to be running no matter what I tried. I completely gave up on ypops and opened a gmail account.
  8. [kubuntu] Re: How to autorun program at boot up Ypops

    update-rc.d ypops defaults 99

    BTW: Does that thing even work for you? I tried using it some months ago with no luck at all.
  9. [all variants] Re: BACKTRACK 3 OH NO! I have partitioned my drive into two pieces and now...

    If unsuccessful at getting this done in Linux, there's a utility by HP that will easily reformat the whole USB stick. You can get it here [extremeoverclocking.com].
  10. Replies
    8
    Views
    547

    [ubuntu] Re: Command syntax

    Consulting a command's man page for proper usage will usually reap greater rewards than divining it. ;)


    man rename


    Edit: My bad. I was thinking about the original rename command. Ubuntu has...
  11. Replies
    8
    Views
    485

    [ubuntu] Re: Ubuntu GRUB query

    A dedicated grub partition doesn't need the whole /boot dir on it, just /boot/grub. To be more clear, the /boot dir on the grub partition should only contain the grub directory.

    The menu.lst on...
  12. Replies
    11
    Views
    950

    [all variants] Re: Self-contained firefox

    Multiple instances of Firefox can be run side-by-side using separate profiles.

    1. Create a new profile folder:

    cd ~/.mozilla/firefox
    mkdir mobile.profile
    2. Make a backup of your current...
  13. [all variants] Re: Command line history auto-completion

    You don't reload inputrc by sourcing it. Reread inputrc with the following key sequence: Ctrl-x, Ctrl-r
  14. Replies
    1
    Views
    300

    [ubuntu] Re: Bash script help

    The following script may work for you. It requires that xsel is installed on your system. Save this script on your desktop, or wherever you find convenient, and make it executable.

    #!/usr/bin/env...
  15. [gnome] Re: How to create auto-editor script on right click?

    No need to reinvent the wheel: XSel
  16. Replies
    6
    Views
    531

    [ubuntu] Re: Avast Found Elf:Suckit

    Seems like a good time to post these links:
    chkrootkit
    Rootkit Hunter
  17. [ubuntu] Re: Cron not running scripts as root

    Not knowing the contents of test.sh is a big blind spot on my side of the intertubes. That aside, the output of the xtrace is sent to stderr, so the command needs a slight modification: bash -x...
  18. [ubuntu] Re: Cron not running scripts as root

    Check for an alias in /etc/aliases that may be redirecting root's mail.
  19. [all variants] Re: Is there a way to UNhide directories?

    If dangling symlinks are of concern, I suppose you could create a cron job to remove the danglers. The readlink command will come in handy for this task.
  20. [all variants] Re: Is there a way to UNhide directories?

    Create a symlink for the hidden files/directories.


    ln -s hidden_file filename_without_leading_dot
  21. [other] Re: How do I setup GRUB? - 9 Operating Systems - 1 Hard-Drive

    With those big honkin' partitions, maximum absurdity will never be achieved.
  22. [ubuntu] Re: Why my bash script is not running correctly when started by crontab?

    If you're not interested in generating a log for the backup process, remove the verbose option from the cp commands. Else, leave the verbosity as is and continue using stdout redirection.

    You may...
  23. [all variants] Re: My partitions got hidden -- help me get them back.

    You may want to try a partition table restore utility. Several years ago I successfully restored a completely wiped MBR using the commercial Windows software called Partition Table Doctor. There's...
  24. [other] Re: read a line from a file in a bash script

    awk 'NR == line' input-file
  25. [ubuntu] Re: Why my bash script is not running correctly when started by crontab?

    Sounds like your script is choking on verbosity.
Results 1 to 25 of 105
Page 1 of 5 1 2 3 4