Search Results - JustLinux Forums


Search:

Type: Posts; User: JRefL5

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds; generated 18 minute(s) ago.

  1. Try using samba

    I used samba on some CentOS 5, and 6 systems


    Use AD to Login to Linux boxes.

    On "YourDomain"
    add to "YourDomain" DNS <Not Required>


    Installs;
  2. Replies
    4
    Views
    7,763

    The gist of the matter is that you need to either...

    The gist of the matter is that you need to either quote the Directory names on escape the whitespace in them.
    for me the -ls does escape the whitespace, but it is otherwise the same as doing a "ls...
  3. Replies
    4
    Views
    7,763

    How about trying find -type d -print0 | ......

    How about trying


    find -type d -print0 | ...


    or


    find -type d -ls | ...
  4. Replies
    4
    Views
    95,692

    It is listening on the LOOP_BACK network. Check...

    It is listening on the LOOP_BACK network. Check the config file for the service and configure it to use the external IP.
  5. Do you have a valid internet connection? look in...

    Do you have a valid internet connection?
    look in the /etc/yum.repo directory and look at some of the *.repo files in there.
    do a dig, or ping on some of the urls, see what you get.
  6. Replies
    1
    Views
    6,075

    apt-get is the package update tool for Debian...

    apt-get is the package update tool for Debian versions of linux like Ubuntu, CentOS is a derivative of Red Hat.
    The package management tool you need is yum.
    After looking at the instructions at...
  7. I would use a scripting language (Perl, Python,...

    I would use a scripting language (Perl, Python, ....).
    Are the lines the same order in both files?
    read line from smaller file
    read from big file and if not a match output to file3
    if...
  8. Replies
    1
    Views
    3,398

    I hope you have already found this out, but you...

    I hope you have already found this out, but you need to tell your interface where to send ip packets so they can be forwarded to the rest of the network.
    That is the gateway address, what is the is...
  9. Can you clarify your question? Are you talking...

    Can you clarify your question?
    Are you talking about accessing windows files that exist on the NTFS partition(s) of a dual boot pc, or are you trying to access files from the AD domain on the Linux...
  10. Under the old crontab system I would have put the...

    Under the old crontab system I would have put the update job in /etc/cron.weekly then changed /etc/crontab to kick the weekly job off some time after midnight.
    I don't have a suggestion if 13.2 is...
  11. Replies
    3
    Views
    11,852

    Play around with grep it may do what you need....

    Play around with grep it may do what you need. other wise I would hit the perl books.
  12. Replies
    1
    Views
    1,515

    Try as root >yum install system-config-kickstart

    Try as root
    >yum install system-config-kickstart
  13. As Saike has said you can reinstall as often as...

    As Saike has said you can reinstall as often as you wish, but you may not need to.
    Your description sounds like video driver artefacts, if its not hardware related.
    What is your Video device,...
  14. BMC WiFi issue

    from a terminal/CLI try


    lspci -vvnm| grep 14e4


    This will provide the full pci id (the 14e4 is the manufacture id portion of the pciid) for further rearch.

    also check out...
  15. Replies
    2
    Views
    3,692

    You might want to try a newer version of RedHat...

    You might want to try a newer version of RedHat to get the Haswell updates, or check that Fedora 19, or 20<beta> will install. Is efi set to secure boot?
  16. Replies
    1
    Views
    9,981

    Try to go just to multi user mode from Single...

    Try to go just to multi user mode from Single user. "init 3". That will get most of the various process running. look around and see how it is doing, then try "startx" to bring up X11, and your GUI....
  17. which cp will return the location of the cp...

    which cp will return the location of the cp command.

    Now the question is are you in the root users directory, or at root ( "/root", or "/" ) ?

    most textbooks when talking about the root...
  18. Replies
    1
    Views
    3,838

    Thats because your read is wihin the loop, so it...

    Thats because your read is wihin the loop, so it must process the all the if tests, fail, then it gets to the while statement.

    try moving the read as the LAST line in the while loop, and add 1...
  19. Thread: Shell script

    by JRefL5
    Replies
    1
    Views
    1,554

    Shell script an option

    I thought I responded about a week ago, still don't see it
    try something along the lines of

    depending on what you are looking for this should give a starting point
  20. Thread: shell script

    by JRefL5
    Replies
    1
    Views
    3,007

    I came up with something like ToDay=$(date...

    I came up with something like


    ToDay=$(date +"%u")
    CurDoM=$(date +"%d")
    if [ $ToDay .eq "Mon" ]; then
    if [ $CurDoM .le 7 ]; then
    # # its the first monday of the month
    elif [...
  21. Replies
    1
    Views
    1,156

    Yes you will see a degraded performance. How much...

    Yes you will see a degraded performance. How much you notice it would depend on the raid controller, and how much you are hitting it, with what type of workload.
  22. Thread: File edit

    by JRefL5
    Replies
    2
    Views
    4,897

    how about for file in $(ls --escape or...

    how about


    for file in $(ls --escape or --quote-name); do
    if [ -d $file ]; then
    cd $file
    recursive call
    else
    <do your mv, or whatever>
    fi
  23. FYI Ubuntu 10.11 used GRUB 2 so Krisb may need to...

    FYI Ubuntu 10.11 used GRUB 2 so Krisb may need to remove some kernel installed on his system in case of grub-update.

    Kris, I seem to recall seeing that there some issues with Unitity depending on...
  24. Try with some indentation, code works as coded. ...

    Try with some indentation, code works as coded.

    #!/bin/bash
    #prompt user which option they wish to do
    echo "Press enter to choose what to do"
    #read the input
    read INPUT
    while [ "$INPUT" !=...
  25. Replies
    13
    Views
    7,768

    A smb.conf that works for me.

    I have removed some lines from our config, and edited the IP addressed;
    Our base config was created using SWAT

    [global]
    workgroup = OurWorkGroup
    netbios name = ServerName
    server string =...
Results 1 to 25 of 110
Page 1 of 5 1 2 3 4