• Install Specific Windows 10

    6
    0 Votes
    6 Posts
    650 Views
    scottalanmillerS

    Welcome to the disaster world of MS doing rapid releases while trying to claim that they don’t do releases at all.

  • This topic is deleted!

    15
    0 Votes
    15 Posts
    95 Views
  • 0 Votes
    27 Posts
    4k Views
    jmooreJ

    @wls-itguy said in Debian upgrade from 7 to 9 - no sub pages display now.:

    I'll see if I can explain this so there isn't any missing pieces. I upgraded our wordpress/debian 7 install to debian 8 and then to debian 9. At some point in there, not sure as I cannot recall if I tested the site working or not before moving on to debian 9 upgrade, the site is working but doesn't display anything below the main www.

    Example -> www.wls.wels.net works just fine but www.wls.wels.net/grow-in-grace gives me the big 404 error.

    I thought it had to do with permalinks inside Wordpress but that didn't fix it. Thought it could be a sites-enabled issue, that also was not the case. I am not sure where to go from here. From what I remember of websites, if you can get to the main site you should be able to get to the whole thing but I'm guessing not.

    What am I missing?

    Sounds like something in Apache to me. I know that isn't too helpful but it could be several things

  • MSP ticketing system

    7
    1 Votes
    7 Posts
    1k Views
    S

    @mike-davis said in MSP ticketing system:

    I should add I'm running on a server in vultr so there is a cost, but better than running my own server.

    There is a cost to using Spiceworks (period) for MSP usage. It's not designed for it, so you have to waste tons of extra time making up for the lack of proper client tracking features, billing and reporting integrations and general functions that a PSA like Autotask or connectwise has.

  • Ultimate VPN Comparison

    1
    0 Votes
    1 Posts
    281 Views
    No one has replied
  • Weird Excel Issue when closing saved workbook

    17
    1 Votes
    17 Posts
    2k Views
    syko24S

    So I believe I was able to resolve the issue. I ended up rolling back my Office updates using the method from https://support.microsoft.com/en-us/help/2770432/how-to-revert-to-an-earlier-version-of-office-2013-or-office-2016-clic . I had tried numerous versions but none seemed to work. I ended up trying Build 1707 16.0.8326.2073 and holy crap it worked.

    Just another observation before I had rolled back is that Excel was using a high amount of CPU (about 45% to 50%). I have seen other people complain about CPU being high in some older versions but it was typically related to the Creators Update and not Office updates.

    Anyways, thanks for all the suggestions!! I will let you guys know if this one blows up on me too.

  • Announcing the ZeroTier Edge

    2
    7 Votes
    2 Posts
    999 Views
    JaredBuschJ

    Got the emails yesterday. Looks interesting.

  • Ticketing Solutions for IT Department

    75
    2 Votes
    75 Posts
    8k Views
    hobbit666H

    I've signed up to ZohoDesk as it's free for 10uers and has some customisation seems a good system so far.

  • Fedora VNC blank screen issue

    Solved
    4
    1 Votes
    4 Posts
    7k Views
    J

    With a fresh installation of F26 worktation with lxqt, I found two issues:
    1 - SELinux prevents the vncserver daemon to run. This is bug (on buzilla) #1412468. The solution is to run as root:
    ausearch -c 'systemd' --raw | audit2allow -M my-systemd
    semodule -i my-systemd.pp
    After rebooting, you can run: (as user, for display #3 with SELinux enforcing)
    sudo systemctl start vncserver@:3.service
    2 - After fixing SELinux, you can connect with vncviewer but the screen is dark blue. I tested it on the same computer running vncserver with:
    vncviewer :3 (easier to debug)
    It executes ~/.vnc/xstartup, which executes /etc/X11/xinit/xinitrc
    xinitrc executes /etc/X11/xinit/Xclients which, in the fresh installation, does not support lxqt. The solution appears to be to add lxqt support in that file. It requires two things:
    a) create /etc/sysconfig/desktop as root. the file content is:
    DESKTOP="LXQT"
    set the permissions , as root: chmod 644 /etc/sysconfig/desktop
    b) modify /etc/X11/xinit/Xclients to add lxqt. Here is the content of the modified file:
    #!/bin/bash

    Copyright (C) 1999 - 2004 Red Hat, Inc. All rights reserved. This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of the GNU General Public License version 2. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    GSESSION="$(type -p gnome-session)"
    MSESSION="$(type -p mate-session)"
    STARTKDE="$(type -p startkde)"
    STARTLXDE="$(type -p startlxde)"
    STARTLXQT="$(type -p startlxqt)" # Added for LXQT

    check to see if the user has a preferred desktop

    PREFERRED=
    if [ -f /etc/sysconfig/desktop ]; then
    . /etc/sysconfig/desktop
    if [ "$DESKTOP" = "GNOME" ]; then
    PREFERRED="$GSESSION"
    elif [ "$DESKTOP" = "MATE" ]; then
    PREFERRED="$MSESSION"
    elif [ "$DESKTOP" = "KDE" ]; then
    PREFERRED="$STARTKDE"
    elif [ "$DESKTOP" = "LXDE" ]; then
    PREFERRED="$STARTLXDE"
    elif [ "$DESKTOP" = "LXQT" ]; then # Added for LXQT
    PREFERRED="$STARTLXQT" # Added for LXQT
    fi
    fi

    if [ -n "$PREFERRED" ]; then
    exec "$PREFERRED"
    fi

    now if we can reach here, either no desktop file was present, or the desktop requested is not installed.

    if [ -n "$GSESSION" ]; then
    # by default, we run GNOME.
    exec "$GSESSION"
    elif [ -n "$STARTKDE" ]; then
    # if GNOME isn't installed, try KDE.
    exec "$STARTKDE"
    elif [ -n "$STARTLXDE" ]; then
    # if neither GNOME nor KDE then LXDE
    exec "$STARTLXDE"
    elif [ -n "$STARTLXQT" ]; then # Added for LXQT
    # if neither GNOME nor KDE nor LXDE then LXQT # Added for LXQT
    exec "$STARTLXQT" # Added for LXQT
    fi

    We should also support /etc/X11/xinit/Xclients.d scripts

    XCLIENTS_D=/etc/X11/xinit/Xclients.d
    if [ "$#" -eq 1 ] && [ -x "$XCLIENTS_D/Xclients.$1.sh" ]; then
    exec -l $SHELL -c "$SSH_AGENT $XCLIENTS_D/Xclients.$1.sh"
    fi

    Failsafe. these files are left sitting around by TheNextLevel.

    rm -f $HOME/Xrootenv.0

    Argh! Nothing good is installed. Fall back to twm

    {
    # gosh, neither fvwm95 nor fvwm2 is available;
    # fall back to failsafe settings
    [ -x /usr/bin/xsetroot ] && /usr/bin/xsetroot -solid '#222E45'

    if [ -x /usr/bin/xclock ] ; then /usr/bin/xclock -geometry 100x100-5+5 & fi if [ -x /usr/bin/xterm ] ; then /usr/bin/xterm -geometry 80x50-50+150 & fi if [ -x /usr/bin/firefox -a -f /usr/share/doc/HTML/index.html ]; then /usr/bin/firefox /usr/share/doc/HTML/index.html & fi if [ -x /usr/bin/twm ] ; then exec /usr/bin/twm fi

    }
    After these changes, I rebooted the system and vncviewer worked fine.

  • Cisco Unity and UCM - Reset SSH Keys

    13
    0 Votes
    13 Posts
    2k Views
    anthonyhA

    I don't know if this will be of much help, but here is an article that details how to get true "root" access to CUCM. Under the hood it's basically a RHEL/CentOS install.

    http://www.uccollaborationgeek.com/root-access-cucm/

    Skimming the article it is a bit involved, but maybe will lead you to the access you need to fix the SSH issue? shrugs

    If I had to guess, I bet the same process will work for Unity as well.

  • Storing Users Known Folders to OneDrive

    2
    0 Votes
    2 Posts
    569 Views
    Mike DavisM

    I will almost always do stuff with a GPO. I inherited a network where the guy did stuff manually. (like a net route statement) It was very difficult figuring out what he had done by hand and where.

  • Scanning PDF's

    36
    1 Votes
    36 Posts
    4k Views
    stacksofplatesS

    @mike-davis said in Scanning PDF's:

    @stacksofplates Does *nix have an OCR engine that works well? Last time I looked for an open source one that worked under Windows, I couldn't find anything that worked.

    That I can’t answer. I don’t do much with scanning documents.

  • asp.net web pages shows HTTP 500 internal server error

    5
    1 Votes
    5 Posts
    1k Views
    Net RunnerN

    This tip helped me once with troubleshooting in a similar situation:
    https://blogs.iis.net/rickbarber/working-past-500-internal-server-error
    Give it a try and tell us how it goes. Hope it helps.

  • Redirecting output in Linux

    5
    1 Votes
    5 Posts
    1k Views
    EddieJenningsE

    Link was great, now I think I get what was going on with ls -fy > file 2>&1.

    Bash points the stdout file descriptor to file, and then duplicates stderror to stdout, which is already pointing to file.

  • Ubuntu Server 17.10 and Netplan

    1
    3 Votes
    1 Posts
    3k Views
    No one has replied
  • Using Mattermost or RocketChat in a college environment

    31
    0 Votes
    31 Posts
    3k Views
    scottalanmillerS

    @black3dynamite said in Using Mattermost or RocketChat in a college environment:

    @scottalanmiller said in Using Mattermost or RocketChat in a college environment:

    @nashbrydges said in Using Mattermost or RocketChat in a college environment:

    @black3dynamite Don't get me wrong, I'm not suggesting that you not use Mattermost. In fact, it's been our choice for my team for a few months. But the issue with attachments is something that I hope they'll address in a future release. For now, we use Alfresco for file management and instead of adding attachments to Mattermost, we use links to Alfresco hosted files instead.

    We use Rocket to talk but put all files in NextCloud.

    I can only imagine that users who is using Microsoft Teams would probably do the same with OneDrive?

    Yes, similar process.

  • Force apt-get to use IPv4 or IPv6

    1
    3 Votes
    1 Posts
    1k Views
    No one has replied
  • Windows 10 1709 Windows Firewall won't activate

    5
    1 Votes
    5 Posts
    1k Views
    dbeatoD

    @dashrender I have computers with Malwarebytes, Sophos and Avast. One computer is even using Windows Defender.

  • Adding another NIC to Hyper-V

    15
    1 Votes
    15 Posts
    2k Views
    JaredBuschJ

    Make a team using one of the other Nick’s with just the one Nick in the teen make sure it all works then go into hyper V and change the D switch to the team make sure everything works then go on at the Nick it was already in use to the team

  • 6 Votes
    201 Posts
    51k Views
    scottalanmillerS

    @jaredbusch said in Install NextCloud 11 on Fedora 25 with SaltStack:

    @scottalanmiller why install a proxy when Apaches here and working what is the benefit to having a proxy on the same server. Let’s Encrypt perfectly with Apache

    Security and flexibility typically. Here is the admitted marketing material from Nginx on security: "Security and anonymity – By intercepting requests headed for your backend servers, a reverse proxy server protects their identities and acts as an additional defense against security attacks. It also ensures that multiple servers can be accessed from a single record locator or URL regardless of the structure of your local area network."