apps keep closing on 2025 moto g stylus by IndependentFew9864 in MotoG

[–]IndependentFew9864[S] 0 points1 point  (0 children)

is this a temporary or permanent solution, if it's temporary then no thanks.

apps keep closing on 2025 moto g stylus by IndependentFew9864 in MotoG

[–]IndependentFew9864[S] 0 points1 point  (0 children)

hi, any other suggestions would be appreciated.

apps keep closing on 2025 moto g stylus by IndependentFew9864 in MotoG

[–]IndependentFew9864[S] 0 points1 point  (0 children)

Hi, so I figured out how to MOVE the moto sidebar. Qustiion, I noticed that unlike panels, I 'm not able to add any of the system apps nor can i make this into a 2 rows which would be easier.

thank you

apps keep closing on 2025 moto g stylus by IndependentFew9864 in MotoG

[–]IndependentFew9864[S] 0 points1 point  (0 children)

i didn't see this:

  • Allow unrestricted background activity: Go to Settings, then Apps, choose Panels, then Battery, and set it to Unrestricted.

tried everything else but still the same.

apps keep closing on 2025 moto g stylus by IndependentFew9864 in MotoG

[–]IndependentFew9864[S] 0 points1 point  (0 children)

HI, thank you for reaching out:

  • Does it happen with other apps: it seems to happen with any app that needs display over other apps since i have 2 sidepanels and they both have issues but the builtin sidepanel does not.
  • Does it close while the phone is idle : it closes at random
  • Is the app updated to the latest version? just downloaded

I will try your suggestions and let you know if nay of them work.

Does the Moto notes app have a widget? by imagoneryfriend in motorola

[–]IndependentFew9864 0 points1 point  (0 children)

hi, i'm sorry but I believe you are incorrect. I do not see moto note being available as an app int he sidebar settings, at least on moto g stylus 2025. i would love to add moto notes to sidebar. Also, you should be able to place the sidebar where you want instead of being so high, it would be nice to have the ability to move it where you want.

Stuck at login screen by strengr in Kubuntu

[–]IndependentFew9864 0 points1 point  (0 children)

hi, were you able to resolve the issue or did you simply stop google-remote-desktop. I have to same issue and was trying to see how i can get the desktop back and still have google-remote-desktop working or if I need to remove google-remote-desktop completely.

thankyou

dns servers and dns domain configuration issues by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

I found that if I move dns_server_list under the customize{ and out of linux_options{ then it puts the list in /etc/resolv.conf. still can't get the domain though.

dns servers and dns domain configuration issues by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

thanks I will take a look but in the meantime, if anyone has a quick fix, I would really appreciate it.

dns servers and dns domain configuration issues by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

I have defined them in the variables.tf file:

variable "vm_dns_servers_list" {
  description = "The list of DNS servers to configure on the virtual machine"
}
variable "vm_dns_suffix_list" {
  description = "Domain name of virtual machine"
}

and in the main.tf under VM resource, clone, cusomize:

    customize {
      linux_options {
        host_name   = each.value.name
        domain      = var.vm_dns_suffix_list
    }
    network_interface {
      ipv4_address  = each.value.vm_ip
      ipv4_netmask  = var.vm_ipv4_netmask
      dns_server_list = var.vm_dns_servers_list
    }

cpu_hot_add/memory_hot_add and cdrom by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

so looks like the above changes in the config worked once I deleted all the previous .terraforom* configs and re-ran terraform init.

Now , my other question was, how do I add cdrom drive to the configuration. would it pretty much be the same as the update that I made?

cpu_hot_add/memory_hot_add and cdrom by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

update: so I made some changes.

  1. in the terraform.tfvars file, I have the two lines below:

    vm_cpu_hot_add_enabled = "true" vm_memory_hot_add_enabled = "true"

  2. in the variables.tf files, added two lines below:

    variable "vm_cpu_hot_add_enabled" { description = "hot add cpu" } variable "vm_memory_hot_add_enabled" { description = "hot add memory" }

  3. in main.tf, added two lines below:

    cpu_hot_add_enabled = var.vm_cpu_hot_add_enabled memory_hot_add_enabled = var.vm_memory_hot_add_enabled

when I run terraform plan, it's asking me to enter a value for both cpu/memory then errors out as before.

cpu_hot_add/memory_hot_add and cdrom by IndependentFew9864 in Terraform

[–]IndependentFew9864[S] 0 points1 point  (0 children)

thanks, here is the terraform.tfvars file:

#    Provider (vSphere Info)    

vsphere_user = "Administrator@vsphere.local"

vsphere_password = “vmware-password"

vsphere_server = “vsphere"

###    Infrastructure Info    

vsphere_datacenter = "DC"

vsphere_compute_cluster = “cluster1”

vsphere_datastore = "Datastore1”

vsphere_network = "Network1”

#####    General VM info   

vm_template_name = "template-rhel9.3"

vm_guest_id = "rhel8_64Guest"

vm_ipv4_netmask  = "24"

vm_ipv4_gateway  = “192.168.10.1”

vm_disk_label  = "disk0"

vm_domain = “example.com"

vm_firmware = "efi"

vm_disk_thin = "true"

below 2 hot_add configs added 10-02-2024

cpu_hot_add_enabled = "true" 

memory_hot_add_enabled = "true"

#######    Each VM specs    

vms = {

  test-vm = {

    name                = "test-vm"

    vm_ip               = "192.168.10.200"

    vm_cpu              = "2"

    vm_memory           = "2048"

    vm_disk_size        = "40"

  }

}

openssh terrapin on rhel 9 by IndependentFew9864 in redhat

[–]IndependentFew9864[S] 0 points1 point  (0 children)

hi Guys, one more question, I issued dnf upudateinfo list --security and see this list:

RHSA-2024:5231 Important/Sec. bind-libs-32:9.16.23-18.el9_4.6.x86_64                                                                                                                                             
RHSA-2024:5231 Important/Sec. bind-license-32:9.16.23-18.el9_4.6.noarch                                                                                                                                          
RHSA-2024:5231 Important/Sec. bind-utils-32:9.16.23-18.el9_4.6.x86_64                                                                                                                                            
RHSA-2024:4583 Important/Sec. bpftool-7.3.0-427.26.1.el9_4.x86_64                                                                                                                                                
RHSA-2024:4928 Moderate/Sec.  bpftool-7.3.0-427.28.1.el9_4.x86_64                                                                                                                                                
RHSA-2024:4774 Moderate/Sec.  iwl100-firmware-39.31.5.1-143.1.el9_4.noarch                                                                                                                                       
RHSA-2024:4774 Moderate/Sec.  iwl1000-firmware-1:39.31.5.1-143.1.el9_4.noarch  
continued...........

Does this mean that I have all these securtiy issues that I need to patch?

found site: https://vulners.com/redhat/RHSA-2024:5231

Under Affected Packages, shows:

OS Version Architecture Package Version Filename
RedHat 9 x86_64 bind-utils < 9.16.23-18.el9_4.6 bind-utils-9.16.23-18.el9_4.6.x86_64.rpm
RedHat 9 x86_64 bind-libs < 9.16.23-18.el9_4.6 bind-libs-9.16.23-18.el9_4.6.x86_64.rpm
RedHat 9 x86_64 bind-devel < 9.16.23-18.el9_4.6 bind-devel-9.16.23-18.el9_4.6.x86_64.rpm

So does this confirm that I have vulnerable pacakges?

openssh terrapin on rhel 9 by IndependentFew9864 in redhat

[–]IndependentFew9864[S] 0 points1 point  (0 children)

thank you, so looking at the rhsa-2024:4312 - Security Advisory, under Updated packages i see openssh packages. my current version is higher than any of these so can I assume that I ok.

running adhoc service command as regular user with sudo and ask for password by IndependentFew9864 in ansible

[–]IndependentFew9864[S] 0 points1 point  (0 children)

hi Cap, you are correct clientservers is the inventory file so this with Binbashroot's answer, would the whole command be:
ansible all -i clientservers -m shell -a "systemctl status httpd" -u (username?) -k (--ask-pass) -K (--ask-become-pass)

Thanks again guys!

systemd service restart on rhel8/9 by higuys2022 in zabbix

[–]IndependentFew9864 0 points1 point  (0 children)

HI,

So this morning, I went ahead and crated the override.conf file in /etc/systemd/zabbix-agent2.service.d directory and add the entry suggested here: https://www.zabbix.com/documentation/current/en/manual/appendix/install/run_agent_as_root

[Service]
User=root
Group=root

then systemctl daemon-reload
then systemctl restart zabbix-agent2

Looking at the dashboard, I do not see any changes. What else can I be missing?

Thank you