Japanatron Logo

Assuming ubuntu is required, the following 17 results were found.

  1. Joomla Running on Nginx and Ubuntu Server - Setting Uphttps://japanatron.com/blog/other/it/10224-joomla-running-on-nginx-and-ubuntu-server-setting-up

    What follows is an outline I compiled while building an Ubuntu server for running the Joomla CMS on the Nginx web server. NOTE: Ubuntu 14.04 LTS was used for this. Ubuntu Server * choose SSH server during the install * setup static IP address Install...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  2. Ubuntu 22.04 Nginx Build Outlinehttps://japanatron.com/blog/other/it/10411-ubuntu-22-04-nginx-build-outline

    I re-built my LEMP web-server fresh on Ubuntu 22.04 and learned some things along the way. This is my base build outline mostly created for my own notes. INSTALL PACKAGES nginx nginx-extras mysql-server php php-curl php-fpm php-gd php-mysql php-xmlrpc...

    • Type: Article
    • Author: Japanatron
    • Category: IT
  3. Joomla Running on Nginx and Ubuntu Server - Securinghttps://japanatron.com/blog/other/it/10228-joomla-running-on-nginx-and-ubuntu-server-securing

    What follows is an outline I compiled while researching how to tighten security on a Nginx web server. NOTE 1: Ubuntu 14.04 LTS was used for this. NOTE 2: This is a continuation of this article: Joomla Running on Nginx and Ubuntu Server - Setting Up...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  4. Ubuntu 20.04 Nginx Build Outlinehttps://japanatron.com/blog/other/it/10405-ubuntu-20-04-nginx-build-outline

    I re-built my LEMP web-server fresh on Ubuntu 20.04, and learned some things along the way. This is my base build outline. INSTALL PACKAGES nginx-extras mysql-server php php-curl php-fpm php-gd php-mysql php-xmlrpc php-memcache php-uploadprogress...

    • Type: Article
    • Author: Japanatron
    • Category: IT
  5. Setting Up SPF on Zimbra Running on Ubuntuhttps://japanatron.com/blog/other/it/10192-setting-up-spf-on-zimbra-running-on-ubuntu

    is listed. Perhaps you have to adjust your scores. UPDATE - 2014/10/23 I updated this article for Zimbra 8.5 running on Ubuntu 14.04. UPDATE - 2015/2/20 Tested and working with Zimbra 8.6.

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  6. How To Build an Ubuntu Web Server For Joomla and JomSocialhttps://japanatron.com/blog/other/it/10144-how-to-build-an-ubuntu-web-server-for-joomla-and-jomsocial

    The following is a task outline for building an Ubuntu-based web-server to run Joomla and JomSocial. I created this for my own notes, so apologies if it's a bit cryptic. Ubuntu server minimum install choose LAMP & SSH server during install static IP...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  7. Ubuntuhttps://japanatron.com/component/tags/tag/ubuntu

    • Type: Tag
    • Author: Japanatron
  8. Combine Image File and Audio File Into Video - avconv / ffmpeghttps://japanatron.com/blog/other/it/10186-ffmpeg-combine-image-file-and-audio-file-into-video

    ffmpeg -loop 1 -i image-file.jpg -i audio-file.mp3 -shortest -acodec copy -f mov video-file.mov Notes * The above is on Ubuntu Server 12.04 LTS. Other ffmpeg versions may require tweaking of command options, hence the reason this took me extensive...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  9. KVM - Enable Direct PCI Pass-Throughhttps://japanatron.com/blog/other/it/10253-kvm-enable-direct-pci-pass-through

    This example was done on Ubuntu server. * Enable VM direct I/O in the BIOS. * Open /etc/default/grub using an editor like nano or something. * Find GRUB_CMDLINE_LINUX_DEFAULT and add intel_iommu=on as a parameter. Make sure it's lowercase. Save and...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  10. The Hunt For the Ultimate Free Open Source NAS Distrohttps://japanatron.com/blog/other/it/10210-the-hunt-for-the-ultimate-free-open-source-nas-distro

    so it could work for those moving on from the now defunct Windows Home Server. * based on well-known distros Fedora & Ubuntu Bad * This statement taken from an Amahi email irked me: "IMPORTANT: We do not know of any data loss within our users, however...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  11. My Adventures in Spam Blockinghttps://japanatron.com/blog/other/it/10172-my-adventures-in-spam-blocking

    options, or software I required. Thus, I migrated my email account from my web host to my very own email server built on Ubuntu server and Zimbra. Out of the box Zimbra includes impressive spam & virus filtering—ClamAV, Spam Assassin, spam training, and...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  12. Nginx - How to Block or Redirect by GeoIPhttps://japanatron.com/blog/other/it/10406-nginx-how-to-block-or-redirect-by-geoip

    I've been figuring out how to block or redirect web traffic in Nginx based on the country geoIP. NOTES * You need the package nginx-extras for this because this package has the geoIP Nginx plugin. * I used Japan (JP) in these examples, so change the...

    • Type: Article
    • Author: Japanatron
    • Category: IT
  13. Zimbra - Add Trusted Relay to SpamAssassinhttps://japanatron.com/blog/other/it/10350-zimbra-add-trusted-relay-to-spamassassin

    My domain name registrar offers email aliases and forwarding; however, this feature causes my mail server's SPF checks to fail because the registrar's mail relay sends on behalf of the originating server. I fixed it by white-listing the registrar's...

    • Type: Article
    • Author: Japanatron
    • Category: IT
  14. Zimbra - How to Stop Automatically Discarding Spamhttps://japanatron.com/blog/other/it/10349-zimbra-how-to-stop-automatically-discarding-spam

    By default Zimbra automatically discards inbound mail that receives a high spam score (aka "super spam"). Although the score is configurable up to 100, this default could cause false positive email to disappear and make troubleshooting spam scoring...

    • Type: Article
    • Author: Japanatron
    • Category: IT
  15. Linux - Specify From Address With Mail Commandhttps://japanatron.com/blog/other/it/10250-linux-specify-from-address-with-mail-command

    I struggled a bit with figuring out how to specify the from email address when sending mail on the Linux command line. In short, you need to use the -r option. For example: echo "Enter your message here. Thank you." | mail -s "Enter your subject here"...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  16. FreeNAS - Bi-Directional Rsync Over SSHhttps://japanatron.com/blog/other/it/10169-freenas-bi-directional-rsync-over-ssh

    Go to /root on 1st server. ssh root@server1 cd /root FreeNAS OS drive is mounted read-only, so mount it RW. mount -o rw / Generate an RSA key & leave the passphrase blank. You can use another supported algorithm if you wish. ssh-keygen -t rsa Display...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
  17. How to Look at Internet Pornhttps://japanatron.com/blog/other/it/10142-how-to-look-at-internet-porn

    streetwalker. Oh, and Linux is a hell of a lot cheaper than a Mac. Here are my 2 favorite Linux distros: * Linux Mint * Ubuntu Backup Your Data You can't legally drive a car without knowing how to brake and steer. So if you don't know how to backup your...

    • Type: Article
    • Author: Mondaiji
    • Category: IT
Results 1 - 17 of 17