ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. stacksofplates
    3. Best
    • Profile
    • Following 0
    • Followers 13
    • Topics 145
    • Posts 7,946
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Is Docker a joke or do I just not see the point?

      @momurda said in Is Docker a joke or do I just not see the point?:

      @stacksofplates None of the applications you install are managed by OS? How is this different and better than installing applications to %appdata% in Windows?
      You must update docker images separately?
      The docker images may or may not get updated with package versions available to OS?
      What do you think about things like bitnami?

      I’m assuming you mean on Atomic Workstation? You can “install” certain packages but they aren’t installed in a traditional sense. It’s an overlay file system overtop of the operating system. Docker images are deployed separately that’s correct.

      As far as I know, Bitnami just uses debs and rpms to deploy with.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Unable to delete KVM snapshot

      @emad-r said in Unable to delete KVM snapshot:

      @stacksofplates said in Unable to delete KVM snapshot:

      @emad-r said in Unable to delete KVM snapshot:

      @jaredbusch said in Unable to delete KVM snapshot:

      @emad-r said in Unable to delete KVM snapshot:

      @jaredbusch

      Hi,

      What is the reasoning for doing external snapshots and going against the default (where everything is saved in one file), I use virt but I love virt-manager and with that it always does the snap internally.

      Any benefits of external aside being the ESXi way?

      Cause it seems here that what is causing the issue, and I recall somewhere I read the qcow2 expects everything to be in 1 file.

      I just read @stacksofplates basically what he says.

      because you cannot copy the file off to backup when you use the internal snapshot

      Interesting I dont take VM backup frequently, when I do I rsync the whole VM file.

      rsync --progress --inplace -h -W /var/lib/libvirt/images/VM/centos7.0-clone.qcow2 [email protected]:/var/lib/libvirt/images/VM/centos7.0-clone.qcow2

      This after the initial copy, if you are extra paranoid you can take the file everytime if you dont trust rsync algorithms.

      But it is interesting this external snapshot approach, how much are the sizes of external snapshots roughly ? I know it depends but what are we dealing with here. 100 MB ?

      You have to shut the VM off to just rsync the drive. This way you can leave the VM on.

      You don’t copy the external snapshot. You take a snapshot and copy the backing store. Then blockcommit (merge) the snapshot back into the original image.

      No need if you freeze the filesystem first then rsync. but for this I recommend taking each time the whole file with rsync

      Uh there’s no difference. If you freeze the system it can’t be used. This is to run on live systems so they remain running the whole time.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: My 0.08$ experince with DigitalOcean

      @coliver said in My 0.08$ experince with DigitalOcean:

      @emad-r said in My 0.08$ experince with DigitalOcean:

      DNS setup was the last straw I DID the exact same steps I did with vutlr to make my site have cool name, and with vultr it was go to the Name hosting that you purchased change the the name servers to vultr servers and go back to vultr admin and create DNS entry and link it with instance, Did exactly like that with DO but what I got is when I go to my site www.example.com --> it went to the IP address of the site and users would get http://IP

      This last one seems weird. Why are you letting vultr or DO handle your DNS?

      Probably just ease of use. Like having Route53 and AWS.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Install Nginx as a Reverse Proxy on Fedora 27

      @jaredbusch said in Install Nginx as a Reverse Proxy on Fedora 27:

      @coliver said in Install Nginx as a Reverse Proxy on Fedora 27:

      @jaredbusch 0_1524226298968_a9d48ad2-c13d-440c-94c5-a6951b5f6887-image.png

      Pretty much exactly

      I can't make fun. I prefer Vim. I've tried to use nano and I felt clunky. But to each their own. Just don't use emacs :upside-down_face:

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: My 0.08$ experince with DigitalOcean

      @scottalanmiller said in My 0.08$ experince with DigitalOcean:

      Now there is value to using automation tools to make some of this easier. But you can use those with dedicated DNS hosts, too.

      Here's an example with Terraform for anyone who's curious. It creates a Jenkins server from an image I created with Packer. Then it adds the new A record to Cloudflare. While this looks more complicated, after you write the module all you need is the first block below to create more.

      module "jenkins" {
        source = "./modules/jenkins"
        server_name      = "jenkins"
        cluster_name     = "jenkins"
        openstack_keypair = "xps15"
      }
      
      resource "cloudflare_record" "jenkins" {
          domain = "jhbcomputers.com"
      	name   = "jenkins.pa"
      	value  = "${module.jenkins.jenkins_ip}"
      	type   = "A"
      }
      

      Here's the module where all of the good stuff happens:

      main.tf:

      resource "openstack_compute_instance_v2" "jenkins" {
        count = 1
        name = "${var.server_name}"
        image_name = "jenkins"
        flavor_id = "7ebe8c2d-99bb-480f-be71-40dcb3033240"
        key_pair = "${var.openstack_keypair}"
        security_groups = ["${openstack_compute_secgroup_v2.instance.id}"]
        network {
          name = "external"
        }
      }
      
      resource "openstack_compute_secgroup_v2" "instance" {
          name  = "${var.cluster_name}"
          description = "webserver secgroup"
      
          rule {
              from_port = 8080
              to_port   = 8080
              ip_protocol = "tcp"
              cidr        = "0.0.0.0/0"
          }
      
          rule {
              from_port   = 22
              to_port     = 22
              ip_protocol = "tcp"
              cidr        = "0.0.0.0/0"
          }
      
          rule {
              from_port = -1
              to_port   = -1
              ip_protocol = "icmp"
              cidr        = "0.0.0.0/0"
          }
      
      }
      

      outputs.tf:

      output "jenkins_ip" {
        value = "${openstack_compute_instance_v2.jenkins.network.0.fixed_ip_v4}"
      }
      

      vars.tf:

      variable cluster_name       { }
      variable openstack_keypair  { }
      variable server_name        { }
      variable number              { 
          default = 1
      }
      
      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Create UEFI bootable USB from Fedora

      @jaredbusch said in Create UEFI bootable USB from Fedora:

      So does anyone know an easy way to do this?
      Google gives me some answers that are all manual, including have to copy the data out of the ISO and onto the USB after it is properly prepared.

      Man what a pain. On Windows I just use Rufus.

      Fedora Media Writer only makes legacy boot versions.

      I use the disks application in GNOME. Choose "Restore disk image" from the menu and choose the ISO.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Backup Windows with UrBackup

      @obsolesce said in Backup Windows with UrBackup:

      @emad-r said in Backup Windows with UrBackup:

      @scottalanmiller

      UrBackup is too heavy for my taste, I tested it but the interface was too 1980s

      saltstack + robocopy + 7za

      How do you do incremental backups with change block tracking? That method doesn't do it. So you're doing full backups and copying full backups every time?

      I can't answer for him because I have no idea how he's using it. But that does work if you're only copying data from the data volumes. That's pretty much what ReaR does, just replace 7za with tar.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Testing oVirt...

      Well they finally updated their user interface with Patternfly. The old one was pretty bad.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Testing oVirt...

      @dbeato said in Testing oVirt...:

      @stacksofplates said in Testing oVirt...:

      @dbeato said in Testing oVirt...:

      @fateknollogee said in Testing oVirt...:

      Do not:

      1. use special characters in any of your passwords - letters & numbers only.
      2. hosted engine vm - assign static IP, no dhcp reservation.

      That’s pretty bad security for not allowing special characters, maybe not spaces either?

      Tower has that restriction too for a certain password. I think it's the RabbitMQ password. If it's long enough I don't see it making much difference.

      Maybe, but again not sure the reasoning why the no special character especially if it is used in other languages.

      Oh sure I agree it should be supported but a 30 character 3 case password is more secure than a 12 character 4 case.

      I did a quick search and it looks like you have to manually escape the special characters.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Looking to ditch windows at work....

      0_1527086769108_exchange.png

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Looking to ditch windows at work....

      @irj said in Looking to ditch windows at work....:

      I dont see any option...

      0_1527090334077_387f8763-e4fc-4280-8327-6cea80f47fc1-image.png

      Sorry had an interview this afternoon so I've been away. I meant the GNOME online accounts not the evolution ones.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Jeff Hunter Worries Me Quite a Bit

      @scottalanmiller said in Jeff Hunter Worries Me Quite a Bit:

      @stacksofplates said in Jeff Hunter Worries Me Quite a Bit:

      What's funny is that started with a discussion on cloning. I can fully clone on my KVM boxes in less than 5 seconds. It takes about a minute and a half to two minutes on our VMware boxes.

      Linked clones with a baking store happen immediately on KVM just like on VMware. I don't see the upside to paying for that.

      Because, obviously, you get what you pay for.

      Yeah. That's why I said earlier that no real cloud provider uses them. They don't want the lock in and they can "usually" get better performance.

      OpenStack on a 380G6. Spinning up takes about 20-30 seconds but that's with full cloud init provisioning.

      Honestly, I don't personally care what's on the other end as long as I can use an API to control it or just define it in a text file somehow. So I don't see any benefits from a UI.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: New to Fedora, What should I configure out of the box?

      Here's my default list of packages:

      0_1527721645319_packages.png

      I also install Telegram.

      And I have all of my dotfiles for zsh, tmux, and vim in Git.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: IP Scanner for Linux

      Depends what you want. nmap works well for a lot of info. arp-scan gives you a simple table of MAC, IP, and manufacturer.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Need help installing themes on Fedora Gnome...

      I usually put it under ~/.themes. You might need to log out and back in. I also just use tweak tool. Never done it with cli.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Fail-over solutions

      windows with an mysql database, lots of php and apache

      OMG I'm sorry.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Fail-over solutions

      The only thing I can think of for failover on MySQL is Galera. I've never done it so I can't answer to how hard or easy it is to set up. Apache can easily be done with a VIP but I have no idea how to do that on Windows. Linux has keepalived for VIPs, I know MS has some implementation but I've never set it up.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?

      I'll throw out what I've done. I've used NoMachine over ZeroTier and it works pretty well. It may not have a lot of the higher options but if you need remote help type solutions, it works pretty well.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?

      @scottalanmiller said in Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?:

      @stacksofplates said in Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?:

      @scottalanmiller said in Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?:

      @stacksofplates said in Has ConnectWise Set ScreenConnect Adrift as Ghost Ship Software?:

      I'll throw out what I've done. I've used NoMachine over ZeroTier and it works pretty well. It may not have a lot of the higher options but if you need remote help type solutions, it works pretty well.

      The things I like best about SC are the way that it handles Windows clients, performance, and running remote commands as the local admin. It's super reliable.

      Yeah NoMachine works well on Windows but I don't know ow about remote commands. If that's available I've never used it. I've also not paid for their enterprise version either so it could do more, I have no idea.

      I can work around that if necessary.

      NoMachines commercial or a free version?

      There's a free version which is what I used that acts like VNC, Bomgar, etc. Their Enterprise one offers terminal services and other stuff but I've never needed that.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • RE: Fedora name resolution

      @black3dynamite said in Fedora name resolution:

      @obsolesce said in Fedora name resolution:

      @black3dynamite said in Fedora name resolution:

      @obsolesce said in Fedora name resolution:

      @black3dynamite said in Fedora name resolution:

      @obsolesce said in Fedora name resolution:

      If it's a .local domain, edit the avahi-daemon.conf file:

      Un-comment the following line, and add a . (dot) infront of local:

      domain-name=.local

      Then restart network or reboot.

      Why not edit /etc/nsswitch.conf instead?
      https://ask.fedoraproject.org/en/question/90486/cannot-resolve-local-domain-name-on-fedora-23/?answer=90625#post-id-90625

      Change...
      hosts: files mdns4_minimal [NOTFOUND=return] dns myhostname

      To...
      hosts: files dns mdns4_minimal [NOTFOUND=return] myhostname

      I wasn't aware of that option.

      Can you tell me why one solution is better than the other or why one is worse than the other?

      Has long as dns is after files in the hosts: section in nsswitch.conf file, utilities like nslookup should work correctly.

      Un-commenting the .local line in the other file seems to do the job just fine. Still not seeing any advantages to doing it the other way, or disadvantages to keep doing it how I am.

      Only disadvantage or more of an inconvenience that I can see, is that you would have to keep changing the domain name because of each network uses a different domain like .local, .lan, or .home.

      But I don't see anything wrong with un-commenting domain-name=local

      Right, /etc/nsswitch defines where you're looking. So correcting that fixes all scenarios vs fixing only one specific thing.

      posted in IT Discussion
      stacksofplatesS
      stacksofplates
    • 1
    • 2
    • 124
    • 125
    • 126
    • 127
    • 128
    • 143
    • 144
    • 126 / 144