ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Romo
    3. Posts
    • Profile
    • Following 3
    • Followers 2
    • Topics 54
    • Posts 875
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Struggling to Understand Kernel and OS Separation

      @cnewman said in What is a Linux Distro:

      @stacksofplates said in What is a Linux Distro:

      @cnewman said in What is a Linux Distro:

      @scottalanmiller said in What is a Linux Distro:

      @cnewman said in What is a Linux Distro:

      Please show me my response to that and let's get back to the REAL subject you;re avoiding the Linux Kernel

      That's been covered thoroughly. We are waiting for you to figure out what you got wrong, contact the sources you have (that don't exist) and send us their responses. The ball is in your court. As I said, asking us to do anything further to contact your sources and correct them (or to show that they agreed) is the same as admitting you made it up.

      Awesome you have no balls, sorry about that, THE LINUX KERNEL MY MAN WHAT ABOUT THAT DUDE?

      He already asked you how you use the Kernel. But you never answered.

      Ignorant question, I said to tell at LEAST Linux.com they are stupid for saying it's an OS BUT YOU FAILED TO DO SO = NO BALLS

      This response is just...so....no can't describe it.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Struggling to Understand Kernel and OS Separation

      🍿 🍿 🍿 🍿 🍿 🍿

      posted in IT Discussion
      RomoR
      Romo
    • Stratoscale, any opinions about it?

      I have been researching a bit more about hyperconvergence and found them. I just wanted to hear the opinion of the community about their products. As I understand they have a similar product to what @scale have.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Struggling to Understand Kernel and OS Separation

      @scottalanmiller I really do not think he is a newbie.

      -First posts demanding you contact his 3 sources and make them change the definition
      -Calling you SAM instead of tagging @scottalanmiller

      My guess would be spiceworks fellow who doesnt quite like you.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Struggling to Understand Kernel and OS Separation

      We have a troll in the house!

      posted in IT Discussion
      RomoR
      Romo
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @hobbit666 You can use either way, they both accomplish the same thing that is downloading the newest source files.

      Step 1: Backup your database
      While logged in, go to Admin > Backups and generate a new backup. Download that file and keep it somewhere safe, in case you need to restore back to that version if something goes wrong with your upgrade.

      Step 2: Backup your old version
      The easiest way to do this will be to just rename your old Snipe-IT install directory and create a new, empty directory that uses the old directory name, but you can handle this any way that works for you.

      For example, if your Snipe-IT was installed in /var/www/snipe-it, you could rename that directory to /var/www/snipe-it-backup and then create a new directory /var/www/snipe-it.

      Step 3: Download/clone the new release
      Download the zip from: https://github.com/snipe/snipe-it/archive/master.zip
      or
      git clone https://github.com/snipe/snipe-it.git

      Step 4: Update dependencies
      Whenever you pull down a new version, you should update the dependencies via Composer and dump the autoloader.

      NOTE: Never run composer as a super-user or Administrator. Always run it as the user that owns the Snipe-IT files. Running composer as a super-user will break things in ways that will be difficult to debug later. Just don't do it.

      1st you'll need to install composer into the directory if you don't have it installed globally:

      cd <install-dir>
      curl -sS https://getcomposer.org/installer | php 
      

      Noq update dependencies and dump the auto-loader.

      php composer.phar install --no-dev --prefer-source
      php composer.phar dump-autoload
      

      Step 5: Copy over your configuration settings

      IMPORTANT:
      This step will only need to be done once, while upgrading to v3.0. Once you've upgraded to v3.0, you won't ever have to do this part again.

      Open up your .env file in your new Snipe-IT install directory, and update the configuration placeholders you see there with the values you were previously using in your individual config files.

      If you don't have a .env file, just copy the existing .env.example over to .env and use that:

      cp .env.example .env
      

      The files you'll be copying from are:

      • app/config/app.php
      • app/config/production/app.php
      • app/config/production/database.php
      • app/config/production/mail.php
      • app/config/production/session.php
      New .env Setting Old Config File Old Config File Key Notes
      APP_ENV N/A N/A Set to production
      APP_DEBUG /app/config/production/app.php debug
      APP_KEY /app/config/production/app.php key Make SURE you keep this app key the same from your old version.
      APP_URL /app/config/production/app.php url
      APP_TIMEZONE /app/config/app.php timezone
      APP_LOCALE /app/config/app.php locale
      DB_CONNECTION /app/config/production/database.php default This should be mysql
      DB_HOST /app/config/production/database.php connections-> mysql-> host
      DB_DATABASE /app/config/production/database.php connections-> mysql-> database
      DB_USERNAME /app/config/production/database.php connections-> mysql-> username
      DB_PASSWORD /app/config/production/database.php connections-> mysql-> password
      DB_PREFIX /app/config/production/database.php connections-> mysql-> prefix
      DB_DUMP_PATH N/A N/A Path to your dabase dump binary (such as mysqldump)e.g. '/usr/local/bin'
      MAIL_DRIVER /app/config/production/mail.php driver
      MAIL_HOST /app/config/production/mail.php host
      MAIL_PORT /app/config/production/mail.php port
      MAIL_USERNAME /app/config/production/mail.php username
      MAIL_PASSWORD /app/config/production/mail.php password
      MAIL_ENCRYPTION /app/config/production/mail.php encryption
      MAIL_FROM_ADDR /app/config/production/mail.php from->address
      MAIL_FROM_NAME /app/config/production/mail.php from->name
      IMAGE_LIB N/A N/A Should be set to gd or imagick, depending on which library you have on your server.
      SESSION_LIFETIME /app/config/production/session.php lifetime
      EXPIRE_ON_CLOSE /app/config/production/session.php expire_on_close
      ENCRYPT N/A N/A Should be set to true if you wish to encrypt your cookies.
      COOKIE_NAME /app/config/production/session.php cookie
      COOKIE_DOMAIN /app/config/production/session.php domain
      SECURE_COOKIES /app/config/production/session.php secure

      Everything else in your .env can be left alone, as they are more advanced settings that are not commonly used.

      Step 6: Move uploaded files and check permissions
      Since Laravel's file structure has changed, you're going to need to move a few files around to make sure your uploaded files (logo, uploaded asset files, asset model files, etc) are in their new location.

      cp ../snipe-it-backup/app/storage/dumps/* snipe-it/storage/app/backups/
      cp ../snipe-it-backup/app/private_uploads/* snipe-it/storage/private_uploads/
      cp ../snipe-it-backup/public/uploads/* snipe-it/public/uploads/
      

      Also confirm that your entire storage directory (and subdirectories) is writable by the web server.

      Step 7: Migrate the database
      Always run your database migrations on any upgrade, as this will make sure your database schema is up to date with what the new code expected.

      php artisan migrate
      

      Forgetting to run these commands can mean your DB might end up out of sync with the new files you just pulled, or you may have some funky cached autoloader values.

      It’s a good idea to get into the habit of running these every time you pull anything new down. If there are no database changes to migrate, it won't hurt anything to run migrations anyway, you’ll just see "Nothing to migrate".

      Step 8: Launch Snipe-IT in a browser
      You should be all set now, so just go to your old Snipe-IT URL and make sure everything is working.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @tiagom Taken from here https://snipe-it.readme.io/docs/how-to-upgrade:

      Upgrading
      Updating Snipe-IT should be pretty straightforward. Simply pull down the newest release, copy the files over, and run whatever commands the release notes specify. Your configuration won’t be overwritten, since the .env file isn't checked into version control.

      Always backup your database and configuration files before upgrading. We try very hard to make sure that all database changes are non-destructive, but you should always backup beforehand anyway. You will never regret backing up your database. You may regret not doing so, so it’s just better to get into the habit.

      Whenever you pull down a new version from master or develop, or when you grab the latest official release, make sure to run the following commands via command line:

      php composer.phar install --no-dev --prefer-source
      php composer.phar dump-autoload
      php artisan migrate
      php artisan config:clear
      php artisan config:cache
      (Developers should remove the --no-dev flag, so they have unit test frameworks and debugging tools.)

      Forgetting to run these commands can mean your DB might end up out of sync with the new files you just pulled, or you may have some funky cached autoloader values.

      It’s a good idea to get into the habit of running these every time you pull anything new down. If there are no database changes to migrate, it won't hurt anything to run migrations anyway, you’ll just see "Nothing to migrate".

      If you have any issues upgrading, check the Common Issues page for a fix. If you don’t see your issue listed there, open an issue on Github and we’ll try to get you sorted out. Be sure to provide the information outlined in the Getting Help section of this site so that we have the info we need to assist you.

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      Waiting in the ER, had to bring my wife. Doctors believe it is food poisoning.

      posted in Water Closet
      RomoR
      Romo
    • RE: Graylog Discovery

      @scottalanmiller said in Graylog Discovery:

      Or... learn to work in UTC like the rest of us 😉

      Or build your own Graylog server and it doesn't have this issue.

      Is there any specific reason for using UTC?

      posted in IT Discussion
      RomoR
      Romo
    • RE: Final Call ... XenServer Boot Media

      @FATeknollogee If you have bought support from Citrix it will be an issue, if you are the one providing the support as with any other linux install it will not.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @jfc Setup you CentOS 7 vm and only use their install script.

      wget https://raw.githubusercontent.com/snipe/snipe-it/master/install.sh
      chmod 744 install.sh
      ./install.sh
      

      It will download everything you need and get you to a working Snipe IT installation, I just setup my own Snipe IT vm like this =).

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      @scottalanmiller said in What Are You Doing Right Now:

      I'm actually at a point where MS Office works better on Ubuntu 16.04 than it does on Windows 10 Anniversary. Um, well okay.

      Office Web Apps?

      posted in Water Closet
      RomoR
      Romo
    • RE: If you are new drop in say hello and introduce yourself please!

      Welcom @scale_alex

      posted in Water Closet
      RomoR
      Romo
    • RE: Commands in-line with OC ?

      @BBigford said in Commands in-line with OC ?:

      @Romo said in Commands in-line with OC ?:

      @dafyre said in Commands in-line with OC ?:

      @scottalanmiller said in Commands in-line with OC ?:

      It's four spaces before for inline and three backticks on the line before and after a block. Both of these do code style formatting.

      Also, three ~ (tilde) in a row.

      testing ~~~
      

      They work indeed!

      If you use them at the beginning, in place of spaces, looks like it'll just blank out your reply...

      I believe that is because it expects the optional language identifier for syntax highlighting.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Commands in-line with OC ?

      @dafyre said in Commands in-line with OC ?:

      @scottalanmiller said in Commands in-line with OC ?:

      It's four spaces before for inline and three backticks on the line before and after a block. Both of these do code style formatting.

      Also, three ~ (tilde) in a row.

      testing ~~~
      

      They work indeed!

      posted in IT Discussion
      RomoR
      Romo
    • RE: SparkleShare Self hosted Dropbox alternative

      Really early impressions of SparkleShare:

      • It is based on git, I truly did not know git could be used with anything other than text files.
        alt text

      • The host setup is a script that installs a git server , since it is git you could acually use gitlab, github or bitbucket as your server host.
        alt text

      • Windows client listed on the webpage (1.4) is not the newest version available even though it is the only version listed. Version 1.5
        alt text

      • Client tracks files added and deleted, as well as versions of certain file types.
        alt text

      • Versions of a docx file and ability to recover
        alt text
        **Edit ( For some strange reason, the time of the versions of the files is not actually my current time. Screen captures where taken at around 19:00 and file versions show 17:50)

      Tomorrow I'll setup another client to test the syncing process between clients 😃

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      Testing SparkleShare

      posted in Water Closet
      RomoR
      Romo
    • RE: Installing NextCloud With NGINX

      If you are talking of the default server root for nginx, it is actually located in /usr/share/nginx/html .

      You can modify the location by editing the nginx global config file found in /etc/nginx/nginx.conf

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @Sparkum Finally got a windows vm setup and got the agent working.

      alt text

      This are the steps I took to get it working:

      Download windows pre-compiled agent:
      http://www.zabbix.com/downloads/3.0.0/zabbix_agents_3.0.0.win.zip

      From an elevated cmd promt
      I went inside the extracted folders to install the zabbix agent as a service:
      zabbix_agents_3.0.0.win\bin\win64\

      Executed the following command to install the service and point to the config file:
      zabbix_agent_d.exe --config "..\..\conf\zabbix_agentd.win.conf" --install

      Now we need to edit the config file to point to our zabbix server:
      zabbix_agents_3.0.0.win\conf\zabbix_agentd.win.conf

      Modify the following options:

      Server=Zabbix Server IP Address
      ServerActive=Zabbix Server IP Address
      Hostname= FQDN of windows host
      

      Went back to the bin folder and started the service:
      ..\zabbix_agents_3.0.0.win\bin\win64\zabbix_agent_d.exe --start

      Allow the zabbix_agentd.exe executable throught the windows firewall.

      Add the host to the Zabbix Server
      alt text

      In new host settings add:

      # HOST TAB 
      Host name = FQDN of your windows host
      Groups = Use a preset group or create a new one
      Agent Interfaces = IP address of Windows Host
      Enabled =  Checked.
      
      #Templates Tab
      Link new templates = Template OS Windows
      

      Save your newly created host and wait for a couple of minutes to get it talking to your server
      alt text

      Its done and reporting =).
      alt text

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @Sparkum yes post your windows agent config.

      posted in IT Discussion
      RomoR
      Romo
    • 1 / 1