ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. linux
    Log in to post
    • All categories
    • OksanaO

      How to ensure maximum RDMA network performance? Watch StarWind video

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind rdma windows linux
      1
      1 Votes
      1 Posts
      294 Views
      No one has replied
    • scottalanmillerS

      Installing Zabbix 4 Agent on Fedora 29 Linux

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion fedora fedora 29 zabbix zabbix 4.0 linux
      3
      1 Votes
      3 Posts
      2k Views
      black3dynamiteB

      @black3dynamite said in Installing Zabbix 4 Agent on Fedora 29 Linux:

      Fedora 30 repo provides version 4.0.5
      http://repo.ialab.dsu.edu/fedora/linux/development/30/Everything/x86_64/os/Packages/z/zabbix-agent-4.0.5-1.fc30.x86_64.rpm

      I'll wait for when Fedora 30 is released.

    • wrx7mW

      Resolved - Postfix on Fedora 29 - Why Can't I Send Mail?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion postfix fedora 29 mail server dnf-automatic vultr email smtp fedora linux
      27
      1 Votes
      27 Posts
      3k Views
      wrx7mW

      @JaredBusch said in Resolved - Postfix on Fedora 29 - Why Can't I Send Mail?:

      @wrx7m said in Resolved - Postfix on Fedora 29 - Why Can't I Send Mail?:

      It applied to the instance (multiple servers)

      FFS no. That is not what anything is.

      It applied to the Account. Which contains multiple instances.
      Instances that could be servers or desktops or WTF ever.

      My apologies. I meant to put account.

    • scottalanmillerS

      Network File System: NFS

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion nfs storage file system network file system linux unix sun ietf
      1
      1 Votes
      1 Posts
      803 Views
      No one has replied
    • scottalanmillerS

      Installing osTicket 1.11 on Fedora 29

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion osticket osticket 1.11 linux fedora fedora 29 helpdesk ticket ticketing
      18
      2 Votes
      18 Posts
      2k Views
      JaredBuschJ

      OSTicket is not a solution I can use, because I need time tracking also.

      I never saw a plugin for that for OSTicket.

    • scottalanmillerS

      Setting Up a Standard MySQL or MariaDB Database for an Application

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion database mysql mariadb rdbms how to dba system administration fedora linux centos 7 rhel 7 ubuntu centos
      5
      3 Votes
      5 Posts
      2k Views
      JaredBuschJ

      @black3dynamite said in Setting Up a Standard MySQL or MariaDB Database for an Application:

      @JaredBusch said in Setting Up a Standard MySQL or MariaDB Database for an Application:

      I like my approach to setting this up.

      Obviously, install MySQL/MariaDB first as noted above.

      Then do the following. This all needs done in the same SSH session, but otherwise things are simple.

      Choose once of these exports for your DB root password.

      The first one is for you to specify, the second generates a random one and echo's it back to you.

      # Specify your own password for MariaDB root user export DB_ROOT_PASS="somebigpasswordgoeshere" # Generate a random password for MariaDB root user export DB_ROOT_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30)" echo "This is your MariaDB root password: $DB_ROOT_PASS" Specify the application database name and application user name # Database user to use for application export DB_USER='yourusername' # Database name to use for application export DB_NAME='yourdatabasename' Generate or specify a random password for the database user # Specify your own password for the application's database user export DB_PASS="somebigpasswordgoeshere" # Generate a random password for the application's database user export DB_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30)" echo "This is your password for the application user: $DB_PASS" Then create the application database, use, and grant access. mysql -e "CREATE DATABASE $DB_NAME;" mysql -e "CREATE USER '$DB_USER'@'localhost' IDENTIFIED BY '$DB_PASS';" mysql -e "GRANT ALL ON $DB_NAME.* TO '$DB_USER'@'localhost';" mysql -e "FLUSH PRIVILEGES;" Finally, lock down the system without the interactive requirement of mysql_secure_installation # Secure MariaDB (this does what mysql_secure_installation performs without interaction) mysql -e "UPDATE mysql.user SET Password=PASSWORD('$DB_ROOT_PASS') WHERE User='root';" mysql -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');" mysql -e "DELETE FROM mysql.user WHERE User='';" # Beginning on some version of MariaDB after Fedora 29 was released, the test DB is no longer there by defualt. mysql -e "DROP DATABASE test;" mysql -e "FLUSH PRIVILEGES;"

      Your approach makes it easier to use as part of a script.

      It also generates random passwords, which I prefer.

    • brandon220B

      Nginx VM

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion nginx linux
      78
      1 Votes
      78 Posts
      6k Views
      1

      I'd normally keep swap space too but I know for sure you can run without it successfully because we used to do that with embedded linux for years - with devices that had years of uptime.

      With memory ballooning you can overcommit RAM and the hypervisor can swap guest RAM to disk if it comes to that. I don't know which hypervisors supports it though. As always it depends on how much you want to cram out of your gear.

    • scottalanmillerS

      EFI Pace Won't Start After Vault Configuration Change

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion efi efi pace debian linux
      7
      2 Votes
      7 Posts
      334 Views
      travisdh1T

      @scottalanmiller said in EFI Pace Won't Start After Vault Configuration Change:

      Had to deal with Fiery too.

      I think they misspelled that name slightly. Fire that company (I know, you wish they would.)

    • OksanaO

      StarWind Free Webinar: Ensuring maximum RDMA network performance

      Watching Ignoring Scheduled Pinned Locked Moved News starwind rdma windows linux
      1
      1 Votes
      1 Posts
      339 Views
      No one has replied
    • PhlipElderP

      A Good Step-by-Step for Setting Up a Pi-hole

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux pi-hole
      1
      1 Votes
      1 Posts
      187 Views
      No one has replied
    • hobbit666H

      How do you choose what Linux Distro to use for a project?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux virtualization distro
      15
      1 Votes
      15 Posts
      1k Views
      pmonchoP

      @Obsolesce said in How do you choose what Linux Distro to use for a project?:

      @JaredBusch said in How do you choose what Linux Distro to use for a project?:

      @Obsolesce said in How do you choose what Linux Distro to use for a project?:

      @DustinB3403 said in How do you choose what Linux Distro to use for a project?:

      @JaredBusch said in How do you choose what Linux Distro to use for a project?:

      @DustinB3403 said in How do you choose what Linux Distro to use for a project?:

      @JaredBusch said in How do you choose what Linux Distro to use for a project?:

      No, that is not valid. WTF is even “mainstream”?

      main·stream /ˈmānˌstrēm/ noun

      I know how it is defined. But how are you claiming which ones are mainstream. Because there is only subjective evidence to support any of your wild ass bullshit claim.

      Mint is Mainstream to many. It is old and nasty and not something I would ever use.

      Ubuntu is a steaming pile of shit that only has popularity among "developers" because it was "popular" as a desktop OS.

      Okay ass.

      You know what my intention is and was when using the term Mainstream.

      So get off your horse and onto the dildo, cause you need to sit and spin for a while.

      Completely unwarranted reply from you, because the use and intention of "mainstream" is useless no matter how you try to swing it... HOWEVER, I LMAO so hard at this.

      Maybe if it is studded? For that extra oomph?

      Definitely studded. Only way to go.

      Mangolassi.it - Always go for a flaming laugh!🙂

    • JaredBuschJ

      Installing MS SQL Server Express on CentOS

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion linux centos centos 7 rhel database ms sql server ms sql server 2017 linux ms sql server 2017 guide how to
      13
      5 Votes
      13 Posts
      6k Views
      JaredBuschJ

      @Emad-R said in Installing MS SQL Server Express on CentOS:

      Et me guess it is much faster on Linux than on Windows server

      No idea, but it is one less Windows Server license needed.

      Also MS SQL Server Express works well for many tasks.

    • hobbit666H

      How to Install Desktop Environment to a Fedora Server

      Watching Ignoring Scheduled Pinned Locked Moved Water Closet linux fedora kvm fedora 29 kde lxqt mate xfce
      29
      0 Votes
      29 Posts
      3k Views
      1

      @DustinB3403 said in How to Install Desktop Environment to a Fedora Server:

      @Pete-S I was the person to mention creating a desktop environment on the system to use as the management domain, and run virt-manager there. And I've repeated it numerous times, across several topics.

      As for using virsh, that is an option too.

      Sorry, I didn't follow the other previous thread(s).

    • V

      MeshCentral Performance Testing

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion meshcentral meshcentral 2 webrtc linux
      11
      2 Votes
      11 Posts
      1k Views
      scottalanmillerS

      @vpr00 said in MeshCentral Performance Testing:

      Sometimes after i press connect, half of the image loads and it wont load any further. I have to press disconnect and connect again until it works. Have you experienced the same? It only happens with WebRTC though.

      Yes, we do see that from time to time.

    • hobbit666H

      KVM Desktop Setup Ideas

      Watching Ignoring Scheduled Pinned Locked Moved Water Closet fedora kvm virtualization hypervisor linux
      182
      3 Votes
      182 Posts
      30k Views
      hobbit666H

      So following on from the Other thread.

      Looks like i'm heading to the Install KVM, setup a Linux VM and use that to manage the KVM server from that.

    • gjacobseG

      Running Xrdp on Ubuntu

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion xrdp ubuntu ubuntu 18.04 rdp linux
      22
      1 Votes
      22 Posts
      2k Views
      gjacobseG

      @dafyre said in Running Xrdp on Ubuntu:

      Not sure what to do about the EFI issue....

      What I do when I want to use mine like that is set up x11vnc-server and then run it through XRDP (and choose the console option). It's faster than stock VNC... Don't ask me why, lol. I haven't gotten instructions for that yet, I don't think.

      If I remember right, after a reboot, you have to connect, close the connection, and then reconnect back using the XRDP+VNC option. I don't have any installation instructions for that setup on hand though. I can work it out and post them if you like.

      This is likely where I went 'rouge' in that I didn't use x11vnc-server.. I had notes on that,.. at least I believe and have misplaced them. so I had forget that.

      As I was starting to have other 'OS' Kernel issues (the mouse and keyboard wasn't working correctly) I nuked that partition from Windows, and will rebuild. Maybe it'll survive as I am of course getting grub 'errors' since that partition is gone.

    • DustinB3403D

      Linux RDS/VDI Systems

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion rds vdi linux windows microsoft
      15
      1 Votes
      15 Posts
      1k Views
      scottalanmillerS

      Too bad it is KVM only right now. Not that KVM is bad, it's just early. The have LXC coming "soon" and that will be really awesome. I want VDI on LXC so that we can do it faster and on top of Scale HC3.

    • gjacobseG

      Dual Boot: Unable to access Windows NTFS Filesystem from Ubuntu 18.04

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion ubuntu 18.04 ubuntu linux ntfs
      31
      0 Votes
      31 Posts
      3k Views
      gjacobseG

      @JaredBusch said in Dual Boot: Unable to access Windows NTFS Filesystem from Ubuntu 18.04:

      @Dashrender said in Dual Boot: Unable to access Windows NTFS Filesystem from Ubuntu 18.04:

      @gjacobse said in Dual Boot: Unable to access Windows NTFS Filesystem from Ubuntu 18.04:

      Windows DUMBASS-ory..

      Talking to my brother, he mentioned some 'issues' with Windows not releasing the lock on the partition. He suggested and this is the really dumb part on windows.

      To boot Windows and RESTART normally.

      Since grub starts Ubuntu by default, it booted normally into Ubuntu.

      I did the lsblk -f as before, only this time for /dev/sda4 - there is a UID for it. AND it shows as NTFS..

      so,.. FFS Windows,.. FYS. now,.. to see how to prevent this stupidness in the future.

      This why someone suggested that you go into Windows and do a full shutdown with shift shutdown.... normal shutdowns now aren’t full shut downs to allow the system to boot faster.

      But he did that and it made no difference

      Yup - a FULL shutdown didn't do anything more that the SHIFT shutdown.

    • scottalanmillerS

      Zimbra Services Fail to Start; Removing Stale PIDs

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion zimbra zimbra 8 centos centos 7 linux mta email
      9
      0 Votes
      9 Posts
      2k Views
      dbeatoD

      @scottalanmiller said in Zimbra Services Fail to Start; Removing Stale PIDs:

      @dbeato said in Zimbra Services Fail to Start; Removing Stale PIDs:

      @dbeato said in Zimbra Services Fail to Start; Removing Stale PIDs:

      @scottalanmiller said in Zimbra Services Fail to Start; Removing Stale PIDs:

      @dbeato said in Zimbra Services Fail to Start; Removing Stale PIDs:

      I have only had this happened on the upgrades between versions and OS upgrade.

      This happened to us while simply up and running. Middle of the day. Very odd.

      Weird

      What version?

      8.8.10_GA_3716

      Hmmm I just upgraded from 8.8.9 to 8.8.11 last week or two weeks ago.

    • 1
    • 2
    • 9
    • 10
    • 11
    • 12
    • 13
    • 75
    • 76
    • 11 / 76