ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • 1

      Virtual appliances?

      Watching Ignoring Scheduled Pinned Locked Moved virtual appliance ova vmware xen kvm hyper-v
      27
      1 Votes
      27 Posts
      4k Views
      travisdh1T

      @stacksofplates said in Virtual appliances?:

      @travisdh1 said in Virtual appliances?:

      @stacksofplates What the what?

      Install Fedora sudo dnf install -y kubernetes `systemctl enable --now podman1

      That's all it takes.

      Yeah I see you haven't actually done that.

      Podman is not Kubernetes. Also when you install Kubernetes you don't get a podman1 service (or any type of podman service). When you install Kubernetes that way you don't get a Kubernetes service. You seemingly have to start the kube-proxy, kube-scheduler, kube-controller-manager, kube-api-server, and the kubelet separately. It installs docker, which is deprecated in k8s now. They have switched to using containerd which is pretty much the standard runtime now.

      So I'll stick with my original recommendation.

      Yep, this is why I need to mess with this stuff in my home lab. I can't even talk about it intelligently yet!

    • J

      Windows Task Scheduler not running my task. Cron for Windows?

      Watching Ignoring Scheduled Pinned Locked Moved
      9
      1 Votes
      9 Posts
      464 Views
      J

      @Pete-S said in Windows Task Scheduler not running my task. Cron for Windows?:

      When you have "interactive" don't you have to be logged in for the task to run?

      No, the only two options for Mode are "Interactive Only" and "Interactive/Background" the slash mean Or in this case.

    • AdamFA

      Drive wiping tools

      Watching Ignoring Scheduled Pinned Locked Moved
      20
      0 Votes
      20 Posts
      1k Views
      JaredBuschJ

      @pmoncho said in Drive wiping tools:

      The first few were about 10 years ago, but that fun is done. Now its just a PITA, but with HIPAA and all, I figured better safe than sorry...

      Check with your shredding company. Many of them will accept drives in the shred truck the comes by.

      One of my clients does this. The shredding company jsut wants to know when drives are involved prior to arrival so they can make it first stop or last stop, i forget which. Because hot metal and paper = potential fire.

      I think it is last stop. so they can easily extinguish if needed.

    • AmbarishrhA

      Migrating SnipeIT to new server

      Watching Ignoring Scheduled Pinned Locked Moved snipe-it migration
      5
      0 Votes
      5 Posts
      3k Views
      DustinB3403D

      @farizazmi try following this: https://snipe-it.readme.io/docs/moving-snipe-it

    • masM

      Comcast Ethernet Dedicated Internet Fiber vs AT&T Dedicated Internet Fiber for Business Internet and PRI phone service

      Watching Ignoring Scheduled Pinned Locked Moved
      11
      0 Votes
      11 Posts
      641 Views
      J

      @JaredBusch said in Comcast Ethernet Dedicated Internet Fiber vs AT&T Dedicated Internet Fiber for Business Internet and PRI phone service:

      Did you just serious ask that of @scottalanmiller ???

      🙂

    • gjacobseG

      PXE Boot & Software deployment

      Watching Ignoring Scheduled Pinned Locked Moved sccm software deployment pxe pxe boot software management package management
      3
      0 Votes
      3 Posts
      668 Views
      coliverC

      @Obsolesce said in PXE Boot & Software deployment:

      @gjacobse said in PXE Boot & Software deployment:

      What is your preference on PXE Boot deployment and software deployment?

      SCCM and Software Center seem to be a joke here. Although it could be the team responsible for managing it.

      We have a tremendous amount of issues with PXE Boot deployments, not installing the right image and thus nothing is installed or installed right ( Office 365, Adobe, VPN software, etc).

      If the agent isn’t right you delete from ADUC and SCCM and start over..

      We are lucky if Software Center works,... some times.

      Published software packages break on a regular basis, aren’t available to install due to GPO, and you can’t run it ( that my group has found) in an elevated state for applications the user doesn’t see; not all applications are published to everyone...

      We use Intune for ~10k devices across a handful of countries and is working great for device and software deployment.

      I agree with this. Intune is replacing SCCM functionality in the best way possible.

    • dave247D

      Trouble with open files/folders on Windows file server?

      Watching Ignoring Scheduled Pinned Locked Moved
      21
      0 Votes
      21 Posts
      1k Views
      dbeatoD

      By any chance are there any DFS shares on this File Servers?

    • IT-ADMINI

      is freePBX really free or not??

      Watching Ignoring Scheduled Pinned Locked Moved
      50
      0 Votes
      50 Posts
      17k Views
      JaredBuschJ

      @Nagesh-Naik said in is freePBX really free or not??:

      @IT-ADMIN I am also seeing some missing menu what is the solution for it can you suggest me

      Things change over time. What you think is missing, is most likely something that no longer exists.

      Other than that, did you register the system with Sangoma?

    • JaredBuschJ

      inter building fiber cost per foot

      Watching Ignoring Scheduled Pinned Locked Moved
      8
      1 Votes
      8 Posts
      268 Views
      JaredBuschJ

      @Pete-S said in inter building fiber cost per foot:

      @JaredBusch said in inter building fiber cost per foot:

      @Pete-S I just wanted to buy some standard premade.

      Check the above link. They have premade multimode as well.

      The quote is for the same stuff. The local supplier they want to use is ~$300 more than FS for the 8 fiber cable.
      13fcb287-934e-414c-bf18-22e65ce2bb5f-image.png

    • gjacobseG

      Windows Batch: Select Drive

      Watching Ignoring Scheduled Pinned Locked Moved
      9
      0 Votes
      9 Posts
      380 Views
      GreyG

      I was a little bored, so here you go:

      ## Example drive letter selection # Only allow X, Y or <enter> do{Write-Host -NoNewline -ForegroundColor Cyan "What drive letter do you prefer as a backup?" $letter = (Read-Host -prompt "(X) or Y?").ToUpper()} while ($letter -notin @('x','y','')) # This sets the default to X, allowing the user to simply press enter if X is OK. if($letter -eq ''){$letter = 'X'} # Now set the drive letter. New-PSDrive –Name $letter –PSProvider FileSystem –Root “\\server\backup” –Persist -ErrorAction SilentlyContinue

      Basic drive letter set is done, but we can be more complicated:

      # Do actions based on a user that has an network location from IP. $ipaddr = Get-NetIPAddress|?{$_.SuffixOrigin -eq "Dhcp" -and $_.AddressState -like "*preferred*"}|select -ExpandProperty ipaddress # Set the preferred drive letter. $letter = X If($ipaddr -like '192.168.0.*'){ New-PSDrive –Name $letter –PSProvider FileSystem –Root “\\alpha\backup” –Persist -ErrorAction SilentlyContinue Write-Host -ForegroundColor Green "You're in Alpha!`nBackup drive connected to Alpha site.`nHave a sumptuous day!" } # if you have more networks, insert here with more if statements. Else{ New-PSDrive –Name $letter –PSProvider FileSystem –Root “\\bravo\backup” –Persist -ErrorAction SilentlyContinue Write-Host -ForegroundColor Green "You're in Bravo!`nBackup drive connected to Bravo site.`nHave a sumptuous day!" }
    • gjacobseG

      Fail2Ban: Failed to access sock path

      Watching Ignoring Scheduled Pinned Locked Moved
      22
      0 Votes
      22 Posts
      11k Views
      gjacobseG

      @JaredBusch said in Fail2Ban: Failed to access sock path:

      @gjacobse said in Fail2Ban: Failed to access sock path:

      Since that is a screen shot, it appears that some parts of the code is cut off.

      You are not listening. I said previously posted.

      Thus, you need to look before that.

      There in the actual .local file I did post, you will see an action listed. In the settings of said action is one of those options.

      I posted that screenshot of with the intentional size because it contains the comment regarding what each does as well as the format.

      Actually, I was and am listening. When I you are working from a 6.5” diagonal screen as I have been, you likely miss a bit of information.

      That said - not that it likely makes any difference.

      # fail2ban-client status sshd Status for the jail: sshd |- Filter | |- Currently failed: 24 | |- Total failed: 92 | `- Journal matches: _SYSTEMD_UNIT=sshd.service + _COMM=sshd `- Actions |- Currently banned: 2 |- Total banned: 2 `- Banned IP list: (IPs)
    • gjacobseG

      EdgeRouter - openVPN restart

      Watching Ignoring Scheduled Pinned Locked Moved
      21
      0 Votes
      21 Posts
      11k Views
      H

      This shit still doesn't work properly through the EdgeOS-provided /etc/init.d/openvpn script. If you do /etc/init.d/openvpn status or systemctl status openvpn you get a green-light active (exited) but this is deceiving because it's a one-shot service and not a proper systemd daemon. systemctl edit --full shows the following piece of crap "service":

      [Unit] Description=OpenVPN service After=network.target [Service] Type=oneshot RemainAfterExit=yes ExecStart=/bin/true ExecReload=/bin/true WorkingDirectory=/etc/openvpn [Install] WantedBy=multi-user.target

      /bin/true? Are you fucking kidding me, Ubiquiti? I pay thousands of €s for your shit and you still manage to be so bad at Linuxing. At least don't pretend you have a service or properly document your shit, ubnt.

      https://community.ui.com/questions/Restarting-OpenVPN/2e5c4e8b-ab61-49f1-a25b-e5aa23130d48 suggests that reset openvpn interface works but… it didn't. You can try it before you try the following.

      What helped me was to change settings so the config got regenerated. For example you could set or delete the following option:

      interfaces openvpn vtun0 openvpn-option "--cipher AES-256-CBC"

      then commit and see with sudo ss -lpn | grep :1194 that the thing's started. If OpenVPN is running or doesn't restart, you can killall openvpn a few times with forced Enter (hit the Enter key very hard, it's important) before you change the settings.

      Just wanted to mention this to anyone finding this thread through "openvpn restart edgerouter doesn't work" in google or similar. I hope I sweared enough for my first fucking post in this damn nice forum 😛

    • NashBrydgesN

      Caddy vs. Nginx

      Watching Ignoring Scheduled Pinned Locked Moved
      29
      0 Votes
      29 Posts
      5k Views
      stacksofplatesS

      @IRJ said in Caddy vs. Nginx:

      @JaredBusch said in Caddy vs. Nginx:

      You have to compile yourself if you want to use commercially.

      This is not something I will ever want to use because of that.

      Yeah that's kinda lame, but not a deal breaker. Nginx has to be compiled for more advanced use cases like WAF or certain HAProxy features.

      It's a bit of a bitch, but once you script it. It isn't too bad to do upgrades going forward.

      that doesn't seem to be a limitation anymore. I didn't see it on their documentation.

      Also I didn't realize Arden Labs made this. That's pretty cool.

    • gjacobseG

      Fedora History: missing commands entered

      Watching Ignoring Scheduled Pinned Locked Moved
      19
      0 Votes
      19 Posts
      299 Views
      travisdh1T

      @scottalanmiller said in Fedora History: missing commands entered:

      @JaredBusch said in Fedora History: missing commands entered:

      @scottalanmiller said in Fedora History: missing commands entered:

      But I know what you mean and I've seen it before. But I'm trying to reproduce it now and can't.

      Same. I just tried also. Annoying as hell when I know I have seen it.

      No kidding, I know I've seen it too.

      I know I've seen that happen before as well, so make that 3. I just don't have time to look at the moment.

    • L

      Recoverable Item Quota

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      0 Votes
      7 Posts
      293 Views
      EddieJenningsE

      @dbeato said in Recoverable Item Quota:

      @Laksh1999 said in Recoverable Item Quota:

      gation hold.I have not tried to purge the dumpster.The recoverable Items quota is not getting decreased.The same size is available now

      This might help you
      https://docs.microsoft.com/en-us/microsoft-365/compliance/set-up-an-archive-and-deletion-policy-for-mailboxes?view=o365-worldwide#optional-step-5-run-the-managed-folder-assistant-to-apply-the-new-settings

      +1 to Start-ManagedFolderAssistant.

      OP will need to configure a retention policy or Set-Mailbox -Identity foo -RecoverableItemsQuota some_valid_value if they want something that's not default applied. One gotcha to consider (which has got me in the past) is that if the mailbox (on-premises) is using the quota defaults for its database, the RecoverableItemsQuota parameter will be ignored.

    • J

      Who do you use for content delivery? (If that is even the right phrase)

      Watching Ignoring Scheduled Pinned Locked Moved
      43
      0 Votes
      43 Posts
      3k Views
      ObsolesceO

      @JasGot said in Who do you use for content delivery? (If that is even the right phrase):

      @Obsolesce said in Who do you use for content delivery? (If that is even the right phrase):

      But still, the cost of 1TB of storage in B2 is 10x the cost of Wasabi.

      I just looked; 1TB at B2 is $5/mo and 1TB at Wasabi is $5.99/mo

      Oh wow, you're right, it stayed at 12 months when I looked at the calculator, I thought I chanded it to 1 month.

    • DustinB3403D

      How to: Export the content of an OST file for forensics

      Watching Ignoring Scheduled Pinned Locked Moved ost outlook data file open source linux how to convert ost conversion
      1
      5 Votes
      1 Posts
      3k Views
      No one has replied
    • hobbit666H

      Influxdb 2 - SSL

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      0 Votes
      7 Posts
      1k Views
      hobbit666H

      So been looking into this a bit more and influx have changed the way they handle stuff.

      From the documents. looks like you can do a .yaml file
      https://docs.influxdata.com/influxdb/v2.0/reference/config-options/

      But they also mention creating a config file
      https://docs.influxdata.com/influxdb/v2.0/reference/cli/influx/config/create/

      So i'm a bit confused how to get these working as i've tried both and when i restart the service "systemctl restart influxdb" i can get onto the UI with http:// but not https://

    • F

      Vertically wall mounting Dell R640 Chassis

      Watching Ignoring Scheduled Pinned Locked Moved
      42
      0 Votes
      42 Posts
      3k Views
      F

      I appreciate everyone's help!

    • 1

      Employee portal?

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      1 Votes
      5 Posts
      272 Views
      M

      https://github.com/bastienwirtz/homer

      https://github.com/linuxserver/Heimdall - this one doesn't have a way to add news feed 😞 , still great, it's being rewritten to nodejs

      https://github.com/rmountjoy92/DashMachine

      https://github.com/jeroenpardon/sui

    • 1
    • 2
    • 57
    • 58
    • 59
    • 60
    • 61
    • 698
    • 699
    • 59 / 699