26 Search results

For the term "disable services".

Linux Services | View All | Stopping and Starting

How To see all services available, type in terminal; sudo service –status-all How To see all services running and ports, type in terminal; sudo netstat -plunt How To remove a service from startup at boot sudo update-rc.d -f [service] remove How To enable a service to run on boot sudo update-rc.d [service] defaults

Mariadb Disable Auto Start on Desktop

How to prevent MariaDB from automatically starting up on a desktop is not the same as prior Mysql versions. Instead of using the remove from rc method, you use systemd (systemctl). But there is nothing in the documentation about that. sudo systemctl disable mysqld Found here: https://ask.fedoraproject.org/en/question/109435/how-to-avoid-start-mysql-services-at-system-boot/ For some reason the MariaDB documentation thinks its a good idea to have...

Magento Backend Blank Screen

Seems there are a lot of reasons you run into this distressing problem with Magento. So no one thing is certain to solve everyone’s problem. So here is a triag/list of things to do until the problem is solved. REMEMBER TO RESTART APACHE AFTER EACH CHANGE sudo service apache2 restart Uncomment to enable Error Reporting in Magento’s index.php and at...

Stop the Kernel Logging ipv6

To disable IPv6 on all interfaces system wide sudo vi /etc/sysctl.conf add this line net.ipv6.conf.all.disable_ipv6 = 1 Or To disable IPv6 on an interface only net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv6.conf.eth0.disable_ipv6 = 1 sudo sysctl -p /etc/sysctl.conf or reboot

Search Engine Submission

Do It Yourself Search Engine Submission is a tedious task – if you are going to do it the right way. There are lots of services offering to submit your website to search engines for free or for a fee. Either way, I wouldn’t. Here’s why:

Disable IPV6 on Debian 10

Three (3) steps to completely eliminate IPV6 on your system. Step 3 applies only if you are using SSH in daemon mode (on a server). The following should work for all Debian. Step 1 Step 2 Step 3

Debian Environment Variables

And then I lived happily ever after – Fixed – BASH scripts executed from a user as sudo, resulted in the root ownership. In other words, a backup script executed by user became the property of root

what is s.ytimg.com

YouTubeIMaGe – s.ytimg.com means YouTube image https://support.mozilla.org/en-US/questions/953550 This is a tracker that you can change as follows https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences If you place YouTube videos on you website, you may not want to place them on your Home Page for speed considerations, as this tracker tends to be the slowest component. Check that here http://tools.pingdom.com/fpt/ Pingdom website Speed Test Personally hate Adobe...

Magento Fixes

Clear Magento Cache If something breaks, this is the best place to start. Often the reason Magento crashes is due to someone doing something stupid. Stupid in Magento translates to “enabling or disabling extensions without first disabling the compiler”. sudo /shell php -f compiler.php clear sudo /shell php -f compiler.php disable sudo rm -Rf /var/www/magento/var/cache/* sudo rm -Rf /var/www/magento/var/session/* Clear...

After Installing Debian 7 Desktop

Checklist of things to do after installing Debian Gnome The first problem you have with a brand new linux (Debian/Ubuntu) install is the user is not setup in sudoers. So first thing: login as root su sudo adduser username sudo sudo vi /etc/sudoers give permissions to your new user – below root username ALL=(ALL:ALL) ALL alternately – unsecure username ALL=(ALL)...