ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. wirestyle22
    3. Topics
    • Profile
    • Following 0
    • Followers 2
    • Topics 179
    • Posts 8,185
    • Best 2,350
    • Controversial 11
    • Groups 0

    Topics created by wirestyle22

    • wirestyle22W

      Meeting Room Manager Solutions/Displays with Office 365 Integration

      IT Discussion
      • • • wirestyle22
      3
      1
      Votes
      3
      Posts
      417
      Views

      wirestyle22W

      Turns out our headquarters uses: https://www.sharingcloud.com/?lang=en

      I've never heard of this, but if we choose to use it I'll be able to answer questions in a few months.

    • wirestyle22W

      You need a passphrase to unlock the secret key for

      IT Discussion
      • gpg encryption • • wirestyle22
      3
      0
      Votes
      3
      Posts
      643
      Views

      wirestyle22W

      @JaredBusch I have a file that exports the username and password in the script, so I am using a password. Sadly this error just fixed itself with no changes and everything is working as intended now so I won't know what the root cause of this was. Thanks for replying though.

    • wirestyle22W

      Bathroom etiquette

      Water Closet
      • • • wirestyle22
      9
      3
      Votes
      9
      Posts
      972
      Views

      DashrenderD

      @wirestyle22 said in Bathroom etiquette:

      @Dashrender I was in the army and I never unlearned this lol

      it's one thing to use the urinal next to another - it's whole another thing to carry on/strike up a conversation.. lol

    • wirestyle22W

      How do I specify the version of OpenSSL Curl uses?

      IT Discussion
      • curl • • wirestyle22
      2
      0
      Votes
      2
      Posts
      498
      Views

      DustinB3403D

      @wirestyle22 just a thought, but can you remove the out of date version and leave just the current 1.0.1?

    • wirestyle22W

      Return Values in Bash Script and generate e-mail which shows successes, errors and if the directory is empty

      IT Discussion
      • • • wirestyle22
      30
      0
      Votes
      30
      Posts
      1.3k
      Views

      JaredBuschJ

      @wirestyle22 said in Return Values in Bash Script and generate e-mail which shows successes, errors and if the directory is empty:

      I purchased "Learn Python the Hard way". Going through it now and then experimenting.

      While a good thing, if you have a working bash script just Google each line “in python”

      Declare array in python
      For next in python

    • wirestyle22W

      Recommendations for a new switch rack for my home

      Water Closet
      • • • wirestyle22
      37
      0
      Votes
      37
      Posts
      1.6k
      Views

      gjacobseG

      When working to support 911 systems we used half rack on wheels. Most very small county PSAP are to small to have a full anchored rack. They could be pushed back when access wasn’t needed, and of course out when needed.

      Since emergency calls where being handled by these things, they of course had to be secure.

      ETA: hate typing on the phone,....

    • wirestyle22W

      Changing Public PGP Key

      IT Discussion
      • gpg encryption key management • • wirestyle22
      4
      2
      Votes
      4
      Posts
      659
      Views

      wirestyle22W

      @Pete-S said in Changing Public PGP Key:

      Don't know if this helps in your application but if you have old files you can just decrypt them with the old key. If it's important to store them in an encrypted state you can encrypt them again with the new key. After that you can revoke the old key.

      Yeah I could do that, it just seems unnecessary when you can sign the new key with the old key and decrypt both. Turns out it actually chooses the right key so there is no problem

    • wirestyle22W

      Tomcat with an NGINX Reverse Proxy and Self-signed SSL Certificate

      IT Discussion
      • nginx tomcat • • wirestyle22
      11
      0
      Votes
      11
      Posts
      1.8k
      Views

      scottalanmillerS

      @marcinozga said in Tomcat with an NGINX Reverse Proxy and Self-signed SSL Certificate:

      I don't know if it's strictly required, I'd add it.

      Because the one tells the port to listen on. The other tells it what protocol to use. Since you can use any port, with any protocol, it has to be listed. You can just add it to port 80 if you want, for example.

    • wirestyle22W

      Hairpin NAT Issue

      IT Discussion
      • • • wirestyle22
      19
      0
      Votes
      19
      Posts
      847
      Views

      wirestyle22W

      looking through the configuration for why this is still not functioning correctly

    • wirestyle22W

      Cron GPG Scripts can't locate the Keyring

      IT Discussion
      • gpg shell • • wirestyle22
      5
      0
      Votes
      5
      Posts
      561
      Views

      wirestyle22W

      That seems to have fixed the issue

    • wirestyle22W

      Script to Move and Decrypt Files in a Specified Directory

      IT Discussion
      • bash gpg • • wirestyle22
      13
      0
      Votes
      13
      Posts
      1.2k
      Views

      wirestyle22W

      This week was a learning experience.

      #!/usr/bin/env bash source "/home/datatransfer/company/master.sh" encryptedFolderPath="/home/datatransfer/company/in /" decryptedFolderPath="/home/datatransfer/company/out" archiveFolderPath="/home/datatransfer/company/archive" for i in $(ls $encryptedFolderPath.pgp) do gpg --batch --passphrase $PASS --list-only --list-packets --yes $i | grep -q "encrypted" if [ $? != 0 ]; then echo "$i is not a pgp file" continue fi v=${i%.} encryptedFile="$v" fileName=${encryptedFile##/} timeNow=$(date +%Y%m%d%H%M) extension=${fileName##.} newFileName=${fileName%.*} fileWithTimestamp="$newFileName""_""$timeNow.$extension" gpg --batch –passphrase $PASS --yes --decrypt $i > $decryptedFolderPath/$fileWithTimestamp ls -lr $decryptedFolderPath/$fileWithTimestamp if [ $? != 0 ]; then echo "$fileWithTimestamp is not a readable file" continue fi mv $i $archiveFolderPath done

      Thanks to @scottalanmiller @stacksofplates and my friend Erik

    • wirestyle22W

      Controlling Folder Depth when Exporting Folder ACL to Excel via Powershell

      IT Discussion
      • powershell active directory acl • • wirestyle22
      2
      1
      Votes
      2
      Posts
      1.3k
      Views

      ObsolesceO

      Try this instead:

      $FolderPath = Get-ChildItem -Recurse -Depth 2 -Path "P:\Public" -Force

      Where -Depth is the how many levels deep you want to go.

      If you want to see what a cmdlet can do, you can use:

      Get-Help Get-ChildItem -Full

    • wirestyle22W

      Remote Backup of Files Site to Site from Windows to Linux

      IT Discussion
      • redhat windows 2012 r2 • • wirestyle22
      25
      1
      Votes
      25
      Posts
      1.6k
      Views

      wirestyle22W

      @JaredBusch said in Remote Backup of Files Site to Site from Windows to Linux:

      @wirestyle22 said in Remote Backup of Files Site to Site from Windows to Linux:

      @IRJ said in Remote Backup of Files Site to Site from Windows to Linux:

      Going LANless has a ton of advantages

      I have tried to introduce a lot of things and my boss essentially told me to stop because nothing will ever be implemented. Then on my review one of the questions was what new technology I have brought into my company.

      You reply with “solution X” but it was rejected by “person Y”

      I did in the comment section of my review

    • wirestyle22W

      Running Plex in Multiple Vehicles

      IT Discussion
      • plex • • wirestyle22
      50
      1
      Votes
      50
      Posts
      3.0k
      Views

      DashrenderD

      @IRJ said in Running Plex in Multiple Vehicles:

      This just seems like a bad idea all-around.

      Offering it free Several thousand dollar investment in equipment and labor (free I suppose) Wonky setup that isnt user friendly and doesn't give a good user or driver experience This isn't setup and forget about it. Don't forget to factor in maintenance Relying on celluar data
      whats wrong with being free? the equipment listed in this thread are pretty cheap - though frankly, 60 person bus, not sure a R-Pi could handle that many streams (worse case) hard not to agree here - Plex wasn't designed for this. You likely want something like the airlines have, and yeah, it's going to be expensive as hell! yep, will likely require maintenace cellular - well no, OP already said connection for this system will be WiFi to the headquarters only.

      But I have some followup -
      How much WiFi bandwidth is needed to support 60+ devices for streaming media?
      will the media distributing device have enough bandwidth to support 60+ devices?
      The OP mentioned that passengers can use the WiFi to get online via the cellular link in the bus - will there be only one WiFi network on the bus, to get to both the internet and the local video streaming? Are there any security concerns with this?

    • wirestyle22W

      Optimizing Fedora 31 VM w/GUI for remote access

      IT Discussion
      • fedora 31 • • wirestyle22
      19
      1
      Votes
      19
      Posts
      1.1k
      Views

      wirestyle22W

      @JaredBusch said in Optimizing Fedora 31 VM w/GUI for remote access:

      @wirestyle22 said in Optimizing Fedora 31 VM w/GUI for remote access:

      Currently Windows 10 RDP works incredibly well but trying to loan Gnome or Fedora has been much slower.

      What is the point here. What are you "trying to learn" in a GUI?

      You do not "learn" desktop environments. You simply use them. If your desktop environment requires a lot of education to use, it is shit and you need to choose another one.

      load, not learn. I typo'd

    • wirestyle22W

      Estimating HP Battery Infinitely (Fedora)

      IT Discussion
      • fedora hewlett-packard • • wirestyle22
      5
      1
      Votes
      5
      Posts
      739
      Views

      thwrT

      Modern laptop batteries are anything but dumb devices. Most of them got an SMBus interface, a bus derived from (and very similar to) I²C.

      My guess is that either the firmware on this specific battery is bad, your host driver doesn't like the battery or you just had some dirty contacts and the host just couldn't talk to the battery.

    • wirestyle22W

      Nextcloud Hub Launches To Compete Directly With Google Docs And Office 365

      News
      • nextcloud hub • • wirestyle22
      21
      0
      Votes
      21
      Posts
      861
      Views

      dafyreD

      I just updated my Nextcloud this morning, and was able to get it going with the OnlyOffice Document server and both of them on the same system... Just used the Install guide for OnlyOffice Document server here: https://github.com/ONLYOFFICE/Docker-DocumentServer and some googling for some other errors.

      Performance is not bad at all.

    • wirestyle22W

      Can you use fetchmail with a proxy?

      IT Discussion
      • fetchmail linux • • wirestyle22
      4
      0
      Votes
      4
      Posts
      419
      Views

      wirestyle22W

      @scottalanmiller Thanks

    • 1 / 1