Menu
  • Home
  • Development
  • Computer Services
    • Wired/Wireless Networking
    • Smartphone/Tablet Repair
    • Website Design and Web/Email Hosting
  • Internet Providers
  • Television Providers
  • LINKS
    • STORE
    • Blog
    • Contact Us

Category: Technical

Removing Duplicate E-mail Messages From A Mailbox

November 24, 2020
| No Comments
| Linux, SysAdmin, Technical

Occasionally your mail delivery scheme might hiccup, leaving you with duplicate copies of email messages sitting in your mailboxes. I find this happens occasionally if something goes wrong with fetchmail – you kill the fetchmail process before it has expunged the deleted email from the remote POP3 server, so the next time you run fetchmail it downloads […]

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

ssh directory and the authorized_keys file the first time.

October 26, 2020
| No Comments
| Linux, SysAdmin, Technical

Create the .ssh directory: mkdir ~/.ssh. Set the right permissions: chmod 700 ~/.ssh. Create the authorized_keys file: touch ~/.ssh/authorized_keys. Set the right permissions: chmod 600 ~/.ssh/authorized_keys. cat <your_public_key_file> >> ~/.ssh/authorized_keys

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Affiliate Deals

July 20, 2020
| No Comments
| Crypto, DIY, Electronics, Linux, OpSec, Security, SysAdmin, Technical, Uncategorized, Whatcom Scanner

Read More »

Posted in <a href="https://interbiznw.com/category/crypto/" rel="category tag">Crypto</a>, <a href="https://interbiznw.com/category/diy/" rel="category tag">DIY</a>, <a href="https://interbiznw.com/category/electronics/" rel="category tag">Electronics</a>, <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/opsec/" rel="category tag">OpSec</a>, <a href="https://interbiznw.com/category/security/" rel="category tag">Security</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a>, <a href="https://interbiznw.com/category/uncategorized/" rel="category tag">Uncategorized</a>, <a href="https://interbiznw.com/category/whatcom-county-scanner/" rel="category tag">Whatcom Scanner</a> Leave a comment

Fujitsu ScanSnap ix1500 not staying connected

March 22, 2020
| No Comments
| Electronics, SysAdmin, Technical

Fujitsu ix1500 does not stay connected to Windows 10 Computers. So far the only thing that seems to work to get them to re-connect is a reboot, not exactly a great solution in most of my user’s cases. Have tried all known troubleshooting, even some pretty far out there stuff. OK, so the issue was… […]

Read More »

Posted in <a href="https://interbiznw.com/category/electronics/" rel="category tag">Electronics</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

How to run xmrig-proxy as a service

March 7, 2020
| No Comments
| Crypto, Linux, SysAdmin, Technical

Create a systemd service unit for it. See the examples on the man page. The simplest example shows how easy it can be to create a service unit: Store this unit under /etc/systemd/system/xmrigproxy.service, then reload systemd to read this unit file with: $ sudo systemctl daemon-reload Start the service with: $ sudo systemctl start xmrigproxy.service And enable it […]

Read More »

Posted in <a href="https://interbiznw.com/category/crypto/" rel="category tag">Crypto</a>, <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

How to use a YubiKey for Two-Factor Secure Shell Authentication

November 25, 2019
| No Comments
| Linux, SysAdmin, Technical

What is Yubikey? YubiKeys are small USB dongles that you can plug into your computer. They can simulate keyboard input, allowing you to enter One Time Passwords (OTPs) with the press of a button to authenticate with services like Google, Dropbox and GitHub. YubiKeys can also be used when logging into a remote server. This guide […]

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Document Moved Error after Upgrade to OpenCart 3.x.x.x

October 29, 2019
| No Comments
| Linux, SysAdmin, Technical

If you have upgraded to OpenCart 3.x.x.x recently and are noticing a “Document Moved” Error when accessing extensions in your OpenCart Admin Panel It is due to a misconfigured line in your config.php file that resides inside your admin folder. (public_html/admin/config.php). You will find a line that says: The line actually needs to read like […]

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Emails not sending after upgrade to OpenCart 3.x.x.x

October 29, 2019
| No Comments
| Linux, SysAdmin, Technical

The issue is – OpenCart does not send emails after order checkout or account registration. I don’t mean that the server is failing to send the mail (I’m running my own email server and there is no trace of any email being sent in the logs), but that the OpenCart installation doesn’t even get to […]

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Opencart upgrade error `Could not load template adaptor`

October 29, 2019
| No Comments
| Linux, SysAdmin, Technical

Upgrading one of my stores I encountered the following error: Below is what can be done to fix this: The issue is the template adapters are set by system/config/catalog.php // Template$_[‘template_engine’] = ‘twig’; Way to resolve it is, clear your modification directory! (system/storage/modification) Make sure you leave index.html but clear everything else out of that […]

Read More »

Posted in <a href="https://interbiznw.com/category/linux/" rel="category tag">Linux</a>, <a href="https://interbiznw.com/category/sysadmin/" rel="category tag">SysAdmin</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Sonoff adapter programming module

October 29, 2019
| No Comments
| DIY, Electronics, Technical

We made it a little easier for you to program your sonoff adapter with custom firmware. Kit comes with adapter board shown and FTDI Mini USB to TTL Serial Converter Shop now

Read More »

Posted in <a href="https://interbiznw.com/category/diy/" rel="category tag">DIY</a>, <a href="https://interbiznw.com/category/electronics/" rel="category tag">Electronics</a>, <a href="https://interbiznw.com/category/technical/" rel="category tag">Technical</a> Leave a comment

Posts navigation

1 2 Next

Links

  • Contact Us
  • Blog
  • STORE

Recent Posts

  • Removing Duplicate E-mail Messages From A Mailbox
  • ssh directory and the authorized_keys file the first time.
  • Affiliate Deals
  • Whatcom County, WA Scanner Info
  • Fujitsu ScanSnap ix1500 not staying connected

Archives

  • November 2020
  • October 2020
  • July 2020
  • June 2020
  • March 2020
  • November 2019
  • October 2019
  • July 2017
  • October 2016

Categories

  • Crypto
  • DIY
  • Electronics
  • Linux
  • OpSec
  • Security
  • SysAdmin
  • Technical
  • Uncategorized
  • Whatcom Scanner

© 2021. Interbiznw.com - (360) 389-3776 - Powered by: Go360host.com
Donate: BTC:    3JfLcg4gKQApNPH3i8uJZ6KyqrFdQrUMig   ETH:    0xe5D923caB105CbbDE1fFC421F635ff8E986C8231  BTCP:    b19RcWUqTE77EXBu87DT4taFQmKnzSischg

Donate QUICK & Easy with Crypto