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: Ubuntu Updates to 19.10

      @Emad-R said in Ubuntu Updates to 19.10:

      Phoronix made benchmark and Debian was much better than it, it just came bloated and bloated.

      If I wanted to use Debian for Desktops or Laptops I started to use their unofficial images (non-free) that includes proprietary firmware to make a better out of the box experience.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Ubuntu Updates to 19.10

      @Emad-R It's all great having numbers and visual aid to show results but will you really notice the difference when using Ubuntu compare Debian, assuming you are using the same desktop environment?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • Learning Python from Microsoft

      For anyone interested in learning Python, Microsoft is provided some awesome free resources.

      Python for Beginners
      https://channel9.msdn.com/Series/Intro-to-Python-Development

      Introduction to Python
      https://docs.microsoft.com/en-us/learn/modules/intro-to-python

      Sample code for Channel 9 Python for Beginners course
      https://github.com/microsoft/c9-python-getting-started

      posted in IT Discussion microsoft python
      black3dynamiteB
      black3dynamite
    • RE: Installing Windows 10 without a Microcoft account

      @WrCombs said in Installing Windows 10 without a Microcoft account:

      so, Doing a fresh install of Windows 10 Home ; And it does not give me an option to create without a Microsoft account.

      Disconnect from the Internet and then go back a step and try again.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Installing Windows 10 without a Microcoft account

      @WrCombs said in Installing Windows 10 without a Microcoft account:

      @black3dynamite said in Installing Windows 10 without a Microcoft account:

      @WrCombs said in Installing Windows 10 without a Microcoft account:

      so, Doing a fresh install of Windows 10 Home ; And it does not give me an option to create without a Microsoft account.

      Disconnect from the Internet and then go back a step and try again.

      Will no allow me to go back and disconnect from Internet.. I'm using work Wifi So I can't take it down ..

      You don't have a button the keyboard? Try shift+f10 and ipconfig /release

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Installing Windows 10 without a Microcoft account

      @JaredBusch said in Installing Windows 10 without a Microcoft account:

      @WrCombs said in Installing Windows 10 without a Microcoft account:

      @Dashrender said in Installing Windows 10 without a Microcoft account:

      Clicking this doesn't give you any way to make a local account?

      0ff7464e-408f-4a81-916d-2de10394b5fb-image.png

      nope.
      Shows set up to create microsoft account.

      Check the bottom left corner on that screen

      0c588831-40e0-4a3b-98d4-727e9cddf889-image.png

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: HFSPlus Read Write access on Fedora

      Already tried this?
      Both links is from a Ubuntu instead of Fedora.
      https://superuser.com/a/84447 or https://superuser.com/a/365270

      I know if an NTFS system was not properly shutdown, you end up only able to mount as read-only.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • ...It just wasn't designed with mouse in mind

      I keep noticing that statement around a lot in response to certain desktop environment layouts. My first time noticing it was with Windows 8, GNOME3 and maybe Unity back in the days.

      With Windows 8, I understand the annoyances with not having a start menu button. But the one thing Windows 8 did for me was forcing me to start using keyboard shortcuts and to search for what I'm looking for. And I still put that in practice even with today's desktop environments. But that's not always the case for other users, so I understand that.

      So I'm curious about what your opinion when you see or hear someone say that the desktop environment just wasn't designed with mouse in mind?

      Is it an inconvenience using a mouse on certain desktops?
      Is it because you have to click more than you want to in order to find what you are looking for?
      Is it because the spacing is inefficient, like having to move the mouse across the screen to access certain items?

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Comparing MeshCentral 2 to ScreenConnect

      There's a new option when you click on the Actions button to uninstall Agent. I'm on 0.4.3-f. Its not available using the Group Action button.

      Edit: I'm on 0.4.3-o and it's available from Group Action button.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Windows Offline files

      @wrx7m said in Windows Offline files:

      @dbeato said in Windows Offline files:

      I disable Windows Offline Files for that reason, it is a pain to deal with and causes more problems than anything else. But yeah, even if it was locked out and the computer went to sleep it will mark it as offline since the computer detected a change on the network connectivity.

      ^^This. I have been disabling offline files for 15+ years. It never works the way people expect. #chasingghosts

      It’s been about two years for me too since moving away from Windows Offline Files to Nextcloud/OneDrive.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Remove-Item cannot remove crap in Documents folder

      I'm still trying to figure out how to automate the remover of those hidden items, so I've been renaming the root folders and setting the attributes to hidden and system.

      Rename-Item "$UserProfile\$Folder" "$UserProfile\$FolderOld" -Force
      $(Get-Item $UserProfile\$FolderOld).Attributes = "Hidden","System"
      
      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Remove-Item cannot remove crap in Documents folder

      @JaredBusch said in Remove-Item cannot remove crap in Documents folder:

      @black3dynamite said in Remove-Item cannot remove crap in Documents folder:

      I'm still trying to figure out how to automate the remover of those hidden items, so I've been renaming the root folders and setting the attributes to hidden and system.

      Rename-Item "$UserProfile\$Folder" "$UserProfile\$FolderOld" -Force
      $(Get-Item $UserProfile\$FolderOld).Attributes = "Hidden","System"
      

      Windows lets you do that? As the user?

      Do you then create a new empty documents folder? Or are you creating a symlink or something like I am doing?

      For new users, I do something like this.

      $_oUserProfile = $env:USERPROFILE
      
      Move-Item "$_oUserProfile\Documents" "$_oUserProfile\Nextcloud\Documents" -Force
      
      # Rename-Item and Hide the folder if Move-Item doesn't move the Folder
      Rename-Item "$_oUserProfile\Documents" "$_oUserProfile\Documents_Old"
      $(Get-Item "$_oUserProfile\Documents_Old").Attributes = "Hidden","System"
      
      # Then I create the link
      New-Item -ItemType Junction -Path "$_oUserProfile\Documents" -Value "$_oUserProfile\Nextcloud\Documents"
      
      

      If this was a previous nextcloud user, I skip the Move-Item and just rename the folder and hide it. Then create the link.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Unable to get redis cache running on debian 10 based Nextcloud instance

      Here's what I found on https://www.c-rieger.de/nextcloud-installation-guide-debian-9-10/#c04
      Redis configuration

      sed -i "s/port 6379/port 0/" /etc/redis/redis.conf
      sed -i s/\#\ unixsocket/\unixsocket/g /etc/redis/redis.conf
      sed -i "s/unixsocketperm 700/unixsocketperm 770/" /etc/redis/redis.conf
      sed -i "s/# maxclients 10000/maxclients 512/" /etc/redis/redis.conf
      usermod -aG redis www-data
      

      Nextcloud configuration for Redis

      'redis' => 
      array (
      'host' => '/var/run/redis/redis-server.sock',
      # ATTENTION if you operate on Debian 9.x:
      # 'host' => '/var/run/redis/redis.sock',
      'port' => 0,
      'timeout' => 0.0,
      ),
      
      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Updating plex on Fedora

      Got the script part done. Just need to create schedule for it.
      https://gitlab.com/black3dynamite/scripts/blob/master/Plex/Upgrade-Plex.sh

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Updating plex on Fedora

      @JaredBusch said in Updating plex on Fedora:

      @black3dynamite I don't like the clear. I hate shit that nukes my scroll history. Obviously as something meant to be automated, that should not even matter.

      Just a personal preference.

      So many trial by error creating the script, I added the clear command just for convenience.

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: It's been a while...

      @scottalanmiller said in It's been a while...:

      @JaredBusch said in It's been a while...:

      I have always assumed that means there are some, likely, fringe issues that are just common enough that they don't want to mark it stable yet for the upgrades.

      We moved to Beta to get the "current" releases. I can't follow what is supposed to be current or beta anymore, because beta only seems to get what has been publicly announced as released and released seems to never get it.

      Upgrading manually is an option. Especially if your data folder is located outside the nextcloud folder.
      https://docs.nextcloud.com/server/17/admin_manual/maintenance/manual_upgrade.html

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: FreePBX 15 released

      @JaredBusch said in FreePBX 15 released:

      Sangoma Vega 100 (I think) PRI gateway. PRI from phone company on one side and sip trunk on the other, hook it up to whatever PBX you want to.

      https://www.voipsupply.com/sangoma-vega-100g

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Favorite (preferably free) terminal.

      I use tmux (https://github.com/tmux/tmux/wiki) and Tilix (https://gnunn1.github.io/tilix-web/).

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Favorite (preferably free) terminal.

      @IRJ said in Favorite (preferably free) terminal.:

      Terminator

      @popester
      Just make sure to search Terminator Terminal. lol
      maxresdefault.jpg

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • RE: Converting VMware VMs to KVM

      Use virt-v2v.
      http://www.libguestfs.org/virt-v2v.1.html

      posted in IT Discussion
      black3dynamiteB
      black3dynamite
    • 1
    • 2
    • 81
    • 82
    • 83
    • 84
    • 85
    • 88
    • 89
    • 83 / 89