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: What Are You Doing Right Now

      Finally finished my Office 365 Installer script.
      https://gitlab.com/black3dynamite/office365_installer

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Fedora with ScreenConnect

      @wrx7m said in Fedora with ScreenConnect:

      @jaredbusch said in Fedora with ScreenConnect:

      @scottalanmiller said in Fedora with ScreenConnect:

      @jaredbusch said in Fedora with ScreenConnect:

      @scottalanmiller said in Fedora with ScreenConnect:

      @jaredbusch said in Fedora with ScreenConnect:

      @scottalanmiller I told you to use rpm.

      rpm -U screenconnect.rpm

      Yeah... and that's what does this.

      Did you install java?
      dnf install java

      The system runs, so the RPM definitely worked, Java definitely worked, it makes the connection, it collects data, it just shows a blank screen no matter what.

      Ah, so you are farther than before. I misread that.

      When I connect to my desktop at home I see the blank screen.
      I blindly type my password and hit enter.
      Assuming I typed it right, it logs me in and I see my desktop.

      When I connect to my bookstack server I see a blank screen. I hit enter and see this.
      0_1527201714571_b56a84ba-bc0e-4593-8bd9-84a8582fd289-image.png

      I will have to try that on my Thinkpad later on. I also have to fix that lid closing sleep issue. 😐

      On my Fedora Gnome computer, I make the following changes:

      sudo vi /etc/systemd/logind.conf

      And I either uncomment HandleLidSwitch=suspend and change suspend to ignore. Or add
      HandleLidSwitch=ignore

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

      @WrCombs said in What Are You Watching Now:

      Just saw the trailer for "Joker"
      I'm actually a kinda excited for this one.

      Me too

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Aastra 6737i firmware

      @jaredbusch said in Aastra 6737i firmware:

      Anyone have valid links to the firmware for Aastra 6737i phones?

      The Mitel site sucks.

      This link works.
      http://www.aastra.sg/document-library.htm?curr_fam=Aastra+6730i&curr_nav=2&prod_id=15257

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

      @wrx7m said in What Are You Watching Now:

      Was out sick almost the whole week, last week. Watched "Happy!", season 1 on Netflix and caught up on Season 2 on the SYFY Roku app. What a really weird show. I would say it has that comedic gore stylings like Ash vs The Evil Dead.

      Also, watched the entire first season of Black Summer on Netflix. Kind of a The Walking Dead type. Interesting and well-done.

      I enjoyed Black Summer. It's a Z-Nation spin-off.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: KVM homelab - Storage type?

      Depending on the OS, I usually stick with whatever is the default filesystem (XFS/EXT4).
      LVM is your best friend.

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

      Upgrading to Fedora 30 Workstation.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?

      @wrx7m said in CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?:

      @black3dynamite said in CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?:

      @wrx7m said in CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?:

      I have wanted to ask this for awhile, but haven't gotten around to it. CentOS 7 seemed to be used fairly heavily, at least when looking through the tutorials here. Why did most of you stop deploying/using CentOS and start using Fedora instead?

      Updated packages. Now I still deploy CentOS when necessary.

      Which packages are you referring to?

      I'm referring to things like cockpit, mongodb, php, nodejs, etc...

      With CentOS you normally have to rely on using epel, IUS, remi or other repos that are provided directly from developers like mongo or saltstack. Since Fedora releases a new version twice a year, it makes it possible to have a more up to date applications without the need to use other repos besides the one Fedora provides.

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

      @StuartJordan said in What Are You Doing Right Now:

      Fu** you windows and your updates, watching the TV and beep,beep I can here from my desk, there goes windows restarting because it wants to...I like to leave certain programs open in certain positions and views and have to launch them all again..
      Linux does updates the correct way - no forced reboots, can even update the bloody kernel without rebooting....
      /Rant-over

      giphy.gif

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?

      @momurda said in CentOS 7 - Why Did [Almost] Everyone Switch to Fedora?:

      @black3dynamite I don't know the specific reasons.
      I just know that when I wanted to do this a couple years ago, research led me to conclude it is impossible, and in fact the packages used to do the pre upgrade setup from 6 > 7 were removed from repos due to problems.

      Hopefully, by the time CentOS 8 comes out, it will utilize the upgrade setup that Fedora uses now.

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

      @EddieJennings said in What Are You Doing Right Now:

      @WrCombs said in What Are You Doing Right Now:

      So now im thinking Oh Shit. That was dumb to say.. but it's the truth..

      Welcome to level 1 of developing the skill to tell folks (particularly those in power), they're fools without using the statement "you're a fool!"

      Just don’t things like this

      https://giphy.com/gifs/eyebrow-the-rock-6Dj7ZWBERpGU0

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: How to expire Windows user password without AD ?

      For ADUsers
      Set-ADUser -Identity <samAccountName> -ChangePasswordAtLogon $true

      salt 'hostname' cmd.run 'Set-ADUser -Identity <samAccountName> -ChangePasswordAtLogon $true' shell=powershell

      For Local Users
      $user=[ADSI]'WinNT://localhost/account23';
      $user.passwordExpired = 1;
      $user.setinfo()

      https://stackoverflow.com/questions/20705096/how-to-enable-the-user-flag-user-must-change-password-at-next-logon-for-a-loca

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Non-IT News Thread

      Just tired of seeing another Batman again.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: Fedora 28 Server - Linux 101 - How do you partition your drives

      @ccwtech said in Fedora 28 Server - Linux 101 - How do you partition your drives:

      Isn't XFS preferred now?

      RedHat, CentOS and Fedora Server defaults to XFS. EXT4 is fine too.

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

      Good Omens Season 1 on Amazon

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • Renaming hostname in Ubuntu Server 18.04

      For those who installed Ubuntu Server 18.04 using the new installer from (ubuntu-18.04-live-server-amd64.iso), you will notice that renaming the hostname is not preserved after a reboot.

      You'll find that you will need to change preserve_hostname: from false to true in /etc/cloud/cloud.cfg.

      Now you can change your hostname using sudo hostnamectl set-hostname <new-hostname> and will stay put after a reboot.

      Here's a one-liner command to change the preserve_hostname setting to true and to set a new hostname

      sudo sed -i '/preserve_hostname: false/c\preserve_hostname: true' /etc/cloud/cloud.cfg; sudo hostnamectl set-hostname YourNewHostname
      
      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: What Are You Watching Now

      Pretty funny if you have seen Avengers: Endgame

      Youtube Video

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: I am not able to install it got permissions error after provideing permission from command prompt the error is same.

      Those instructions doesn't include configuring SELinux.

      https://mangolassi.it/post/245962
      chcon -t httpd_sys_rw_content_t /var/www/html/helpdesk -R

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

      @RojoLoco said in What Are You Doing Right Now:

      Just found out that the mall in Stranger Things is Gwinnett Place, which is very near my house. That's why it looked familiar.

      That’s cool. Season three was entertaining.

      posted in Water Closet
      black3dynamiteB
      black3dynamite
    • RE: SSO via LDAP

      @wrx7m said in SSO via LDAP:

      @black3dynamite said in SSO via LDAP:

      @wrx7m said in SSO via LDAP:

      I am looking at doing this with another SSO provider; Okta is on the shortlist.

      We've been using Okta and its been great.

      Thanks for the mini review :grinning_face:

      0_1530039980961_what can i say except you're welcome.gif

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • 1 / 1