Search Results - JustLinux Forums


Search:

Type: Posts; User: Bryon Speede

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    11
    Views
    11,863

    I was a die hard Debian fan. I ran through...

    I was a die hard Debian fan. I ran through Knoppix, Knotix, before settling into Ubuntu.

    I ended up supporting RHEL at work. I still remembered RPM dependency hell from the old days, and dreaded...
  2. Replies
    2
    Views
    3,707

    If you are seeing a 500 error, that usually...

    If you are seeing a 500 error, that usually indicates a script problem. What does your apache error log say?
  3. Is it possible your time was off on the linux...

    Is it possible your time was off on the linux server because NTP died? I've seen that happen on virtual hosts when they migrate between blades.
  4. Replies
    5
    Views
    12,490

    Edit: http://beagle-project.org/Getting_Started...

    Edit:
    http://beagle-project.org/Getting_Started

    The above link will provide all of the information you require.
  5. 2 thoughts: Is '/MP3/backup/f' a directory on...

    2 thoughts:
    Is '/MP3/backup/f' a directory on the receiving end? Or should that be '/MP3/backup/$f'

    This seemed to work in my testing:


    while read line; do scp "$line" myserver:;...
  6. Replies
    3
    Views
    4,483

    Does this work any differently? I am unfamiliar...

    Does this work any differently? I am unfamiliar with lynx -dump.



    /usr/bin/wget -qO - http://innopac.xxx.org:4500/PATRONAPI/$barcode |
    grep -Eo...
  7. Does the behavior change if you put the...

    Does the behavior change if you put the $images[0] in quotes?

    $imgpath = $teampath . "/img/" . "$images[0]";

    I am thinking it may be a context issue, although I don't know of any contexts of...
  8. Replies
    12
    Views
    26,881

    If your format is corrupted it is possible to use...

    If your format is corrupted it is possible to use Trinity Rescue Kit to perform data recovery. It works very well with encapsulated files, such as MS Office documents, .ogg, etc. It does not work so...
  9. Replies
    2
    Views
    5,154

    Try looking through your log files. Usually...

    Try looking through your log files. Usually /var/log/messages is pretty descriptive on why named won't start.
  10. From what I have read, Terminator .91 has the...

    From what I have read, Terminator .91 has the ability to save layout information. It is a bit buggy though. I am using .13 so I cannot test this functionality.
    ...
  11. This will be helpful. ...

    This will be helpful.

    http://manpages.ubuntu.com/manpages/karmic/man5/terminator_config.5.html
  12. Replies
    2
    Views
    5,931

    You could try an alias: alias cls='clear;ls'...

    You could try an alias:

    alias cls='clear;ls'
    Or you could try adding a --color switch to your ls:

    ls --color=auto
  13. Replies
    5
    Views
    1,598

    dir="../newDirectoryToReceiveFiles" mkdir -p...

    dir="../newDirectoryToReceiveFiles"
    mkdir -p ${dir}
    cp -r . ${dir}


    Note the -r in the cp command. -r sets cp to recursive which copies all files and subdirectories.

    Note the ../ before your...
  14. Replies
    1
    Views
    2,187

    Accounts can be set up on the AD side to auto...

    Accounts can be set up on the AD side to auto unlock after 15 minutes or so.

    I have set up Samba to authenticate against AD under Solaris 9 using Heimdal kerberos and OpenLDAP. Once it is set up...
  15. Replies
    3
    Views
    1,586

    for spec in *.spec; do pkgname=${spec%%.spec}...

    for spec in *.spec; do
    pkgname=${spec%%.spec}
    rpmbuild -ba --clean $spec
    mkdir /complete/$pkgname
    mv pkgname*.rpm /complete/$pkgname
    done


    competely untested, I don't have an rpm system handy
  16. on the command line (or make a script) cd...

    on the command line (or make a script)



    cd /home/normand/Desktop/temp/
    for i in *.avi; do
    mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,harddup \
    -srate 48000...
  17. Replies
    3
    Views
    9,433

    My suggestion would be to make a backup. If the...

    My suggestion would be to make a backup. If the file system gets corrupted it is the easiest solution to get back to a working system again.
  18. I have done this in pure JS before. I had to load...

    I have done this in pure JS before. I had to load an array with all possible information for the second drop down and select what to display using an onclick event or something similar. It has been a...
  19. Replies
    9
    Views
    2,512

    Based on the error message I'd say you are most...

    Based on the error message I'd say you are most likely looking at a timeout issue.
  20. Replies
    2
    Views
    1,263

    User friendliness

    I was browsing Digg at one point and i saw the following comment in regards to Antivirus 2009. Apparently this is a major pain to remove for windows users and the following was a tip on how to do it...
  21. nolimit974, Is that Torsmo in the upper right...

    nolimit974,
    Is that Torsmo in the upper right corner? I used to use it a while ago, but it didn't look like that. May have to check into it again.
  22. Replies
    10
    Views
    1,504

    I'd say that the commented lines are not used by...

    I'd say that the commented lines are not used by grub but are used as 'hints' by your distro to update grub correctly.
  23. The first thing to do is to disable WEP on your...

    The first thing to do is to disable WEP on your router while testing. If you get a connection then you know that the problem lies with your WEP key. Also, if you do not broadcast your SSID, turn...
  24. Replies
    6
    Views
    2,886

    I use Ubuntu 8.10 and I install wine through apt...

    I use Ubuntu 8.10 and I install wine through apt from the wineHQ repositories.

    deb http://wine.budgetdedicated.com/apt intrepid main

    Instuctions for use can be found at:...
  25. Replies
    4
    Views
    1,252

    More efficient would be to count the files in the...

    More efficient would be to count the files in the loop.


    cd /mnt/sdb5_data5/Musique/Blues/Tagged/

    date > Liste_Blues.html
    echo "<br>" >> Liste_Blues.html
    count=0
    for i in * ; do
    #echo...
Results 1 to 25 of 76
Page 1 of 4 1 2 3 4