Optimize an SQLite database file
article #914, updated 3232 days ago

Just make sure that no processes are using the file, make a backup of it for safekeeping, and then:

sqlite3 *.db "VACUUM;"

Compare sizes and you’ll see how much you have done!

Very useful to optimize database tables in MyBB with SQLite, among many other purposes :-)

Categories:      

==============

Advanced IP Scanner works very well
article #911, updated 3236 days ago

For detecting devices on your LAN:

http://www.advanced-ip-scanner.com/

Categories:      

==============

Exchange address book, calendar, and email for Thunderbird - Bridge Exchange to IMAP
article #398, updated 3237 days ago

Try DavMail:

http://davmail.sourceforge.net

It runs in the background on server, desktop, or laptop (Windows, Linux, or Mac), and it translates native Exchange protocols into that which Thunderbird and appropriate add-ins handle very well. In other words, it acts as a live bridge between Exchange protocols and Thunderbird with Lightning, for contacts and calendar. The instructions are thorough and functional.

Categories:      

==============

Session "WBCommandletInBuiltTracing" failed to start with the following error: 0xC0000035
article #909, updated 3242 days ago

This is an error common on SBS 2011. A simple fix which sometimes works, on the bottom of this page:

http://blog.mpecsinc.ca/2010/12/sbs-2011-error-wbcommandletinbuilttraci.html

The summary:

DEL C:\Windows\Logs\WindowsServerBackup\WBC*

Categories:      

==============

QuickBooks database service won't start
article #908, updated 3243 days ago

You may see error “-6175, 0”; connectivity or security errors may pop up; but definitively you will notice that the “Quickbooks database service” will not start.

The solution given by a QuickBooks tech just now, is to change the user under which the database service runs, from the special QuickBooksDBxx service user, to the Local System. I asked if there was any reason not to do this under any circumstances, and he said there is not. This seems to make QuickBooks as a whole run better. It is needful to give “SYSTEM” full rights to any folder containing QuickBooks files.

Categories:      

==============

New wifi analyzer for Windows
article #906, updated 3249 days ago

This one works very well:

https://www.acrylicwifi.com/en/acrylic-wifi-free/

Categories:      

==============

Bypass firewall checking for Skype for Business data paths
article #905, updated 3249 days ago

Here are FQDN bypasses for Skype for Business. Needed ports are TCP 443, UDP 3478, TCP/UDP 50,000-59,999, TCP 5223, and TCP 80.

*.lync.com
crl.microsoft.com 
evsecure-ocsp.verisign.com
evsecure-aia.verisign.com
evsecure-crl.verisign.com
sa.symcb.com
sd.symcb.com
*.omniroot.com
*.verisign.com
*.symcb.com
*.symcd.com
*.verisign.net
*.geotrust.com
*.entrust.net
*.public-trust.com

The above is condensed from here.

Categories:      

==============

Bypass firewall checking for Exchange Online data paths
article #899, updated 3249 days ago

If your firewall lets you bypass data checks by FQDN, this works well; just import this into an alias and use that as the “To” for a rule called ExchangeOnline, for ports 80 and 443:

*.office.com
*.office365.com
*.office.net
*.onmicrosoft.com
*.microsoftonline.com
*.microsoft.com
*.live.com
*.windows.net
*.microsoftonline-p.com
*.microsoftonline-p.net
*.microsoftonlineimages.com
*.msecnd.net
*.msocdn.com
*.glbdns.microsoft.com
*.activedirectory.windowsazure.com
*.verisign.com
*.symcb.com
*.symcd.com
*.omniroot.com
*.geotrust.com
*.entrust.net
*.public-trust.com

The above is condensed from here. It includes only Exchange Online, there are some other items to be added for other Office 365 services including Skype etcetera.

Categories:      

==============

Compile grub-customizer 4.0.6 when it won't
article #871, updated 3250 days ago

Grub Customizer is a great GUI configurator for GRUB, currently the most common boot loader for ix86 and AMD64 hardware. The Customizer has issues compiling on some setups, especially later versions of gcc. Here’s what I found to do:

  1. Download grub-customizer-4.0.6.tar.gz, unpack.
  2. ccmake .
  3. Resolve any missing libraries et cetera. ccmake . again until nothing missing.
  4. Look for these files:
    ./CMakeFiles/grub-customizer.dir/flags.make
    ./CMakeFiles/grubcfg-proxy.dir/flags.make
  5. Add -std=gnu++11 as first item to CXX_FLAGS in both files.
  6. cmake .
  7. Again resolve any missing libraries et cetera. cmake . again until nothing missing.
  8. make
  9. sudo make install

Categories:      

==============

Some Items for System Building with Debian
article #753, updated 3250 days ago

Debian Testing is an excellent Linux distro, very up-to-date, and has more packages and supports more architectures than any other. Here are suggestions for desktop setup:

  • Pale Moon. This is a repackaging of Firefox which is faster and a bit leaner, still very compatible with everything Firefoxy.
  • Java. Try this:
sudo sh -c 'echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >> /etc/apt/sources.list'
sudo sh -c 'echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >> /etc/apt/sources.list'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
sudo apt-get update
sudo apt-get install oracle-java8-installer
  • Compile a new kernel optimized for your hardware, for a jolt of speed:

https://www.debian.org/releases/stable/i386/ch08s06.html.en

  • Recompile glibc optimized for your hardware, for a big jolt of speed:

http://notes.ponderworthy.com/rebuild-glibc-optimized-for-your-cpu-in-debian-testing-as-a-local-package-version

Categories: