ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. black3dynamite
    3. Best
    • Profile
    • Following 0
    • Followers 3
    • Topics 42
    • Posts 5,987
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: USB shuts off when Ubuntu installer starts

      @irj said in USB shuts off when Ubuntu installer starts:

      @black3dynamite said in USB shuts off when Ubuntu installer starts:

      What software did you use to create the bootable drive?

      Rufus, etcher, Fedora Media Writer, etc...?

      Unetbootin

      On Windows, I like using Rufus.
      http://rufus.akeo.ie/

      On Linux and Mac, I’ve had great success with Etcher.
      https://etcher.io/

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Gaming - What's everyone playing / hosting / looking to play

      @dafyre And it works on Linux. Hell yeah.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: LINux: Comm port address changes

      @scottalanmiller said in LINux: Comm port address changes:

      @momurda said in LINux: Comm port address changes:

      @gjacobse disk devices do this as well. sometimes a usb drive used for boot will be assigned sda, sometimes sdi on a system with an 8 bay md0 set, as an example.

      That's why we are encouraged to use UUID for storage devices when configuring them.

      It’s definitely more reliable when using UUID for mount points in /etc/fstab.

      XenServer is another one that utilizes UUID too.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Youtube Video

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Disable Screensaver and User Lockout with PowerShell
      # InactivityTimeoutSecs
      New-ItemProperty `
      -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" `
      -Name "InactivityTimeoutSecs" `
      -PropertyType "DWord" `
      -Value "0"
      
      # Set computer to never sleep
      cmd /c "powercfg.exe /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c"
      
      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: My Favorite Software...

      My favorite apps are the ones that are cross platform like VSCode.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Fedora 27 Filesystem root full

      @jaredbusch said in Fedora 27 Filesystem root full:

      I cannot unmount /home because it is busy. even after a reboot and not logging in.

      You will have to use a live bootable OS to unmount /home.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      Reading about netplan and Windows DHCP Server
      0_1529358947437_netplan-win-dhcp.png

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Nextcloud 12/CentOS 7 -- Problem with code integrity check

      @emad-r said in Nextcloud 12/CentOS 7 -- Problem with code integrity check:

      @black3dynamite
      I ll try my best to answer:

      You can have either but not both, PHP as Apache HTTPD module or PHP as FPM, If you want to setup PHP-FPM on centos instead of PHP module or mod_php, and then PHP-FPM starts as an systemctl service, you will need to carry on those steps:

      Install Apache:

      	yum -y install httpd
      	systemctl enable httpd
      	systemctl start httpd
      

      Install PHP-FPM:

      	yum -y install php
      	yum -y install php-fpm
      

      Configure Apache httpd:

      	nano /etc/httpd/conf.d/php.conf
      
      	<FilesMatch \.php$>
      	#    SetHandler application/x-httpd-php
      		SetHandler "proxy:fcgi://127.0.0.1:9000" 
      	</FilesMatch>
      

      Then:

      	systemctl start php-fpm 
      	systemctl enable php-fpm 
      	systemctl restart httpd 	
      

      For me if I want to make any web app, I just simply go this route, back in the day I would make it faster by running Nginx, but most third party web apps expect apache, and I found out the by simply using PHP-FPM with Apache I can make the web app as responsive and fast as ever, and I never found scenario where that is not compatible, what you simply do is remove PHP being child of apache, and giving it daemon of its own with children, and it becomes very fast.

      The setup on CentOS is different compare to Fedora 27.

      Installing php also installs php-fpm.

      [root@localhost hjohnson]# dnf install php
      Last metadata expiration check: 2:30:05 ago on Wed 07 Feb 2018 08:46:00 AM MST.
      Dependencies resolved.
      ============================================================================================================================================================================================================
       Package                                               Arch                                        Version                                               Repository                                    Size
      ============================================================================================================================================================================================================
      Installing:
       php                                                   x86_64                                      7.1.14-1.fc27                                         updates                                      2.8 M
      Installing dependencies:
       nginx-filesystem                                      noarch                                      1:1.12.1-1.fc27                                       fedora                                        20 k
       php-cli                                               x86_64                                      7.1.14-1.fc27                                         updates                                      4.2 M
       php-common                                            x86_64                                      7.1.14-1.fc27                                         updates                                      1.0 M
       php-json                                              x86_64                                      7.1.14-1.fc27                                         updates                                       72 k
      Installing weak dependencies:
       php-fpm                                               x86_64                                      7.1.14-1.fc27                                         updates                                      1.5 M
      

      And its already configured /etc/httpd/conf.d/php.conf

      # Redirect to local php-fpm if mod_php is not available
      <IfModule !mod_php5.c>
        <IfModule !mod_php7.c>
          # Enable http authorization headers
          SetEnvIfNoCase ^Authorization$ "(.+)" HTTP_AUTHORIZATION=$1
      
          <FilesMatch \.(php|phar)$>
              SetHandler "proxy:unix:/run/php-fpm/www.sock|fcgi://localhost"
          </FilesMatch>
        </IfModule>
      </IfModule>
      
      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Non-IT News Thread

      https://www.omgubuntu.co.uk/2018/06/total-war-warhammer-ii-linux

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Upgrading Fedora 22 to 27

      @aaronstuder said in Upgrading Fedora 22 to 27 - Missing PGP Key:

      @jaredbusch said in Upgrading Fedora 22 to 27 - Missing PGP Key:

      You were lucky. That something worked does not not mean it is correct.

      Excellent Point. Any suggestions on how to check to make sure everything is good?

      The first thing for me would be SELinux warnings and third-party repository.

      This might provide you with some information to look for.
      https://fedoraproject.org/wiki/DNF_system_upgrade

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      @momurda said in What Are You Watching Now:

      @jaredbusch Have you seen the Ghost Tribe(think that is the name) That one is good too

      Damn, this movie is pretty good so far.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Looking for recommendations on the best UTM Firewalls for SMB's...

      @thwr said in Looking for recommendations on the best UTM Firewalls for SMB's...:

      pfSense is basically a BFG9000 full auto 12-gauge high explosive gatling railgun solution, capable of everything. pfSense is great because it features a solid base and has some great plugins. Used if for decades and will use it in the future. But it requires quite some experience when you want to get into details.

      Personally, I think about UTMs the same way I do when I have to think about those compact stereo systems. They do what they are supposed to, mostly, but suck big time at some detail. And you can't replace that single bad thing. Better get specialized devices, so a good firewall / router (and maybe VPN) and a good IDS/IPS/AV system.

      OPNsense (https://opnsense.org/) is another option if you don't want to use pfSense.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Luke Cage Season 2

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Cockpit: just keeps gettin' better!!

      @aaronstuder

      Creating VM in QEMU/KVM user session (qemu:///session) defaults to /home/user1/.local/share/libvirt/images/
      Creating VM in QEMU/KVM (qemu:///system) defaults to /var/lib/libvirt/images/

      In Cockpit, if you forget to login with Reuse my password for privileged tasks checked with user1. All created VMs will show up in /home/user1/.local/share/libvirt/images/ and in Virt Manager under QEMU/KVM user session.

      If you login as root or user1 with Reuse my password for privileged tasks checked. All created VMs will show up in /var/lib/libvirt/images/ and in Virt Manager under QEMU/KVM.

      After you login, you should see padlock unlocked next to your account on the top right page if you enabled Reuse my password for privileged tasks.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Doing Right Now

      @wrcombs said in What Are You Doing Right Now:

      @dustinb3403 said in What Are You Doing Right Now:

      @wrcombs said in What Are You Doing Right Now:

      @dustinb3403 said in What Are You Doing Right Now:

      Did she just hide the desktop icons?

      Possibly, Im not sure.
      I'm looking through everything and it all seems to be there.

      This is just a desktop preference, just right click and select "show icons" the exact verbage is something else though.

      Looks like all of her desktop Icons were thrown into the "recycle bin"

      One of many reason's why I can't stand items on the desktop.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Software used for documentation recommendations?

      @dbeato said in Software used for documentation recommendations?:

      @black3dynamite said in Software used for documentation recommendations?:

      WIkiWP hasn't been updated since January 27, 2016. Compatibility issue can appear with a newer version of WordPress.
      

      Running fine on 4.9.4

      Works great for me too. But for how long? I normally stick with the defaults from Wordpress.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Hi, my name is _____ and I have a problem...

      I feel your pain. Multiple chrome windows opened with multiple tabs for each one. And that’s not including the other browsers or office applications or XenApps.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: We couldn't complete the updates Undoing Changes Do not turn off your computer

      Is this a VM on Hyper-V? Shutdown the VM and go to the settings and turn off secure boot. Boot up the VM and try updating.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Fist of the North Star (Anime) on Prime Video.

      Damn, I forgot how bloody and violent the movie is.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • 1
    • 2
    • 48
    • 49
    • 50
    • 51
    • 52
    • 88
    • 89
    • 50 / 89