Search:

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

Page 1 of 10 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: ububntu won't show Fedora's Home folder

    It has been a while (1+ yr) since I did a new install of either Ubuntu or Fedora

    IMPORTANT: Did you enable encryption on the Fedora install ??

    But if my memory serves me well, the default...
  2. Replies
    17
    Views
    11,146

    [SOLVED] Re: Moving files from one user to another

    Isn't this what I said in post #6 ??
  3. Replies
    2
    Views
    619

    [ubuntu] Re: [bash] IP range iteration

    So, you want ALL IPv4 iterations 256^4 = 4,294,967,296 (almost 4.3 Billion) options.

    Unless you include IPv6, which is 256^6 iterations = 281,474,976,710,656 (about 281.5 Quadrillion) options.
    ...
  4. Replies
    17
    Views
    11,146

    [SOLVED] Re: Moving files from one user to another

    One of the mistakes I made as a new Linux user was trying to copy MY files to another user, which requires 'root' privileges. In doing so, the files have 'root' ownership and group.

    Instead it is...
  5. Replies
    7
    Views
    543

    [SOLVED] Re: Help with bash scripting

    #!/bin/bash

    VARIABLEA="/home/user/script.name"

    VARIABLEB=$(echo "whoo hey hoo hola")

    echo ${VARIABLEB} >> ${VARIABLEA}

    The proper corrections are in red.
  6. [SOLVED] Re: Need navigation help with command line.

    Although Papibe's advice is good, it will ONLY work if your are in your $HOME directory...

    Use:

    cd ~/Downloads
    to get there from ANY directory. The difference is between absolute and relative...
  7. Replies
    14
    Views
    1,301

    [xubuntu] Re: xubuntu terminal

    command > logfile-$(date +'%Y-%m-%d')
  8. Replies
    2
    Views
    211

    [SOLVED] Re: Path to cdrom

    The command

    mount
    by itself will output all mounted drives.
  9. Replies
    3
    Views
    239

    [ubuntu] Re: trying to save files

    You probably need root privileges, use sudo:

    sudo cp /path/to/filename.odt /media/usbdrive
  10. Replies
    8
    Views
    568

    [ubuntu] Re: Ubuntu 10.04LTS Download

    I am on 10.04.3 LTS running kernel 2.6.32 and am very happy with the stability.
    My Android phone also uses the same kernel version, proving it's reliability.
  11. Replies
    2
    Views
    619

    [SOLVED] Re: Google Earth fonts messed up.

    Try the instructions at this link I know it refers to 9.10 but it worked for me on 10.04
  12. Replies
    3
    Views
    422

    [SOLVED] Re: Script help

    for FILE in *.MTS; do OUTFILE=$(echo "${FILE}" | sed 's/\.MTS$/.avi/g'); mencoder ${FILE} -o ${OUTFILE} -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=10000 -fps 50 -vf scale=1280:720; done
  13. Replies
    5
    Views
    446

    [ubuntu] Re: Gimp & Words - help

    You can import a 'jpg/png' file into gimp(.xcf) or inkscape(.svg) and add a text layer, but you will NOT be able to edit any existing text in the image.

    In both the Gimp and Inkscape, just click...
  14. Replies
    5
    Views
    446

    [ubuntu] Re: Gimp & Words - help

    There are different types of layers in different types of image files.

    Is your file a 'gimp' file with a '.xcf' extension?
    Or is it a vector file with a '.svg' extension?

    In order to...
  15. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    You may need to re-install the sun studio compiler, I honestly don't know why you are getting the errors you have. Also, check the md5sum of the .deb or .tar.gz file (however you got the download)
    ...
  16. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    Let's look at:

    file /etc/sunstudio/sunstudio12/prod/bin/CC
  17. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    I was kinda hoping that was it! I am really shooting in the dark now, but will try to help as much as I can... Try:

    ls -l /usr/bin/cc /etc/sunstudio/sunstudio12/bin/CC...
  18. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    What is the output of:

    shopt | grep nocase
  19. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    Don't use the symlink, but the actual file, any errors?

    /etc/sunstudio/sunstudio12/prod/bin/CC --help
    If not the symlink is broken.
  20. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    Does 'CC' work from the command line but not in the script, or just not at all?

    Does:

    CC --help
    give any output?
  21. Replies
    18
    Views
    1,368

    [ubuntu] Re: Bash - No such file or directory

    Actually the command 'which' does not identify if it is a symlink, it only tells the user which file is found first in the path.

    Use
    file /etc/sunstudio/sunstudio12/bin/CCinstead.
  22. Replies
    4
    Views
    550

    [ubuntu] Re: Terminal Name Replaced Due to Bashrc

    You could just comment out line #87 as it's only an alias. Is your prompt different after also?
  23. Replies
    7
    Views
    1,629

    [SOLVED] Re: audacious skin

    For me, the left sidebar has 'Audio, Replay Gain, Network, Playback, Playlist, Plugins, and Skinned Interface'

    Make sure you are in the correct sub-dialog!
  24. [SOLVED] Re: Do the contents of .bash_aliases execute like a script?

    To answer the question in the title of the thread, YES and NO, ~/.bash_aliases is 'sourced' meaning the shell reads its contents, but it is not 'executed' in the way a script is executed with a...
  25. Replies
    3
    Views
    2,425

    [SOLVED] Re: Suspend From Command Line

    Take a look at one of the power management utilities...

    man pm-suspend
    Although I don't know any exact code to give you.
    If it is not installed by default the package is 'pm-utils'
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4