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
    • K

      Anyone use Miradore Online?

      Watching Ignoring Scheduled Pinned Locked Moved miradore mdm
      2
      0 Votes
      2 Posts
      579 Views
      DustinB3403D

      Website for anyone interested.

    • JaredBuschJ

      Setup Strongarm.io at the home office

      Watching Ignoring Scheduled Pinned Locked Moved strongarm.io
      42
      5 Votes
      42 Posts
      5k Views
      JaredBuschJ

      @penguinwrangler said in Setup Strongarm.io at the home office:

      Are you not using the PI-Hole with the porn block list added to it like you posted about here on Mangolassi awhile back?

      That is what I am doing, yes.

      I was using Strongarm DNS though until they removed the home service.

    • JaredBuschJ

      My config for HAPRoxy and Exchange 2013

      Watching Ignoring Scheduled Pinned Locked Moved haproxy config
      10
      4 Votes
      10 Posts
      7k Views
      JaredBuschJ

      @bradhawkins said in My config for HAPRoxy and Exchange 2013:

      Thank you so much for sharing your config, I have not found anything else that works for Exchange 2016 and this works perfectly. :grinning_face_with_smiling_eyes:

      Glad it works for you. I do not have a client with on prem 2016 to test with.

    • 1

      Attach drive to VM in Xenserver (not as Storage Repository)

      Watching Ignoring Scheduled Pinned Locked Moved Solved xenserver xcp-ng xen
      6
      0 Votes
      6 Posts
      6k Views
      1

      Thanks guys.

      Unfortunately the link @dbeato provided is how you add a new disk to xenserver when you want it to be Storage Repository - a place to store VM partitions. So if you have a disk already xenserver will wipe it clean and put LVMs or EXT3 with VDI files on it.

      When it's passed through as a block device to a VM it will have whatever filesystem the VM formats it with.

      The problem with the info in the link @black3dynamite provided is that it's for xenserver 5.x so it doesn't work straight up with Xenserver 7.x (I'm running 7.4).

      What I ended up doing was adding a raid 1 array instead of just a disk. The principle is the same though, just another name on the block device.

      The array /dev/md0 is passed through to the VM as a block device.

      I did it by adding a rule to /etc/udev/rules.d/65-md-incremental.rules almost at the end.

      KERNEL=="md*", SUBSYSTEM=="block", ACTION=="change", SYMLINK+="xapi/block/%k", \ RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2>&1 >/dev/null&'"

      This rule will pass all md arrays to the VMs as Removable Storage in Xenserver (so you can attach it to whatever VM you want).

      Note that * in KERNEL=="md*" is a wildcard. So this will match the devices /dev/md0, md1 md2 etc. Just replace md* with whatever block device you want to pass through.

      The array is 2TB so I don't know if this works with bigger arrays.
      After trying some larger drives I can verify that it works fine with larger than 2TB arrays.
      Also the disks were empty so I'm not sure if xenserver will wipe the disk when you set this up the first time.
      After some experimenting it looks like Xenserver will not touch the drive.

      I'll add the complete file for reference.

      KERNEL=="td[a-z]*", GOTO="md_end" # This file causes block devices with Linux RAID (mdadm) signatures to # automatically cause mdadm to be run. # See udev(8) for syntax # Don't process any events if anaconda is running as anaconda brings up # raid devices manually ENV{ANACONDA}=="?*", GOTO="md_end" # Also don't process disks that are slated to be a multipath device ENV{DM_MULTIPATH_DEVICE_PATH}=="?*", GOTO="md_end" # We process add events on block devices (since they are ready as soon as # they are added to the system), but we must process change events as well # on any dm devices (like LUKS partitions or LVM logical volumes) and on # md devices because both of these first get added, then get brought live # and trigger a change event. The reason we don't process change events # on bare hard disks is because if you stop all arrays on a disk, then # run fdisk on the disk to change the partitions, when fdisk exits it # triggers a change event, and we want to wait until all the fdisks on # all member disks are done before we do anything. Unfortunately, we have # no way of knowing that, so we just have to let those arrays be brought # up manually after fdisk has been run on all of the disks. # First, process all add events (md and dm devices will not really do # anything here, just regular disks, and this also won't get any imsm # array members either) SUBSYSTEM=="block", ACTION=="add", ENV{ID_FS_TYPE}=="linux_raid_member", \ RUN+="/sbin/mdadm -I $env{DEVNAME}" # Next, check to make sure the BIOS raid stuff wasn't turned off via cmdline IMPORT{cmdline}="noiswmd" IMPORT{cmdline}="nodmraid" ENV{noiswmd}=="?*", GOTO="md_imsm_inc_end" ENV{nodmraid}=="?*", GOTO="md_imsm_inc_end" SUBSYSTEM=="block", ACTION=="add", ENV{ID_FS_TYPE}=="isw_raid_member", \ RUN+="/sbin/mdadm -I $env{DEVNAME}" LABEL="md_imsm_inc_end" SUBSYSTEM=="block", ACTION=="remove", ENV{ID_PATH}=="?*", \ RUN+="/sbin/mdadm -If $name --path $env{ID_PATH}" SUBSYSTEM=="block", ACTION=="remove", ENV{ID_PATH}!="?*", \ RUN+="/sbin/mdadm -If $name" # Next make sure that this isn't a dm device we should skip for some reason ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="dm_change_end" ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}=="1", GOTO="dm_change_end" ENV{DM_SUSPENDED}=="1", GOTO="dm_change_end" KERNEL=="dm-*", SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="linux_raid_member", \ ACTION=="change", RUN+="/sbin/mdadm -I $env{DEVNAME}" LABEL="dm_change_end" # Finally catch any nested md raid arrays. If we brought up an md raid # array that's part of another md raid array, it won't be ready to be used # until the change event that occurs when it becomes live KERNEL=="md*", SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="linux_raid_member", \ ACTION=="change", RUN+="/sbin/mdadm -I $env{DEVNAME}" # Added line # Pass-through of all /dev/md* arrays. # Will end up as Removable Storage that can be assigned to a VM. KERNEL=="md*", SUBSYSTEM=="block", ACTION=="change", SYMLINK+="xapi/block/%k", \ RUN+="/bin/sh -c '/opt/xensource/libexec/local-device-change %k 2>&1 >/dev/null&'" LABEL="md_end"
    • gjacobseG

      Remmina: Fedora to Fedora issue.

      Watching Ignoring Scheduled Pinned Locked Moved fedora fedora28 fedora workstation remmina h264 gfx mode
      17
      1 Votes
      17 Posts
      3k Views
      stacksofplatesS

      @stacksofplates said in Remmina: Fedora to Fedora issue.:

      @bigbear said in Remmina: Fedora to Fedora issue.:

      @gjacobse said in Remmina: Fedora to Fedora issue.:

      @bigbear said in Remmina: Fedora to Fedora issue.:

      @gjacobse said in Remmina: Fedora to Fedora issue.:

      @bigbear said in Remmina: Fedora to Fedora issue.:

      @gjacobse said in Remmina: Fedora to Fedora issue.:

      I know this was discussed in the past, but I am not able to find the thread on it.

      Windows to Fedora using RDP is fine,.. it's Fedora to Fedora using Remmina that I get the issue.

      0_1530814284753_Remmina RDP Error.png

      Thoughts?

      Is this a Type or are you saying that you RDP from a Windows box to a remote Fedora box?

      At that time, I was going from Fedora to Fedora

      But you are using RDP protocol and not VNC?

      Sadly I don't remember currently. And for the moment, I am mainly all Windows again due to some hardware issues. Once things getting settled - oh sometime about 2025 - I will have another go at it.

      I was just reading the part where you accessed a Linux PC via RDP from your Windows box, and wanting to make sure I read that right. I am assuming you meant that you accessed a WIndows BOX for Remmina RDP from your Linux box.

      No you can RDP into Linux. xRDP will either set up a full X session or use behind in ND the scenes to create a session.

      Wow that was terrible. It was supposed to say "or use vnc behind the scenes"

    • gjacobseG

      DellAssistant: Critical Seagate Update

      Watching Ignoring Scheduled Pinned Locked Moved dell support assistant critical update inspiron 13
      4
      1 Votes
      4 Posts
      1k Views
      dbeatoD

      @gjacobse said in DellAssistant: Critical Seagate Update:

      Core is distributed with ABSOLUTELY NO WARRANTY
      www.tinycorelinux.net

      Someone else had that issue
      https://www.reddit.com/r/Dell/comments/8sqrxx/core_is_distributed_with_absolutely_no_warranty/

    • bigbearB

      Backblaze for Windows Server

      Watching Ignoring Scheduled Pinned Locked Moved
      34
      0 Votes
      34 Posts
      5k Views
      black3dynamiteB

      @bigbear said in Backblaze for Windows Server:

      @scottalanmiller said in Backblaze for Windows Server:

      @bigbear said in Backblaze for Windows Server:

      @travisdh1 said in Backblaze for Windows Server:

      @bigbear said in Backblaze for Windows Server:

      @travisdh1 said in Backblaze for Windows Server:

      @bigbear said in Backblaze for Windows Server:

      @travisdh1 said in Backblaze for Windows Server:

      @bigbear said in Backblaze for Windows Server:

      @travisdh1 said in Backblaze for Windows Server:

      @syko24 said in Backblaze for Windows Server:

      @bigbear - Duplicati is a free option for backing up to B2. I have not personally used it with B2 but seems to be very flexible with various storage platforms.

      https://www.backblaze.com/blog/duplicati-backups-cloud-storage/

      I do use duplicati with B2 for it's target storage. Works great.

      What type of file server are you running?

      It's NextCloud on my home lab box. So really... nothing. Maybe 500MB worth of things to actually back up.

      If you run nextcloud as a premise server can it serve as a bad to thr local network? Or only accessed via sync tool?

      You can use it as the only on-premise file server if you want. Everything can access it via webdav now, and you can tie it into any AD or OpenLDAP domains already on site. Just makes end-user life that much easier. If setup properly, it's always accessible via a website anyway. The sync client is really the most painful way to access it, honestly.

      Wow my typos....

      So you can use it as a NAS/File Server and it does file locking etc like a windows file server?

      I haven't specifically tested it's shared file locking, so I won't say for sure myself.

      But you use it to map a network drive, correct?

      And by file locking I just mean basic "this file is in use by XX user, the basic SMB stuff)

      Yes, you map a legacy network drive.

      I am debating whether to load up NextCloud or just some CentOS setup for basic file sharing services. I am worried I am going to come back one day and see that he has installed FreeNAS or some other junk. But I cant speak from any personal experience about NextCloud.

      Not sure we could rearrange the current gear to do a SAM-SD setup.

      Ubuntu Server 18.04 live installer makes it easy to quickly deploy nextcloud during the install to test Nextcloud.

    • wirestyle22W

      Nginx SSL Certification + Nextcloud +Guacamole

      Watching Ignoring Scheduled Pinned Locked Moved nginx
      17
      0 Votes
      17 Posts
      2k Views
      wirestyle22W

      @jaredbusch Hm. I'm getting too many rewrite errors now. Some odd problems occurring. Relative pathing problem?

    • bigbearB

      FreePBX Restored from Vultr Snapshot - No IP on boot

      Watching Ignoring Scheduled Pinned Locked Moved freepbx 13 vultr
      16
      0 Votes
      16 Posts
      3k Views
      bigbearB

      @pete-s said in FreePBX Restored from Vultr Snapshot - No IP on boot:

      @bigbear
      It's udev that has a rule with eth0 and the old mac address.
      Don't know what distro you're running but try looking in /etc/udev/rules.d/70-persistent-net.rules.
      Delete the line that has NAME="eth0" in it. And change the line with NAME="eth1" to eth0.
      And then you have to swap back eth1 to eth0 in your network settings.

      Perfect!

    • JaredBuschJ

      How to use a systemd timer instead of cron to automate a git pull

      Watching Ignoring Scheduled Pinned Locked Moved systemd timer cron fedora rhel git pull git systemd timers
      13
      6 Votes
      13 Posts
      4k Views
      stacksofplatesS

      @jaredbusch said in How to use a systemd timer instead of cron to automate a git pull:

      Oh look I just found this posted here already /sigh..

      So many questions I could have not asked of @stacksofplates, had I recalled this thread.
      https://mangolassi.it/topic/13455/systemd-timers-instead-of-cron

      I honestly forgot I posted that.

    • stacksofplatesS

      Systemd timers instead of cron

      Watching Ignoring Scheduled Pinned Locked Moved cron linux unix systemd systemd timers
      3
      4 Votes
      3 Posts
      5k Views
      stacksofplatesS

      @obsolesce said in Systemd timers instead of cron:

      @stacksofplates said in Systemd timers instead of cron:

      Now just enable each one
      systemctl enable backup-tower backup-pbx backup.target backup.timer

      I'm not sure how this works.
      Why wouldn't you just enable the backup.timer? Why add everything else in there?
      I'm not clear on how it's all linked.

      Yeah you don't. I honestly don't remember why I had it this way. Could have just been an accident. Was quite a while ago.

    • bigbearB

      Manually Updating FreePBX

      Watching Ignoring Scheduled Pinned Locked Moved freepbx
      16
      1 Votes
      16 Posts
      5k Views
      JaredBuschJ

      @bigbear said in Manually Updating FreePBX:

      @jaredbusch said in Manually Updating FreePBX:

      @bigbear said in Manually Updating FreePBX:

      @jaredbusch said in Manually Updating FreePBX:

      @scottalanmiller said in Manually Updating FreePBX:

      @bigbear said in Manually Updating FreePBX:

      @scottalanmiller said in Manually Updating FreePBX:

      @bigbear said in Manually Updating FreePBX:

      So at this point I would assume a clean install of FreePBX 14 with Asterisk 14 is recommended?

      I've had better luck with Asterisk 15.

      So FreePBX14 with Asterisk 15?

      That's what we are using.

      Yes, FreePBX 14 with Asterisk 14 is what I have everywhere.

      I was thinking this. 14 and 14. Have you used FreePBX14 with asterisk15 in production?

      All of my production FreePBX 14 are Asterisk 15.

      So now that everything is fixed and the update is complete I see the update software section of System Admin is gone. I had read that they can automatically manage security and updates now. Is that what you are doing, or did you disable it?

      I prefer to do it myself because I don't want to deal with a down PBX. Granted that has never happened from a normal update, at least to me.

      It is now under Admin -> Updates
      0_1535136718470_ecab0baa-2524-40e2-889c-fa6997c2afbc-image.png

      It has this scheduler, but it does not seem to actually do anything except check.
      0_1535136794470_b9a17dbd-3dda-4446-8149-aa65545fb604-image.png

    • DustinB3403D

      CentOS 7.5 not listing ports when added to firewall-cmd

      Watching Ignoring Scheduled Pinned Locked Moved centos setenforce linux firewall-cmd
      11
      1 Votes
      11 Posts
      1k Views
      JaredBuschJ

      @dustinb3403 said in CentOS 7.5 not listing ports when added to firewall-cmd:

      @jaredbusch Look at the OP, i have telnet listening to those ports.

      Ahh, didn't scroll enough.

    • 1

      What to do when password is lost for Supermicro IPMI.

      Watching Ignoring Scheduled Pinned Locked Moved supermicro ipmi password reset password
      1
      2 Votes
      1 Posts
      5k Views
      No one has replied
    • bigbearB

      Blinking Cursor on Fresh Fedora 28 Install after reboot

      Watching Ignoring Scheduled Pinned Locked Moved fedora 28 fedora workstation
      24
      0 Votes
      24 Posts
      4k Views
      dafyreD

      @bigbear said in Blinking Cursor on Fresh Fedora 28 Install after reboot:

      So I made a full USB installer for Suse Tumbleweed this morning and loaded it up, I am afraid to reboot.

      I am hoping its something Fedora is missing the Suse got right...

      /me hands you a dang helmet.

      Good luck!

    • S

      Saving space by leaving NTFS hard links with tree size pro

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      0 Votes
      6 Posts
      554 Views
      DustinB3403D

      @jaredbusch said in Saving space by leaving NTFS hard links with tree size pro:

      @dustinb3403 said in Saving space by leaving NTFS hard links with tree size pro:

      Rather than trying to remove hard links I would look at applying some kind of deduplication to your file server.

      https://docs.microsoft.com/en-us/windows-server/storage/data-deduplication/understand

      You (and @travisdh1 for upvoting) need to read more.. Server 2008 was clearly stated. There is nothing for Server 2008. Even your link states that Server 2008 R2 was the first to have the old infrastructure called "Single Instance Store"

      And your assumption that @shutdown_engineer isn't running R2 is somehow more accurate? And not for nothing, but there are deduplication tools, that can be run on Server 2008 outside of what's provided by microsoft. This was a simple reference to the functionality.

    • 1

      Nested hypervisors?

      Watching Ignoring Scheduled Pinned Locked Moved virtualization nested virtualization hypervisor hyper-v kvm xen
      65
      1 Votes
      65 Posts
      8k Views
      wirestyle22W

      @emad-r said in Nested hypervisors?:

      also as vendor they dont want the complexity advantages of Virtualization

      ftfy

    • travisdh1T

      Nginx Fedora default /etc/nginx/nginx.conf for @wirestyle22

      Watching Ignoring Scheduled Pinned Locked Moved nginx fedora 28 default
      1
      2 Votes
      1 Posts
      379 Views
      No one has replied
    • scottalanmillerS

      Why is the Third World Running Windows?

      Watching Ignoring Scheduled Pinned Locked Moved
      126
      3 Votes
      126 Posts
      15k Views
      K

      @travisdh1 said in Why is the Third World Running Windows?:

      ame now. Thanks for making me waste the rest of the eveni

      Best news ever

    • KyleK

      This topic is deleted!

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      18 Views
      No one has replied
    • 1
    • 2
    • 202
    • 203
    • 204
    • 205
    • 206
    • 698
    • 699
    • 204 / 699