diff --git a/404.html b/404.html index 2ce849a1..1b86b22a 100644 --- a/404.html +++ b/404.html @@ -27,7 +27,7 @@ - + @@ -69,7 +69,7 @@ - + @@ -112,25 +112,25 @@ @@ -140,6 +140,12 @@ + + @@ -213,7 +219,6 @@

About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/blog/2019/12/24/raspberrypi-hd/index.html b/blog/2019/12/24/raspberrypi-hd/index.html index bfdf6fd4..f8c8d758 100644 --- a/blog/2019/12/24/raspberrypi-hd/index.html +++ b/blog/2019/12/24/raspberrypi-hd/index.html @@ -1,285 +1,211 @@ + + + + + + + + Setup Lomorage secondary backup with Raspberry Pi | Lomorage + + - - - - - - - - - - Setup Lomorage secondary backup with Raspberry Pi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    December 24, 2019

    - -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    - +
    +
    +
    + + +
    +

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    Table of Contents

    - +
  • Restore from the secondary backup
  • -

    Setup Lomorage secondary backup with Raspberry Pi

    -

    You can choose the option suits your need.

    -

    Option 1 (1 USB hard drive, 1 USB flash drive on same Raspberry Pi)

    -

    Raspberry Pi should have no problem to power one USB hard drive, you can even add one more USB flash drive. Since normally, a hard drive is expected to have a much longer lifespan, and USB flash drive has limited number of write/erase cycles, it’s better to use hard drive as the primary storage and USB hard drive.

    -

    Option 2 (2 USB hard drive on same Raspberry Pi)

    -

    Most likely, Raspberry Pi won’t be able to provide that much power two USB hard drives. You can use the USB hub with power supply, which means the USB hard drive will be powered by the USB hub instead of Raspberry Pi.

    - -

    Option 3 (2 USB hard drive on 2 separate Raspberry Pis)

    -

    It would be safer if you have two setups in different places, the Lomorage OS image already enabled Samba file share service by default, so what you can do it’s actually mount the hard drive of the secondary setup in the the first setup.

    -

    For example, if secondary Pi has ip “192.168.1.155”, the driver is mount at “/media/WD_90C27F73C27F5C82”.

    -

    One the primary Pi, we can use the following command to mount it, just change the ip address and mount directory according to your setup.

    -
    mkdir /media/WD_90C27F73C27F5C82
     
     # user pass is the username password on 2nd Pi, that is the default.
     # uid 1000 and gid 1000 is for mount it as user Pi on 1st Pi
     sudo mount.cifs //192.168.1.155/media/WD_90C27F73C27F5C82 /media/WD_90C27F73C27F5C82 -o user=pi,pass=raspberry,uid=1000,gid=1000
    -
    - -

    You can also add the entry in “/etc/fstab”, so that it can mount when system start:

    - +

    You can also add the entry in “/etc/fstab”, so that it can mount when system start:

    //192.168.1.155/media/WD_90C27F73C27F5C82  /media/WD_90C27F73C27F5C82  cifs  user=pi,pass=raspberry,uid=1000,gid=1000
    -
    - -

    You can use the following command to umount and mount all entries in fstab to validate the configuration:

    - +

    You can use the following command to umount and mount all entries in fstab to validate the configuration:

    sudo mount -a
     sudo umount -a
    -
    - -

    Notice: Don’t use the secondary Lomorage service even though it can be found, since we are using the primary one and set redundancy backup to the directory mounted via Samba. Currently we don’t have GUI to set the backup this way, you have to do that manually in commandline, will add GUI later

    - +

    Notice: Don’t use the secondary Lomorage service even though it can be found, since we are using the primary one and set redundancy backup to the directory mounted via Samba. Currently we don’t have GUI to set the backup this way, you have to do that manually in commandline, will add GUI later

    Option 4 (1 USB drive one Raspberry Pi, NAS)

    -

    You can also reuse your NAS and follow the similar steps above in Option 3 to mount the NAS storage via Samba.

    -

    The parameters needed are:

    -
      -
    • samba service ip (192.168.1.155)

    • - -
    • samba shared directory name (WD_90C27F73C27F5C82)

    • - -
    • local mount root directory (on Raspberry Pi is “/media” if using Lomorage OS image; If not, it and can be changed via “–mount-dir” command line args when running lomod;)

    • - -
    • username/password for Samba service

    • +
    • +

      samba service ip (192.168.1.155)

      +
    • +
    • +

      samba shared directory name (WD_90C27F73C27F5C82)

      +
    • +
    • +

      local mount root directory (on Raspberry Pi is “/media” if using Lomorage OS image; If not, it and can be changed via “–mount-dir” command line args when running lomod;)

      +
    • +
    • +

      username/password for Samba service

      +
    -

    Restore from the secondary backup

    +

    If unfortunately the hard drive on your primary device is dead, you can bring up the secondary setup as primary one. The photo and video assets are already backup on the secondary hard drive, as well as the database. You can copy the “assets.db” in the user directory on hard drive to “/opt/lomorage/var/assets.db”, and change the “home_dir” in table “user” for each user in “assets.db”. We promise will let this process less painful, but for now, you have to do that manually, if you have the problem and can’t figure it by yourself, join our slack channel or reach us via [email](mailto: support@lomorage.com), and we will help you solve it.

    -

    If unfortunately the hard drive on your primary device is dead, you can bring up the secondary setup as primary one. The photo and video assets are already backup on the secondary hard drive, as well as the database. You can copy the “assets.db” in the user directory on hard drive to “/opt/lomorage/var/assets.db”, and change the “home_dir” in table “user” for each user in “assets.db”. We promise will let this process less painful, but for now, you have to do that manually, if you have the problem and can’t figure it by yourself, join our slack channel or reach us via email, and we will help you solve it.

    -
    - - -
    -
    + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - - - - - - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/blog/2020/03/29/covid19/index.html b/blog/2020/03/29/covid19/index.html index fa1229a1..77232eef 100644 --- a/blog/2020/03/29/covid19/index.html +++ b/blog/2020/03/29/covid19/index.html @@ -1,215 +1,158 @@ + + + + + + + + Setup Covid-19 dashboard using Raspberry Pi | Lomorage + + - - - - - - - - - - Setup Covid-19 dashboard using Raspberry Pi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    March 29, 2020

    - -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    - +
    +
    +
    + + +
    +

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Table of Contents

    - +
  • Ready to use -
  • - + +

    Prepare

    -

    The setup the dashboard, you need Raspberry Pi and a HDMI monitor, you can either use big screen in the living room, or use smaller one on the desk. Notes: This won’t work for Raspberry Pi zero/one, there is no NodeJS support for “armv6l” any more.

    -

    How it works

    -

    It’s using MagicMirror and covid-19 module.

    -

    MagicMirror is an open source modular smart mirror platform, but it doesn’t have to be a mirror, it can be used to setup customized dashboard. MagicMirror is using Nodejs for both client and server, the server provides http service for the dashboard and client is using Electron and run it in Kiosk mode, which is actually running a browser in fullscreen mode, actually you can just one the “server only mode” and open the dashboard in browser on another machine which can access the network.

    -

    MagicMirror defines layout below, and you can put dashboard provided by the modules at specific locations.

    - -

    layout

    - +

    layout

    The modules can define how to fetch the data and how to present it.

    -

    That is it!

    -

    Installation

    -

    If you are using lite image, you need install desktop first to run MagicMirror.

    -
    sudo apt-get update 
     sudo apt-get -y dist-upgrade
     sudo apt-get install raspberrypi-ui-mods -y
    @@ -258,58 +190,34 @@ 

    Installation

    sudo apt install ca-certificates python-certifi python3-certifi -y sudo apt-get install -y --reinstall ca-certificates sudo update-ca-certificates --fresh -
    - -

    1. Install latest NodeJS

    - +

    1. Install latest NodeJS

    NodeJs-Raspberry-Pi is very convinient to setup latest NodeJS with one command:

    -
    $ wget -O - https://raw.githubusercontent.com/audstanley/NodeJs-Raspberry-Pi/master/Install-Node.sh | sudo bash; node -v
    -
    - -

    Most likely using “apt install” won’t get the latest version and MagicMirror will complaint when installation.

    - +

    Most likely using “apt install” won’t get the latest version and MagicMirror will complaint when installation.

    2. Install MagicMirror

    -
    $ git clone https://github.com/MichMich/MagicMirror
     $ cd MagicMirror/
     $ npm install
    -
    - -

    3. Try run with the sample config

    - +

    3. Try run with the sample config

    MagicMirror comes with some default modules.

    -
    # assuming in MagicMirror directory
     $ cp config/config.js.sample config/config.js
     
     # use "ctrl+c" to stop, this way of running is for testing
     $ npm run
    -
    - -

    You can try play with the options provided by the modules in “config.js”, for example, you can add more RSS feed to the “News Feed” module:

    - +

    You can try play with the options provided by the modules in “config.js”, for example, you can add more RSS feed to the “News Feed” module:

    {
        title: "BBC",
        url: "http://feeds.bbci.co.uk/news/video_and_audio/news_front_page/rss.xml?edition=us"
     },
    -
    - -

    Or you can change the position referring to the layout mentioned above.

    - +

    Or you can change the position referring to the layout mentioned above.

    You can also change the language by changing “language” in “config.js”, check https://github.com/MichMich/MagicMirror/tree/master/translations for languages available.

    -

    4. Install MMM-COVID19 module

    -

    Install in modules directory:

    -
    # assuming in MagicMirror directory
     $ cd modules
     $ git clone https://github.com/bibaldo/MMM-COVID19
    -
    - -

    Then config the module in “config/config.js”, register account at https://rapidapi.com/ and replace the “get-your-api-key” below with your own API key. After registered, go to https://rapidapi.com/astsiatsko/api/coronavirus-monitor and you can find the API key with name “X-RapidAPI-Key”.

    - +

    Then config the module in “config/config.js”, register account at https://rapidapi.com/ and replace the “get-your-api-key” below with your own API key. After registered, go to https://rapidapi.com/astsiatsko/api/coronavirus-monitor and you can find the API key with name “X-RapidAPI-Key”.

      {
         module: 'MMM-COVID19',
         position: "bottom_bar",
    @@ -323,100 +231,64 @@ 

    4. Install MMM-COVID19 module

    rapidapiKey: "get-your-api-key", } }, -
    - -

    After making changes to “config/config.js”, you can restart MagicMirror.

    - +

    After making changes to “config/config.js”, you can restart MagicMirror.

    5. Add more data sources for MMM-COVID19

    -

    The default data sources is lacking details, for example it won’t have the data for counties in USA, and no data for cities in China. You can add other data sources, but it won’t be a simple configuration, and requires some code changes since the data format is not compatible.

    -

    Here is the changes made to show counties statistics in USA and to add Chinese translation.

    -

    The data source used for USA counties is from https://github.com/ExpDev07/coronavirus-tracker-api, no API key required.

    -

    Another options people using in other projects is https://github.com/pomber/covid19, there are some other source available on internet for your country with more details and you can just search with google, and make changes to the code.

    -

    6. Get more modules

    -

    There is a wiki on 3rd party modules. The demo dashborad shows on top using the following modules:

    - -

    You can try other modules based on your needs.

    -

    Ready to use

    -

    After you tested the dashboard, you still need some configuration to make it ready to use.

    -

    1. Configuring the Raspberry Pi

    -

    You need disable the screensaver, disable the WiFi power save mode and enable OpenGL driver, follow the wiki to config the system.

    -

    Notes: I have only one problem with disabling screensaver, when changing “/etc/xdg/lxsession/LXDE-pi/autostart”, have to comment line “@xscreensaver -no-splash” to make it work besides adding those 3 lines below it

    -
    @lxpanel --profile LXDE-pi
     @pcmanfm --desktop --profile LXDE-pi
     #@xscreensaver -no-splash
     @xset s noblank
     @xset s off
     @xset -dpms
    -
    - -

    2. Auto Starting MagicMirror

    - +

    2. Auto Starting MagicMirror

    Follow the steps on the wiki to enable auto start of MagicMirror when system start.

    -

    Notes: If after installing pm2 but it’s not found, you probably need to add PATH="/opt/nodejs/bin:$PATH" in “~/.profile” and then source ~/.profile

    - -

    3. Add cronjob to start/stop MagicMirror

    - +

    3. Add cronjob to start/stop MagicMirror

    Add the following lines in “/var/spool/cron/crontabs/pi” which start MagicMirror at 8 am and stop at 9 pm, it also turns on/off the monitor accordingly.

    -
    00 08 * * * vcgencmd display_power 1;pm2 start mm
     00 21 * * * vcgencmd display_power 0;pm2 stop mm
    -
    - -

    4. Increase swap size

    - +

    4. Increase swap size

    If you add more plugins, you can use MMM-pages to put them in several pages, and most likely MagicMirror may consume a lot of memory, which will cause system unresponsive. Increase swap size helps.

    -
    1. Stop the swap
    -
    sudo dphys-swapfile swapoff
    -
    - -
      +
      1. Modify the size, edit the file /etc/dphys-swapfile and modify the variable CONF_SWAPSIZE to 1024, then create and initialize the file
      -
      dphys-swapfile setup
      -
      - -
        +
        1. Start the swap
        -
        sudo dphys-swapfile swapon
        -
        - -

        5. Setup Plex

        - +

        5. Setup Plex

        curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
         sudo apt update
         sudo apt install plexmediaserver
        -
        -
    - - -
    -
    +
    + + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/blog/2020/05/17/import_my_cloud/index.html b/blog/2020/05/17/import_my_cloud/index.html index ec060f0f..64798ab7 100644 --- a/blog/2020/05/17/import_my_cloud/index.html +++ b/blog/2020/05/17/import_my_cloud/index.html @@ -1,358 +1,256 @@ + + + + + + + + Move MyCloud to Lomorage | Lomorage + + - - - - - - - - - - Move MyCloud to Lomorage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Move MyCloud to Lomorage

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    May 17, 2020

    - -
    -

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the +

    +
    +
    + + +
    +

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - Now let me introduce how to import / move MyCloud data to Lomorage.

    - +keep the computer on to copy the files to MyCloud disk. +Now let me introduce how to import / move MyCloud data to Lomorage.

    Table of Contents

    - +
  • Mount MyCloud folder to Lomorage server -
  • + +
  • Start import MyCloud data to Lomorage -
  • - + +

    Config your MyCloud

    -

    1. Turn on SSH on MyCloud admin page

    -

    Open MyCloud admin web page, on settings, turn on SSH and set the password as tips. Like below picture:

    -

    -

    2. Connect to MyCloud with SSH

    -

    Use below command to connect MyCloud on SSH client like putty or other SSH client tools.

    -
    -

    ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.0.24

    +

    ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.0.24

    -

    CD to nfs folder, check what shared folder there. Below is my case as the picture:

    -

    cd /nfs

    -

    -

    The Public folder is which I want to mount to Lomorage.

    -

    3. Edit exports file on MyCloud

    -

    Inside SSH client, run below command:

    -

    sudo vi /etc/exports

    -

    And copy below line to the bottom of the file:

    -
    -

    /nfs/Public 192.168.0.124(rw,subtree_check,secure)

    +

    /nfs/Public 192.168.0.1/24(rw,subtree_check,secure)

    -

    192.168.0.1 is your router’s IP, please change to yours real IP.

    -

    Then save to exit.

    -

    Till now, MyCloud configure is finished.

    -

    Mount MyCloud folder to Lomorage server

    -

    1. Connect to Lomorage server with SSH

    -

    Inside SSH client, run below command:

    -
    -

    ssh pi@192.168.0.40

    +

    ssh pi@192.168.0.40

    -

    The default password for pi is: raspberry.

    -

    2. Mount MyCloud folder

    -

    Create new folder under home/pi like below:

    -

    cd /home/pi

    -

    sudo mkdir mycloud

    -

    run below command to mount the MyCloud folder.

    -

    sudo mount 192.168.0.24:/nfs/Public /home/pi/mycloud

    -

    192.168.0.24 is the MyCloud’s IP, please change yours real IP here.

    -

    if up command has error, please run below command.

    -

    sudo rpcbind start

    -

    then run below command again.

    -

    sudo mount 192.168.0.24:/nfs/Public /home/pi/mycloud

    -

    3. Check MyCloud mounted folder

    -

    Run below command and you will see the files from MyCloud disk. Congratulations, key step is done.

    -

    cd /home/pi/mycloud

    -

    Start import MyCloud data to Lomorage

    -

    1. Scan files

    -

    Run below command to scan the mounted folder

    -

    cd /opt/lomorage/bin

    - +
    +

    ./lomoc s /home/pi/mycloud

    -

    [mycloud is the folder which you mounted from the MyCloud/Public]

    -

    It need some time to finish the scanning if you have many assets from MyCloud.

    -

    If the scanning finished, run below command to check the files.

    -

    ~/.lomo

    -

    Some assets will be categorized if the EXIF info there. Like below:

    -
    pi@raspberrypi-lomorage:~/.lomo/links/unclassfied $ ls -l
     total 20
     drwxr-xr-x 2 pi pi 4096 May 17 16:42  aisnote
    @@ -371,55 +269,37 @@ 

    1. Scan files

    drwxr-xr-x 2 pi pi 4096 May 17 16:42 xiaomi drwxr-xr-x 2 pi pi 4096 May 17 16:42 来自:iPhone pi@raspberrypi-lomorage:~/.lomo/links/unclassfied/Shared Pictures $ -
    - -

    2. Install tmux

    - +

    2. Install tmux

    If you are familiar with tmux, please ignore.

    -

    Please install tmux on your Lomorage server using below command:

    -

    sudo apt install tmux

    -

    then:

    -

    tmux

    -

    3. Start import to Lomorage

    -

    Enter into tmux session,run below:

    -

    cd /opt/lomorage/bin

    - +
    +

    ./lomoc import -y [lomorage username] [password]

    -

    Note: the username and password here is the info which you used to login Lomorage on Phone APP.

    -

    Then lomoc application will discovering how many Lomorage servers in your home network, please do that as screen messages.

    -

    The log will be print out like below if import success.

    -
    success upload /home/pi/.lomo/links/classfied/2010/09/16/Does a Kangaroo Have a Mother, Too_ Book Read Aloud, written by Eric Carle.mp4
     success upload /home/pi/.lomo/links/classfied/2010/10/07/If the Dinosaurs Came Back.m4v.mp4
     success upload /home/pi/.lomo/links/classfied/2010/10/25/Click, Clack, Moo Cows That Type by - Doreen Cronin.mp4
    -
    - -

    BTW

    - +

    BTW

    Lomorage will provide the new API soon for this importing, next time you do this step with your Lomorage phone APP

    +

    Thanks for your reading and enjoy the Lomorage. Welcome comments and feedbacks.

    -

    Thanks for your reading and enjoy the Lomorage. Welcome comments and feedbacks.

    -
    - - -
    -
    + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/blog/2020/11/16/windows-docker/index.html b/blog/2020/11/16/windows-docker/index.html new file mode 100644 index 00000000..35835ae5 --- /dev/null +++ b/blog/2020/11/16/windows-docker/index.html @@ -0,0 +1,293 @@ + + + + + + + + + + Run Lomoage Docker in Windows 10 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +
    +

    + +

    +
    +

    1. Dwownload Docker

    +

    Just go to Docker official site to downlad the Docker Windows installer, and double click to run the setup with the default settings. +Please restart the Windows machine after finish the docker installing.

    +

    2. Pull Lomorage Image

    +

    Use one kind of terminal like: Windows Terminal or Git-bash or Windows Power Shell:

    +

    (Suggest to use git-bash, you can download from here: https://gitforwindows.org/)

    +
    +

    docker pull lomorage/raspberrypi-lomorage:latest

    +
    +

    3. Run Docker image

    +

    Please download this script https://raw.githubusercontent.com/lomorage/lomo-docker/master/run.sh

    +

    And then do some change

    +

    from

    +
    +

    docker run –user=*****

    +
    +

    to

    +
    +

    docker run –user=root:root

    +
    +

    Then in terminal run below command:

    +
    +

    $ ./run.sh -d -m h:/docker-lomorage -b h:/var/lomorage -h 192.168.0.63

    +
    +

    Please note h:/docker-lomorage is your Windows directoy,so does for h:/var/lomorage。 192.168.0.63 is your Windows IP.

    +

    4. Check the docker is successful

    +
      +
    • +

      Open Lomorage APP in your phone,input IP address and port, on this case, IP is: 192.168.0.53, Port is: 8000

      +
    • +
    • +

      Open browser, input: http://192.168.0.63:8001, should has below image:

      +
    • +
    +
    +

    + +

    +
    +

    Also, you can changed the run.sh script if you familiar with Docker to meet your requirements.

    +

    Enjoy and happy Lomorage!

    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/blog/index.html b/blog/index.html index 65826d4a..e150a8c2 100644 --- a/blog/index.html +++ b/blog/index.html @@ -1,534 +1,399 @@ + + + + + + + + Blogs | Lomorage + + - - - - - - - - - - Blogs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Blogs

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Move MyCloud to Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Run Lomoage Docker in Windows 10

    +
    +

    + + + + in Docker + + + +

    +

    + November 16, 2020 +

    +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +

    Continue reading +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    Move MyCloud to Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - Now let me introduce how to import / move MyCloud data to Lomorage.

    -

    Continue reading -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -

    - - - - in Dashboard - - - -

    -

    - March 29, 2020 -

    -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Continue reading -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - +
    +
    + +
    +
    +
    + +
    +
    +

    Setup Covid-19 dashboard using Raspberry Pi

    +
    +

    + + + + in Dashboard + + + +

    +

    + March 29, 2020 +

    +
    +

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    +

    Continue reading +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    Setup Lomorage secondary backup with Raspberry Pi

    +
    +

    + + + + in FAQ + + + +

    +

    + December 24, 2019 +

    +
    +

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    +

    Continue reading +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/blog/index.xml b/blog/index.xml index 70f732c0..4af23f57 100644 --- a/blog/index.xml +++ b/blog/index.xml @@ -1,45 +1,50 @@ - + Blogs on Lomorage - https://lomorage.com/blog/ + http://lomorage.com/blog/ Recent content in Blogs on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + Move MyCloud to Lomorage - https://lomorage.com/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the + http://lomorage.com/blog/2020/05/17/import_my_cloud/ + <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - <strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> +keep the computer on to copy the files to MyCloud disk. +<strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/blog/page/1/index.html b/blog/page/1/index.html index b80fe303..49f584df 100644 --- a/blog/page/1/index.html +++ b/blog/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/blog/ \ No newline at end of file +http://lomorage.com/blog/ \ No newline at end of file diff --git a/buy/index.html b/buy/index.html new file mode 100644 index 00000000..319819e0 --- /dev/null +++ b/buy/index.html @@ -0,0 +1,433 @@ + + + + + + + + + + Buy | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +

    Lomorage - Save the moments, enjoy the memories

    +

    We build Lomorage with love of the family, and we care about privacy, we are the users of Lomorage, and we constantly improve it with user’s feedback.

    +

    Online store coming soon

    +

    1. Pain points

    +
      +
    1. So many photos in Phone, how to backup?
    2. +
    3. Don’t have time to clean up the photo, the backup on hard drive is everywhere with duplicates?
    4. +
    5. Getting used to take screenshot for documents, but can’t find it via text search?
    6. +
    7. Can’t wait for the video loading from cloud?
    8. +
    9. Worry about hard drive broken or lost photo on cloud?
    10. +
    11. Worry about leaking privacy?
    12. +
    13. Worry about photo/video quality degradation on cloud?
    14. +
    15. Worry about cloud service shutdown?
    16. +
    +

    2. Features

    +
      +
    • Backup photo on smart phone.
    • +
    • Incremental backup, fast and reliable.
    • +
    • Resumable backup, you can upload large video more reliably.
    • +
    • Support live photo, slow motion, raw DNG format and other popular media formats.
    • +
    • Save original file, no quality degradation, no metadata lost.
    • +
    • Photo/Video deduplicate。
    • +
    • Similarity check, you can choose to save the best one with multiple shoots。
    • +
    • Access photos seamlessly on multiple device with one account.
    • +
    • Isolated accounts for family members, keep your privacy.
    • +
    • Save secrets with encryption. (coming soon)
    • +
    • Sharing tons of photos without worry about phone storage.
    • +
    • No need to save photo locally to share in social network.
    • +
    • Easy access when you switching phone with different OS.
    • +
    • Export backup to Phone。
    • +
    • Offline mode so you can browser photos even without connectivity.
    • +
    • Search by location, date time, text in photo.
    • +
    • History of today, never buries the memories in hard drive.
    • +
    • Tagging and create album. (coming soon)
    • +
    • Redundancy backup, lower the risk of losing data.
    • +
    • Import photo from hard drive, SD card etc.
    • +
    • No rate limit, no account number limitation, no vendor lock in.
    • +
    • Hard drive plug and play, no reformat required.
    • +
    +

    For more information, check here

    +

    3. Lomorage Photos

    +

    Lomorage mini:tiny and energy efficient

    +
    +

    +lomorage-mini +lomorage-setup +

    +
    + +
    +

    +local +search +backup +settings +

    +
    +

    Lomorage Web APP:Drag and drop to import photos on SD card, hard drive

    +
    +web-upload +web-gallery +
    +

    4. FAQ

    +
      +
    1. +

      What can it do besides photo backup and management? +Lomorage is focus on photo backup and management and our current goal is to make it easy to use, stable and reliable. But we are using a customized open Linux platform, so if you need some of those features on expensive NAS, you should be able to install the alternatives, for example you can install Transmission for downloading, and Jellyfin for media center, samba share is enabled by default for backup other files.

      +
    2. +
    3. +

      What is the size of storage? +Lomorage relies on external storage and supports all types of hard drive and flash disk.

      +
    4. +
    5. +

      Can it connected with multiple hard drives? +Yes, but you need powered USB hub to support multiple hard drives.

      +
    6. +
    7. +

      Can I use spare hard drive? +Yes, you don’t need reformat the disk to use Lomorage, and it supports all major file systems(FAT32, NTFS, EXT etc).

      +
    8. +
    9. +

      Does it support hard drive sleep? +Yes, once no activity on hard drive, it goes to sleep mode automatically, and will wake up once you access the hard drive。

      +
    10. +
    11. +

      Does it support redundancy backup? +Yes, you can use powered USB hub to connect the secondary hard drive and set it as redundancy backup.

      +
    12. +
    13. +

      How to install? +Connect hard drive via USB, connect ethernet, power on, and download Lomorage APP.

      +
    14. +
    15. +

      Any other fees? +No.

      +
    16. +
    17. +

      How to view the backup photos? +You can use Lomorage APP on iOS or Android, or you can use the Web APP, or you can access via samba, or even access the hard drive directly. We also have Android TV APP.

      +
    18. +
    19. +

      Does it support remote access? +Yes, you can use 3rd party reverse proxy tunnel service(like ngrok), or you can set port mapping on router.

      +
    20. +
    +

    5. Specs

    +

    Mini Edition

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operation SystemLinux
    CPUH2 Quad-core Cortex-A7 1.2GHZ
    Memory512MB DDR3 SDRAM
    USB PortUSB2.0
    Network10/100M Ethernet RJ45
    Size56 x 51 x 32mm
    + +

    Standard Edition

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Operation SystemLinux
    CPUH2 Quad-core Cortex-A72 1.5GHz
    Memory2GB LPDDR4-3200 SDRAM
    USB PortUSB3.0
    Network100/1000M Ethernet RJ45
    Size97 x 70 x 25mm
    + +

    6. Installation

    +
      +
    1. Connected hard drive via USB.
    2. +
    3. Connected ethernet then power on.
    4. +
    5. Download Lomorage APP on smart phone and start to use
    6. +
    +
    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/categories/blog/index.html b/categories/blog/index.html index 0c7512e4..6eab48ec 100644 --- a/categories/blog/index.html +++ b/categories/blog/index.html @@ -1,466 +1,297 @@ + + + + + + + + BLOG | Lomorage + + - - - - - - - - - - Blog - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Blog

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Move MyCloud to Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Move MyCloud to Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - Now let me introduce how to import / move MyCloud data to Lomorage.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +keep the computer on to copy the files to MyCloud disk. +Now let me introduce how to import / move MyCloud data to Lomorage.

    +

    Continue reading +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/categories/blog/index.xml b/categories/blog/index.xml index e89ae02c..2048f5ce 100644 --- a/categories/blog/index.xml +++ b/categories/blog/index.xml @@ -1,27 +1,23 @@ - + - Blog on Lomorage - https://lomorage.com/categories/blog/ - Recent content in Blog on Lomorage + BLOG on Lomorage + http://lomorage.com/categories/blog/ + Recent content in BLOG on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - - + Sun, 17 May 2020 13:43:40 +0000 Move MyCloud to Lomorage - https://lomorage.com/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the + http://lomorage.com/blog/2020/05/17/import_my_cloud/ + <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - <strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> +keep the computer on to copy the files to MyCloud disk. +<strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> - \ No newline at end of file + diff --git a/categories/blog/page/1/index.html b/categories/blog/page/1/index.html index d6344351..acb092d9 100644 --- a/categories/blog/page/1/index.html +++ b/categories/blog/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/categories/blog/ \ No newline at end of file +http://lomorage.com/categories/blog/ \ No newline at end of file diff --git a/categories/dashboard/index.html b/categories/dashboard/index.html index 76dde1fd..abf14224 100644 --- a/categories/dashboard/index.html +++ b/categories/dashboard/index.html @@ -1,463 +1,294 @@ + + + + + + + + Dashboard | Lomorage + + - - - - - - - - - - Dashboard - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Dashboard

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -

    - - - - in Dashboard - - - -

    -

    - March 29, 2020 -

    -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/categories/dashboard/index.xml b/categories/dashboard/index.xml index 6d6b9fb6..dffe9c54 100644 --- a/categories/dashboard/index.xml +++ b/categories/dashboard/index.xml @@ -1,24 +1,20 @@ - + Dashboard on Lomorage - https://lomorage.com/categories/dashboard/ + http://lomorage.com/categories/dashboard/ Recent content in Dashboard on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> - \ No newline at end of file + diff --git a/categories/dashboard/page/1/index.html b/categories/dashboard/page/1/index.html index 7c503692..23ac6fbc 100644 --- a/categories/dashboard/page/1/index.html +++ b/categories/dashboard/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/categories/dashboard/ \ No newline at end of file +http://lomorage.com/categories/dashboard/ \ No newline at end of file diff --git a/categories/docker/index.html b/categories/docker/index.html new file mode 100644 index 00000000..5c6dcf70 --- /dev/null +++ b/categories/docker/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Docker | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Run Lomoage Docker in Windows 10

    +
    +

    + + + + in Docker + + + +

    +

    + November 16, 2020 +

    +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +

    Continue reading +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/categories/docker/index.xml b/categories/docker/index.xml new file mode 100644 index 00000000..968ab586 --- /dev/null +++ b/categories/docker/index.xml @@ -0,0 +1,20 @@ + + + + Docker on Lomorage + http://lomorage.com/categories/docker/ + Recent content in Docker on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + + + + diff --git a/categories/docker/page/1/index.html b/categories/docker/page/1/index.html new file mode 100644 index 00000000..0328be73 --- /dev/null +++ b/categories/docker/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/categories/docker/ \ No newline at end of file diff --git a/categories/faq/index.html b/categories/faq/index.html index 86498671..81054ddd 100644 --- a/categories/faq/index.html +++ b/categories/faq/index.html @@ -1,463 +1,294 @@ + + + + + + + + FAQ | Lomorage + + - - - - - - - - - - Faq - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Faq

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/categories/faq/index.xml b/categories/faq/index.xml index a6da2e8b..8e5af690 100644 --- a/categories/faq/index.xml +++ b/categories/faq/index.xml @@ -1,24 +1,20 @@ - + - Faq on Lomorage - https://lomorage.com/categories/faq/ - Recent content in Faq on Lomorage + FAQ on Lomorage + http://lomorage.com/categories/faq/ + Recent content in FAQ on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/categories/faq/page/1/index.html b/categories/faq/page/1/index.html index efaba0a1..9bcc1507 100644 --- a/categories/faq/page/1/index.html +++ b/categories/faq/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/categories/faq/ \ No newline at end of file +http://lomorage.com/categories/faq/ \ No newline at end of file diff --git a/categories/index.html b/categories/index.html index d4edf0a2..5185c11d 100644 --- a/categories/index.html +++ b/categories/index.html @@ -1,399 +1,21 @@ - - + + + + + + + + Categories | Lomorage + + - - - - - - - - - - Categories - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Categories

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - + - - + + + + - - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - +

    Categories

    + + + + - - diff --git a/categories/index.xml b/categories/index.xml index b61fd6ac..e24ea322 100644 --- a/categories/index.xml +++ b/categories/index.xml @@ -1,42 +1,47 @@ - + Categories on Lomorage - https://lomorage.com/categories/ + http://lomorage.com/categories/ Recent content in Categories on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - + Mon, 16 Nov 2020 22:43:40 +0000 + + Docker + http://lomorage.com/categories/docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/categories/docker/ + + - Blog - https://lomorage.com/categories/blog/ + BLOG + http://lomorage.com/categories/blog/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/categories/blog/ + http://lomorage.com/categories/blog/ Dashboard - https://lomorage.com/categories/dashboard/ + http://lomorage.com/categories/dashboard/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/categories/dashboard/ + http://lomorage.com/categories/dashboard/ - Faq - https://lomorage.com/categories/faq/ + FAQ + http://lomorage.com/categories/faq/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/categories/faq/ + http://lomorage.com/categories/faq/ - \ No newline at end of file + diff --git a/compare/index.html b/compare/index.html index ea745f3e..d2342712 100644 --- a/compare/index.html +++ b/compare/index.html @@ -1,333 +1,262 @@ + + + + + + + + Price Comparison | Lomorage + + - - - - - - - - - - Price Comparison - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Price Comparison

    -
    -
    -
    + - -
    - - -
    - -
    - -
    - -
    - - -

    Price Comparison

    - -

    The following comparison only considered the biggest selling point for each category, and assuming the main purpose is photo backup and photo management, so if you need more than that, just go with NAS, or get Raspberry Pi 4 or other single board computer to DIY yourself if you are expert.

    - +
    +
    +
    + + +
    +

    Price Comparison

    +

    The following comparison only considered the biggest selling point for each category, and assuming the main purpose is photo backup and photo management, so if you need more than that, just go with NAS, or get Orange Pi Zero or other single board computer to DIY yourself if you are expert.

    +

    We are not against cloud storage, it can be as good backup for local storage, and we suggest user keep the local copy.

    For example, the cloud service has different price by storage size, there are other features but it actually makes no difference with different storage sizes; And for the self hosting devices, the price differs by the hardware configurations, there are other features but it actually makes no difference with different configurations. Among all the features, backup is the fundamental requirements, and all other fancy features is built on that.

    - -

    Lomorage is more cost efficient and more flexible compared with existing solutions, the software cost you nothing, and even get the hardware setup using Raspberry Pi 4 is cheaper. If you use the Windows or Mac application, it’s $0. There are some features currently missing but they are planned, and the basic backup feature is solid and stable for almost 2 years, no hidden fees, no lock down, no privacy concern, why not give it a try?

    - +

    Lomorage is more cost efficient and more flexible compared with existing solutions, the software cost you nothing, and even get the hardware setup using Orange Pi Zero is cheaper. If you use the Windows or Mac application, it’s $0. There are some features currently missing but they are planned, and the basic backup feature is solid and stable for almost 2 years, no hidden fees, no lock down, no privacy concern, why not give it a try?

    Compare with cloud service

    -

    The following are yearly fees, those cells leave blank are not available, for example, Apple iCloud only provides 5 GB, 50 GB, 200 GB and 2 TB options, for Lomorage, it would be hard to get new hard drive smaller than 500 GB nowadays.

    -

    Lomorage software is 100% free for the the essential functions, thus here will only take device and energy cost into account, and yearly cost is calculated as depreciation expense. See below for more details.

    - - - + + - - + - - + - - + - - + - - + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + - - - + + @@ -336,32 +265,26 @@

    Compare with cloud service

    LomorageLomorage (2-Bays) yearly fee
    assuming upgrade every 4 years
    Apple iCloud Google Photo Amazon Photo OneDrive
    5 GB5 GB Free Free Free
    15 GB15 GB Free
    50 GB50 GB $ 11.88
    100 GB100 GB $ 19.99 $ 19.99 $ 23.88
    200 GB200 GB $ 35.88 $ 29.99
    500 GB$ 45.18500 GB$ 33.52
    1 TB$ 54.551 TB$ 42.89 $ 59.99 $ 69.99
    2 TB$ 59.182 TB$ 47.53 $ 119.88 $ 99.99 $ 119.98
    3 TB$ 66.683 TB$ 55.03 $ 179.97
    4 TB$ 76.684 TB$ 65.03 $ 239.96
    6 TB$ 106.686 TB$ 95.02 $ 359.94 $ 99.99 (1 TB/person)
    8 TB$ 126.688 TB$ 115.02 $ 479.92
    -

    Since Lomorage users will use their own hard drive, according to the research published here,

    -

    Generally speaking, you can rely on your hard drive for three to five years on average. The online backup company BackBlaze analysed the failure rates of their 25,000 running hard drives. They found that 90% of hard drives survive for three years, and 80% for four years. But this number varied across brands. Western Digital and Hitachi hard drives lasted much longer than Seagate’s in Backblaze’s study.

    - -

    Assuming the average of hard drive use for 4 years, and setup duplicate backup to ensure safety. So the price for storage price per year will be hard drive * 2 / 4, and Raspberry Pi most likely will last for 10 years, but let’s assume you upgrade it for more powerful and efficient one every 4 years like computer, plus the extra USB hub which assuming last 4 years. The equipment cost per year will be (hard drive * 2 + Raspberry Pi suite + usb hub) / 4, plus the $ 5 energy cost per year, the total cost will be (hard drive * 2 + Raspberry Pi suite + usb hub) / 4 + 5 per year.

    - -

    The Raspberry Pi 4 Starter Kit includes:

    - +

    Assuming the average of hard drive use for 4 years, and setup duplicate backup to ensure safety. So the price for storage price per year will be hard drive * 2 / 4, and let’s assume you upgrade it for more powerful and efficient one every 4 years like computer, plus the extra USB hub which assuming last 4 years. The equipment cost per year will be (hard drive * 2 + Orange Pi Zero + usb hub) / 4 , plus the $5 energy cost per year, the total cost will be (hard drive * 2 + Orange Pi Zero + usb hub) / 4 + 5 per year.

    +

    The Orange Pi Zero includes:

      -
    • Raspberry Pi 4 Model B/2GB
    • -
    • HighPi Raspberry Pi Case for Pi4
    • -
    • USB-C Power Supply, 5.1V 3.0A
    • -
    • 16 GB microSD Card
    • -
    • Aluminum Heatsink
    • +
    • Orange Pi Zero LTS 512MB
    • +
    • Protective White Case
    • +
    • OTG Power Supply
    -

    USB hub with power supply:

    - - +

    MicroSD Card

    + @@ -371,90 +294,72 @@

    Compare with cloud service

    storage/drive -Hard drive (1 drives) -Raspberry Pi 4 Starter Kit -USB hub +Hard drive (1 drive) +Lomorage Yearly Fee Total devices expense (2 drives) - 500 GB -$ 36.99 -$ 64.80 -$ 21.95 -$ 45.18 -$ 160.73 +$ 36.99 x 2 +$ 60.13 +$ 33.52 +$ 134.10 - 1 TB -$ 55.72 -$ 64.80 -$ 21.95 -$ 54.55 -$ 198.19 +$ 55.72 x 2 +$ 60.13 +$ 42.89 +$ 171.57 - 2 TB -$ 64.99 -$ 64.80 -$ 21.95 -$ 59.18 -$ 216.73 +$ 64.99 x 2 +$ 60.13 +$ 47.53 +$ 190.11 - 3 TB -$ 79.99 -$ 64.80 -$ 21.95 -$ 66.68 -$ 246.73 +$ 79.99 x 2 +$ 60.13 +$ 55.03 +$ 220.11 - 4 TB -$ 99.99 -$ 64.80 -$ 21.95 -$ 76.68 -$ 286.73 +$ 99.99 x 2 +$ 60.13 +$ 65.03 +$ 260.11 - 6 TB -$ 79.99 x 2 -$ 64.80 -$ 21.95 -$ 106.68 -$ 406.71 +$ 79.99 x 4 +$ 60.13 +$ 95.02 +$ 380.09 - 8 TB -$ 99.99 x 2 -$ 64.80 -$ 21.95 -$ 126.68 -$ 486.71 +$ 99.99 x 4 +$ 60.13 +$ 115.02 +$ 460.09 -

    Compare with self hosting

    -

    It’s unfair to compare a NAS with tons of features with dedicated device design for photo, but if you want just the feature related to Photo, why bother NAS if the dedicated device can do better?

    - @@ -464,50 +369,43 @@

    Compare with self hosting

    - - - - + + + - - - - - - @@ -517,116 +415,107 @@

    Compare with self hosting

    One-bay 1TB
    Lomorage(Raspberry Pi 4 starter kit + power USB hub)

    $ 86.75
    (Raspberry Pi 4 starter kit + power USB hub + 2 x 2 TB)

    $ 216.73
    (Raspberry Pi 4 starter kit + 1 TB)

    $ 120.52
    $ 60.13$ 190.11$ 93.9
    Synology 2 bay NAS DiskStation DS218+ $ 299.99
    QNAP TS-231P-US Personal Cloud $ 169
    My Cloud Home Duo $ 279.99
    ibi - The Smart Photo Manager $ 119.99
    Monument Photo Management Device $ 169.94
    Kwilt3 Personal Cloud Storage Device $ 99
    - -
    - -
    - -
    - - -
    - - - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - -
    + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    - - - - - - - + - - - + - + +
    + + + + + +
    - + diff --git a/contact/index.html b/contact/index.html index 36ccce1b..c685d164 100644 --- a/contact/index.html +++ b/contact/index.html @@ -1,203 +1,155 @@ + + + + + + + + Contact | Lomorage + + - - - - - - - - - - Contact - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Contact

    -
    -
    -
    + +
    +
    +
    + + -
    - - -
    +
    - - -

    We are here to help you

    - +

    We are here to help you

    Report problems, having new requirements? we are glad to hear from you, that will help us to polish the products.

    -

    You can also join our slack channel.

    @@ -257,108 +209,80 @@

    Contact form

    + + +
    +
    +
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/css/custom.css b/css/custom.css index b4607a61..325d201c 100644 --- a/css/custom.css +++ b/css/custom.css @@ -41,6 +41,16 @@ background-image: url(/img/installation/docker.svg); } +.badge.armbian { + background-color: #ff0000; + background-image: url(/img/installation/armbian.svg); +} + +.badge.ubuntu { + background-color: #5e2750; + background-image: url(/img/installation/ubuntu.svg); +} + .screenshoot { background-color:#EAF0FB; padding: 25px; diff --git a/css/style.a2d4ddf024fd938e5bbbf2d62c2f17987b805f53b4cc89d360109c27d51e9458.min.css b/css/style.a2d4ddf024fd938e5bbbf2d62c2f17987b805f53b4cc89d360109c27d51e9458.min.css new file mode 100644 index 00000000..e9981634 --- /dev/null +++ b/css/style.a2d4ddf024fd938e5bbbf2d62c2f17987b805f53b4cc89d360109c27d51e9458.min.css @@ -0,0 +1 @@ +/*!normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box;background-color:#fff}*,*:before,*:after{box-sizing:inherit}.invisible{opacity:0;transition:.7s}.fakefield{display:none}.left-align{text-align:left}.center,center-align{text-align:center}.right-align{text-align:right}.stress{color:#111}img,svg{max-width:100%}.container{width:88%;max-width:1080px;margin:0 auto;position:relative}.row{display:block;width:100%;clear:both}.half{width:50%;overflow:auto;float:left}.text-container{max-width:640px}.text-container--center{margin-left:auto;margin-right:auto}.margin-right{margin-right:8pt}html{font-family:lato,sans-serif;font-size:15px;color:#666;line-height:1.7;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;-moz-font-feature-settings:"liga" on}p{margin-bottom:1.3em}h1,h2,h3,h4{margin:1.414em 0 .5em;line-height:1.35;color:#111;font-weight:400}h5,h6{margin:1.414em 0 .5em;line-height:1.4;color:#666;font-weight:400}h1{margin-top:0;font-size:2.074em}h2{font-size:1.728em}h3{font-size:1.44em}h4{font-size:1.2em}small,h6{font-size:.833em;margin:.25em 0}pre{font-family:monospace,monospace;font-size:.85rem;color:#111;width:min-content;background:#f7f7f7;word-break:break-all;word-wrap:break-word;white-space:pre;padding:8pt 16pt;width:100%;overflow:auto;border:1px solid #eee}a{outline:0;text-decoration:none;transition:.7s;color:inherit}.link{color:#63aeff;text-decoration:underline}@media(min-width:992px){.link:hover{color:#3a99ff}}button,.button{display:inline-block;padding:6pt 20pt;line-height:1.7;border:1px solid #63aeff;color:#63aeff;font-weight:400;transition:.7s;white-space:nowrap;cursor:pointer;background-color:transparent;border-radius:30px;margin-bottom:1.3em;transition:.7s;text-align:center;text-decoration:none}button:hover,button:focus,.button:hover,.button:focus{outline:0}@media(min-width:992px){button:hover,.button:hover{border-color:#3a99ff;color:#3a99ff}}.button__primary{background-color:#63aeff;border-color:#63aeff;color:#fff}@media(min-width:992px){.button__primary:hover{background-color:#3a99ff;border-color:#3a99ff;color:#fff}}.button__accent{background-color:#06d19c;border-color:#06d19c;color:#fff}@media(min-width:992px){.button__accent:hover{background-color:#05bd8d;border-color:#05bd8d;color:#fff}}.button__delete{background-color:tomato;border-color:tomato;color:#fff}@media(min-width:992px){.button__delete:hover{background-color:#ff5233;border-color:#ff5233;color:#fff}}.button:disabled{opacity:.25;cursor:default;pointer-events:none}.button--fixed{width:160px}.button--fixed2{width:220px}form{margin-bottom:1.5em}form .double{display:flex;justify-content:space-between}form .double .half{max-width:48%}.form{margin-left:auto;margin-right:auto}label{margin-bottom:2pt;display:block;text-align:left;color:#666;font-size:.9em;padding-left:10pt}input[type=email],input[type=number],input[type=search],input[type=text],input[type=tel],input[type=url],input[type=password]{appearance:none;border:1px solid #eee;width:100%;transition:.7s;color:#111;font-family:lato,sans-serif;font-weight:400;padding:10pt 20pt;border-radius:30px;background-color:#f7f7f7;margin-bottom:1.4em;display:block}input[type=email]:focus,input[type=number]:focus,input[type=search]:focus,input[type=text]:focus,input[type=tel]:focus,input[type=url]:focus,input[type=password]:focus{border-color:rgba(99,174,255,.5);outline:0;background-color:#fff}textarea{appearance:none;border:1px solid #eee;width:100%;transition:.7s;color:#111;font-family:lato,sans-serif;font-weight:400;padding:12pt 24pt;border-radius:30px;background-color:#f7f7f7;margin-bottom:1.4em;display:block;resize:none;min-height:8em;outline:0}textarea:focus{border-color:rgba(99,174,255,.5);outline:0;background-color:#fff}select{border:1px solid #eee;width:100%;transition:.7s;color:#111;font-family:lato,sans-serif;font-weight:400;padding:10pt 20pt;margin-bottom:1.4em;display:block;border-radius:30px;background-color:#f7f7f7;outline:0;-webkit-appearance:none;-moz-appearance:none;background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjYXJldC1kb3duIiByb2xlPSJpbWciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMyMCA1MTIiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1jYXJldC1kb3duIGZhLXctMTAgZmEtM3giPjxwYXRoIGZpbGw9ImN1cnJlbnRjb2xvciIgZD0iTTMxLjMgMTkyaDI1Ny4zYzE3LjguMCAyNi43IDIxLjUgMTQuMSAzNC4xTDE3NC4xIDM1NC44Yy03LjggNy44LTIwLjUgNy44LTI4LjMuMEwxNy4yIDIyNi4xQzQuNiAyMTMuNSAxMy41IDE5MiAzMS4zIDE5MnoiLz48L3N2Zz4=);background-repeat:no-repeat;background-position:95%;background-size:.8em}select::-ms-expand{display:none}::-webkit-input-placeholder{font-size:.9em;opacity:.65;color:#666}:-moz-placeholder{font-size:.9em;opacity:.65;color:#666}::-moz-placeholder{font-size:.9em;opacity:.65;color:#666}:-ms-input-placeholder{font-size:.9em;opacity:.65;color:#666}[type=radio]:not(:checked),[type=radio]:checked{position:absolute;left:-9999px;visibility:hidden;transition:.28s ease}[type=radio]:not(:checked)+label,[type=radio]:checked+label{position:relative;padding-left:2em;cursor:pointer;display:inline-block;height:1.7em;line-height:1.7em;transition:.28s ease;-khtml-user-select:none;user-select:none}[type=radio]+label:before,[type=radio]+label:after{content:"";position:absolute;left:0;top:0;margin:3px;width:1.2em;height:1.2em;z-index:0;transition:.28s ease}[type=radio]:not(:checked)+label:before{transition:.28s ease;border-radius:50%;border:1px solid #666}[type=radio]:not(:checked)+label:after{transition:.28s ease;border-radius:50%;border:1px solid #666;z-index:-1;transform:scale(0)}[type=radio]:checked+label:before{border-radius:50%;border:1px solid transparent}[type=radio]:checked+label:after{border-radius:50%;border:1px solid #63aeff;background-color:#63aeff;z-index:0;transform:scale(1.02)}[type=radio]:disabled:not(:checked)+label:before,[type=radio]:disabled:checked+label:before{background-color:transparent;border-color:#eee;cursor:default}[type=radio]:disabled+label{color:#eee;cursor:default}[type=radio]:disabled:not(:checked)+label:before{border-color:#eee}[type=radio]:disabled:checked+label:after{background-color:#eee;border-color:#666}[type=checkbox]:not(:checked),[type=checkbox]:checked{position:absolute;left:-9999px;visibility:hidden}[type=checkbox]{}[type=checkbox]+label{position:relative;padding-left:2em;cursor:pointer;display:inline-block;height:25px;line-height:25px;font-size:.9em;-webkit-user-select:none;-moz-user-select:none;-khtml-user-select:none;-ms-user-select:none}[type=checkbox]+label:before{content:"";position:absolute;top:0;left:3px;width:15px;height:15px;z-index:0;border:1px solid #666;border-radius:1px;margin-top:4px;transition:.2s}[type=checkbox]:not(:checked):disabled+label:before{border:none;background-color:#eee}[type=checkbox]:checked+label:before{top:-2px;left:-2px;width:10px;height:18px;border-top:2px solid transparent;border-left:2px solid transparent;border-right:2px solid #06d19c;border-bottom:2px solid #06d19c;transform:rotate(40deg);backface-visibility:hidden;transform-origin:100% 100%}[type=checkbox]:checked:disabled+label:before{border-right:2px solid #eee;border-bottom:2px solid #eee}.landing__section{padding:24pt 0}.landing__section:nth-child(odd){background-color:#f7f7f7;border-top:1px solid #eee;border-bottom:1px solid #eee}.navbar{position:fixed;z-index:100;width:100%;background-color:#63aeff;transition:.7s}.navbar--nofixed{position:relative;z-index:3}.navbar__inner{display:flex;align-items:center;justify-content:space-between;height:60px;color:#fff;transition:.7s}.navbar__logo{font-size:1.325rem;transition:0;color:#fff;text-decoration:none}.navbar__menu{display:none}.navbar__menu--noMob{display:block}@media(min-width:992px){.navbar__menu{display:block}}.navbar__menu li{margin-left:4pt;backface-visibility:hidden;display:inline-block}@media(min-width:992px){.navbar__menu li{margin-left:16pt}}.navbar__menu a{color:#fff}@media(min-width:992px){.navbar__menu a:hover{opacity:1;text-decoration:none}.navbar__menu a:after{display:block;content:"";border-bottom:solid 1px #fff;transform:scaleX(0);transition:transform 250ms ease-in-out}.navbar__menu a:hover:after{transform:scaleX(1)}}.navbar__menu-mob{display:block}.navbar__menu-mob--noMob{display:none}@media(min-width:992px){.navbar__menu-mob{display:none}}.navbar--extended{background-color:transparent}.navbar--extended .navbar__inner{height:60px;color:#fff}/*!responsive-nav.js 1.0.39 by @viljamis*/.nav__mobile ul{margin:0;padding:0;width:100%;display:block;list-style:none;background-color:#333c44;color:#fff}.nav__mobile li{width:60%;margin-left:auto;margin-right:auto;padding:1em 0;display:block;border-bottom:1px solid rgba(255,255,255,.1)}.nav__mobile li:last-child{border-bottom:none}.js .nav__mobile{clip:rect(0 0 0 0);max-height:0;position:absolute;display:block;overflow:hidden;zoom:1}.nav__mobile.opened{max-height:9999px}.nav-toggle{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}@media(min-width:992px){.js .nav__mobile{position:relative}.js .nav__mobile.closed{max-height:none}.nav-toggle{display:none}}#toggle svg{height:1.2em;width:1.2em;vertical-align:middle}.hero{position:relative;width:100%;background-image:url(../images/evie_default_bg.jpeg);box-shadow:0 4px 11px rgba(124,146,169,.5);background-size:cover;background-position:50%;background-repeat:no-repeat;color:#fff}.hero__inner{position:relative;z-index:3}.hero__overlay{position:absolute;height:100%;width:100%;opacity:.8;z-index:1;background-color:#63aeff}.hero__overlay--gradient{background:linear-gradient(to right,#63aeff,#41c6ff)}.hero__overlay--gradientVertical{background:linear-gradient(to bottom,#63aeff,#41c6ff)}.hero__mask{position:absolute;height:100%;width:100%;background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDgwIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDgwIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9IjA2NzE0Yjk3LWFlYzgtNGI3ZS1iZjNkLTFlMjBmOTVmNjEyZSIgeTE9IjgwOS41IiB4Mj0iOTU4IiB5Mj0iODA5LjUiIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMSwgMCwgMCwgLTEsIDAsIDEwODIpIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iLjA1Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHRpdGxlPmhlcm88L3RpdGxlPjxyZWN0IGlkPSIwNTY3MDk1Yi0yY2Y3LTQ0MDctYjhhYi1lYzJhYmU1MmQ4MzAiIGRhdGEtbmFtZT0iJmx0O1BhdGg+IiB5PSI1NDUiIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjUzNSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iLjA1IiBzdHlsZT0iaXNvbGF0aW9uOmlzb2xhdGUiLz48cG9seWdvbiBpZD0iODJjYTlhNjEtYTBhMS00OWNjLTk4MDUtYTM1MzNjNjkzYmFkIiBkYXRhLW5hbWU9IiZsdDtQYXRoPiIgcG9pbnRzPSI5NTggNTQ1IDAgNTQ1IDAgMCA3NzAuOTYgMCA5NTggNTQ1IiBmaWxsPSJ1cmwoIzA2NzE0Yjk3LWFlYzgtNGI3ZS1iZjNkLTFlMjBmOTVmNjEyZSkiLz48L3N2Zz4=);background-size:cover;background-position:50%;background-repeat:no-repeat;opacity:.26;z-index:2}.hero__content{display:flex;align-items:center;justify-content:center;min-height:calc(100vh - 50px);padding:calc(92px)0;overflow:auto}.hero__content__inner{width:100%;max-width:600px;text-align:center}.hero__title{color:inherit;margin-bottom:1.25em}.hero__text{opacity:.85;line-height:1.7;text-align:left;font-size:1.1em;text-align:center}.hero .button{margin:12pt 8pt}.hero__button{color:#fff;border-color:#fff}@media(min-width:992px){.hero__button:hover{color:#e3e3e3;border-color:#e3e3e3}}.hero__sub{display:flex;justify-content:center;align-items:center;height:50px}.hero__sub__down{width:1rem;height:1rem;color:#666;transition:.7s;cursor:pointer}@media(min-width:992px){.hero__sub__down:hover{color:#63aeff}}#scrollToNext{transition:.7s}.hero--full .hero__content{min-height:100vh}.hero--full+.hero__sub{display:none}.steps{text-align:center;padding:16pt 0}@media(min-width:992px){.steps__inner{display:flex;justify-content:space-around}}.step{padding:16pt 0;text-align:center;width:100%;border-top:1px solid #eee;overflow:auto}.step:first-child{border-top:none}@media(min-width:992px){.step{border-top:none;width:auto}}.step__media{margin:16pt 0}@media(min-width:992px){.step__media{margin:32pt 0}}.step__image{max-height:100px;max-width:222px;margin-top:8pt;-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none}@media(min-width:600px){.step__image{max-width:none}}.step__text{max-width:36ch;text-align:left;margin-left:auto;margin-right:auto}.expanded{padding:72pt 0}.expanded__inner{display:flex;justify-content:space-between;align-items:center;flex-direction:column}@media(min-width:992px){.expanded__inner{flex-direction:row}}.expanded__media{order:1;text-align:center}@media(min-width:992px){.expanded__media{width:50%;flex-shrink:0;order:unset}}.expanded__content{order:2}@media(min-width:992px){.expanded__content{padding:0 16pt;width:50%;flex-shrink:0;order:unset}}.expanded:nth-child(even) .expanded__media{order:1}@media(min-width:992px){.expanded:nth-child(even) .expanded__media{order:1}}.expanded__image{width:90%;max-width:220px;padding:16pt 0}@media(min-width:992px){.expanded__image{max-width:280px}}.expanded__title{max-width:550px}.expanded__text{max-width:60ch}.cta{background:linear-gradient(to right,#63aeff,#41c6ff);color:#fff;padding:48pt 0;text-align:center}.cta--reverse{background:linear-gradient(to left,#63aeff,#41c6ff)}.cta--plain{background:#63aeff}.cta--secondary{background:#41c6ff}.cta__title{color:inherit}.cta__sub{opacity:.85;max-width:58ch;margin:16pt auto 24pt}.cta__sub--center{text-align:center}.footer{background-color:#fff;padding:36pt 0}.footer__inner{display:flex;justify-content:space-between;flex-direction:column}@media(min-width:600px){.footer__inner{flex-direction:row}}.footer__textLogo{flex-shrink:0;padding-right:16pt;display:block;cursor:pointer;color:#63aeff;font-size:1.225rem;min-width:33%;margin-bottom:1.5rem}@media(min-width:600px){.footer__textLogo{margin-bottom:0}}@media(min-width:992px){.footer__textLogo{min-width:25%;font-size:1.325rem}}.footer__data{display:flex;flex-grow:1;justify-content:space-between;padding-top:.25rem;flex-wrap:wrap;flex-direction:column;font-size:.9rem}@media(min-width:992px){.footer__data{flex-wrap:nowrap;flex-direction:row}}.footer__data__item{padding-bottom:.5rem;display:inline-block;margin-bottom:8pt}.footer__link{color:#63aeff;border-bottom:1px dotted #63aeff;padding-bottom:1pt;transition:.7s}@media(min-width:992px){.footer__link:hover{color:#fafafa;border-color:#fafafa}}.footer__row{margin-bottom:8pt}.footer--dark{background-color:#333c44}.footer--dark .footer__textLogo{color:#fff}.footer--dark .footer__inner{color:#d9d9d9}.footer--dark .footer__link{color:#d9d9d9;border-color:#d9d9d9}@media(min-width:992px){.footer--dark .footer__link:hover{color:#fff;border-color:#fff}}.auth{padding-top:102.66666667px}.auth__inner{min-height:calc( 100vh - 188px);display:flex;align-items:center;flex-direction:column;justify-content:center}@media(min-width:992px){.auth__inner{flex-direction:row}}@media(min-width:992px){.auth__media{width:50%;flex-shrink:0}}.auth__media img,.auth__media svg{max-height:150px;max-width:90%;-webkit-user-drag:none;-khtml-user-drag:none;-moz-user-drag:none;-o-user-drag:none;user-drag:none;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media(min-width:600px){.auth__media img,.auth__media svg{max-height:300px}}@media(min-width:992px){.auth__media img,.auth__media svg{max-height:400px}}.auth__auth{text-align:center}@media(min-width:992px){.auth__auth{width:50%;flex-shrink:0}}.auth__title{font-size:1.728em}.page__header{position:relative;color:#fff;box-shadow:0 4px 11px rgba(124,146,169,.5);width:100%}.page__header__inner{padding:66px 0 0;position:relative;z-index:3}.page__header__content{display:flex;align-items:center;justify-content:center;padding:32pt 0;overflow:auto}.page__header__content__inner{width:100%;max-width:66ch;text-align:center}.page__header__title{color:inherit;margin-bottom:1.25em}.page__header__text{opacity:.85;line-height:1.7;text-align:left}.page{padding:24pt 0}@media(min-width:992px){.page__inner{display:flex}}.page__menu{width:100%;position:relative}@media(min-width:992px){.page__menu{display:block;width:300px;flex-shrink:0}}.page__main{flex-grow:1}.page__main__title{margin-top:.75em}.page__image{max-width:100%}.app__header{position:relative;color:#fff;box-shadow:0 4px 11px rgba(124,146,169,.5);width:100%}.app__header__inner{padding:66px 0 0;position:relative;z-index:3}.app__header__content{display:flex;align-items:center;justify-content:center;padding:32pt 0;overflow:auto}.app__header__content__inner{width:100%;max-width:66ch;text-align:center}.app__header__title{color:inherit;margin-bottom:1.25em}.app__header__text{opacity:.85;line-height:1.7;text-align:left}.app{padding:calc( 81.33333333px)0}@media(min-width:992px){.app__inner{display:flex}}.app__menu{width:100%;position:relative}@media(min-width:992px){.app__menu{display:block;width:300px;flex-shrink:0}}.app__main{flex-grow:1}.app__main__title{margin-top:.75em}.app__image{max-width:100%}.vMenu{padding:0;list-style-type:none;display:flex;max-width:100%;flex-wrap:wrap;justify-content:space-between;border-bottom:1px solid #eee}@media(min-width:992px){.vMenu{display:inline-block;border-bottom:none}}.vMenu li{display:inline-block;margin-bottom:1em;width:48%;padding-left:16pt}@media(min-width:992px){.vMenu li{padding-left:0;display:block;width:auto}}.vMenu a{display:block}@media(min-width:992px){.vMenu a{display:inline-block;opacity:.85}.vMenu a:hover{opacity:1;color:#63aeff}.vMenu a:after{display:block;content:"";border-bottom:1px solid #63aeff;transform:scaleX(0);transition:transform 250ms ease-in-out}.vMenu a:hover:after{transform:scaleX(1)}}.vMenu>ul{margin-top:-.65em;padding-left:1.5em;margin-bottom:.75em}.vMenu>ul li{opacity:.85;font-size:.95em;margin-bottom:.25em}.vMenu>ul li:before{content:"-";margin-right:.5em}.vMenu--active{color:#63aeff}.vMenu--active:before{content:"\2014";margin-right:.333em}@media(min-width:992px){.vMenu--active{opacity:1;color:#63aeff}.vMenu--active:after{display:block;content:"";border-bottom:1px solid #63aeff;transform:none;transition:none}}.navbar__logo sup{font-size:.875rem;margin-left:2pt;opacity:.85}.hero__content__inner h6{color:#cecece;margin-top:2.2em;position:absolute;bottom:20px;text-align:center;width:100%;left:0;font-size:.7em}.hero__content__inner h6 a{font-size:1.1em;color:#fafafa}.docs__text__title{font-size:1.1em;color:#111}.docs__options{display:flex;margin:2.3em 0;justify-content:space-between}.docs__options a{color:#63aeff;border-bottom:1px solid #63aeff}@media(min-width:992px){.docs__options a{opacity:.85}.docs__options a:hover{opacity:1;color:#3a99ff;border-color:#3a99ff}}.page__main h3:first-child{margin-top:.6em}.colors{display:flex;width:100%;padding-bottom:1.3em;justify-content:space-between;flex-wrap:wrap}.colors__description{margin-bottom:0}.colorbox{width:70%;margin:0 auto}@media(min-width:600px){.colorbox{width:28%}}.colorbox__title{margin-bottom:.25em;font-size:.925em}.colorbox__preview{text-align:center;padding:7px 0;width:100%;display:block;text-transform:uppercase;color:#fff}.colorbox__preview--text{color:#666} \ No newline at end of file diff --git a/en/index.html b/en/index.html index 5278a2c7..a55b462e 100644 --- a/en/index.html +++ b/en/index.html @@ -1 +1 @@ -https://lomorage.com/ \ No newline at end of file +http://lomorage.com/ \ No newline at end of file diff --git a/en/sitemap.xml b/en/sitemap.xml index 93d5c810..2a0726f1 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -1,429 +1,340 @@ - + - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - 2020-05-17T13:43:40+00:00 - - - - - - https://lomorage.com/blog/2020/03/29/covid19/ - 2020-03-29T22:43:40+00:00 + http://lomorage.com/blog/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ - 2019-12-24T13:43:40+00:00 + http://lomorage.com/categories/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/external-access/ - - + http://lomorage.com/tags/container/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/install-frame/ + http://lomorage.com/tags/docker/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-android/ - - + http://lomorage.com/categories/docker/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-ios/ + http://lomorage.com/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-osx/ + http://lomorage.com/tags/lomorage/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-pi/ + http://lomorage.com/blog/2020/11/16/windows-docker/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-web/ + http://lomorage.com/tags/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/installation-win/ + http://lomorage.com/categories/blog/ + 2020-05-17T13:43:40+00:00 - https://lomorage.com/categories/blog/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ 2020-05-17T13:43:40+00:00 - 0 - https://lomorage.com/blog/ + http://lomorage.com/tags/mycloud/ 2020-05-17T13:43:40+00:00 - 0 - https://lomorage.com/categories/ + http://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ 2020-05-17T13:43:40+00:00 - 0 - - https://lomorage.com/contact/ - - + http://lomorage.com/tags/covid-19/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/tags/covid-19/ + http://lomorage.com/categories/dashboard/ 2020-03-29T22:43:40+00:00 - 0 - https://lomorage.com/categories/dashboard/ + http://lomorage.com/tags/dashboard/ 2020-03-29T22:43:40+00:00 - 0 - https://lomorage.com/tags/dashboard/ + http://lomorage.com/tags/raspberry-pi/ 2020-03-29T22:43:40+00:00 - 0 - https://lomorage.com/faq/ + http://lomorage.com/blog/2020/03/29/covid19/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/categories/faq/ + http://lomorage.com/categories/faq/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/features/ - - + http://lomorage.com/tags/flash-drive/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/tags/hard-disk/ + 2019-12-24T13:43:40+00:00 - https://lomorage.com/tags/flash-drive/ + http://lomorage.com/tags/restore/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/tags/hard-disk/ + http://lomorage.com/tags/secondary-backup/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/installation/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + 2019-12-24T13:43:40+00:00 - https://lomorage.com/ - 2020-05-17T13:43:40+00:00 - 0 - + http://lomorage.com/tags/usb-hub/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/buy/ - https://lomorage.com/tags/mycloud/ - 2020-05-17T13:43:40+00:00 - 0 + http://lomorage.com/contact/ - https://lomorage.com/compare/ + http://lomorage.com/faq/ - https://lomorage.com/tags/raspberry-pi/ - 2020-03-29T22:43:40+00:00 - 0 - - - - https://lomorage.com/tags/restore/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/tags/secondary-backup/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/tags/ - 2020-03-29T22:43:40+00:00 - 0 - + http://lomorage.com/compare/ - https://lomorage.com/tags/usb-hub/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ - 2020-05-17T13:43:40+00:00 - 0 + http://lomorage.com/survey/ - \ No newline at end of file + diff --git a/es/404.html b/es/404.html index a9de6082..b99deca9 100644 --- a/es/404.html +++ b/es/404.html @@ -27,7 +27,7 @@ - + @@ -69,7 +69,7 @@ - + @@ -177,7 +177,6 @@

    Sobre nosotros

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/es/categories/index.html b/es/categories/index.html index e0775e2d..51bdf206 100644 --- a/es/categories/index.html +++ b/es/categories/index.html @@ -27,7 +27,7 @@ - + @@ -243,7 +243,6 @@

    Sobre nosotros

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/es/categories/index.xml b/es/categories/index.xml index a4073eb1..5a73c1ef 100644 --- a/es/categories/index.xml +++ b/es/categories/index.xml @@ -1,14 +1,10 @@ - + Categories on Lomorage https://lomorage.com/es/categories/ Recent content in Categories on Lomorage Hugo -- gohugo.io - en-us - - - - + en-us - \ No newline at end of file + diff --git a/es/index.html b/es/index.html index 37fc119a..799e612e 100644 --- a/es/index.html +++ b/es/index.html @@ -27,7 +27,7 @@ - + @@ -166,8 +166,24 @@
    -

    Build your own 24x7 hours photo cloud service using Raspberry Pi in 5 minutes

    -

    Install customized image on Raspberry Pi 3 Model B+
    Download lomorage on App Store
    You are ready to go

    +

    Lomorage + - Your private secure Photo Cloud

    +

    Run your own Lomorage Service in your private network, backup and share with any devices
    Cross Platform, multiple accounts
    Support popular image/video formats
    Support heic, h265 and Live Photo

    +
    +
    + +
    +
    + +
    +
    +
    + +
    +
    +
    +

    Setup your own 24x7 hours photo cloud service in 5 minutes

    +

    1. Install customized image on Raspberry Pi 3 Model B+
    2. Download lomorage on App Store
    With two steps, you are all set

    @@ -178,6 +194,21 @@

    Build your own 24x7 hours photo cloud service using Raspberry Pi in 5 minute

    +
    +
    +
    +

    Lomorage + Orange Pi Zero = Private photo cloud within budget

    +

    A $19 Tiny Single Board Computer
    H2 Quad-core and 512MB DDR3 SDRAM
    Happy running resource efficient Lomorage Service

    +
    +
    + +
    +
    + +
    +
    +
    +
    @@ -303,6 +334,163 @@

    Federation

    +
    +
    +
    +
    +
    +

    Testimonials

    +
    + +

    + +

    + + + + + + + +
    + +
    +
    +
    + + + + @@ -334,7 +522,6 @@

    Sobre nosotros

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/es/index.xml b/es/index.xml index f96b1cbf..82ef327f 100644 --- a/es/index.xml +++ b/es/index.xml @@ -1,14 +1,10 @@ - + Lomorage https://lomorage.com/es/ Recent content on Lomorage Hugo -- gohugo.io - en-us - - - - + en-us - \ No newline at end of file + diff --git a/es/sitemap.xml b/es/sitemap.xml index dd367823..39aaa31c 100644 --- a/es/sitemap.xml +++ b/es/sitemap.xml @@ -1,10 +1,9 @@ - + https://lomorage.com/es/categories/ - 0 https://lomorage.com/es/ - 0 https://lomorage.com/es/tags/ - 0 - \ No newline at end of file + diff --git a/es/tags/index.html b/es/tags/index.html index 30ea705e..d7459511 100644 --- a/es/tags/index.html +++ b/es/tags/index.html @@ -27,7 +27,7 @@ - + @@ -243,7 +243,6 @@

    Sobre nosotros

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/es/tags/index.xml b/es/tags/index.xml index 7ea5f3fe..ab8cb96f 100644 --- a/es/tags/index.xml +++ b/es/tags/index.xml @@ -1,14 +1,10 @@ - + Tags on Lomorage https://lomorage.com/es/tags/ Recent content in Tags on Lomorage Hugo -- gohugo.io - en-us - - - - + en-us - \ No newline at end of file + diff --git a/external-access/index.html b/external-access/index.html index 3dd80154..1e194323 100644 --- a/external-access/index.html +++ b/external-access/index.html @@ -27,7 +27,7 @@ - + @@ -192,100 +192,55 @@

    - - -

    External Access Configuration

    - +

    External Access Configuration

    Currently, external access need some manual setup and some technical background, we will make the process more user-friendly later.

    -

    There are a few tunnel services available for free use, most tunnel services require a client application running on your device, and set up a connection to the service running by the service provider, and it will give a subdomain name for you to use, if you access the URL with that subdomain, the tunnel service will forward the traffic/request to the client application.

    -

    You can use localtunnel or ngrok, both are free tunnel services. localtunnel doesn’t require registration, and it can customize the subdomain, so it’s pre-installed in Lomorage Raspberry Pi image, while ngrok need register before use, and need pay to customize subdomain, but it’s more stable and zero dependencies.

    -

    If you are using Lomorage Raspberry Pi image, the login username is “pi” and password is “raspberry”

    -

    localtunnel

    -

    If you are using Windows or macOS, you need to install nodejs first and then install localtunnel. If you are using Lomorage Raspberry Pi image, then you can run command sudo localtunnel_install.sh to install localtunnel, and you can skip step 1 an step2.

    -

    1. Install nodejs

    -

    Download and install the binaries in your platform.

    -

    2. Install localtunnel

    -

    Open the terminal and type

    -
    npm install -g localtunnel
    -
    - -

    3. Run localtunnel

    - +

    3. Run localtunnel

    Assuming the preferred subdomain name is “allice” (you can choose your own subdomain), then open the terminal and type:

    -
    lt -s allice -p 8000 --print-requests
    -
    - -

    ”-s” specify the subdomain to use, “-p” specify the port forward to, Lomorage service is using “8000” by default, and “–print-requests” will output coming requests.

    - +

    “-s” specify the subdomain to use, “-p” specify the port forward to, Lomorage service is using “8000” by default, and “–print-requests” will output coming requests.

    And if you see the output without any error message, and print out something like:

    -
    your url is: https://allice.localtunnel.me
    -
    - -

    Then you can start open that URL in your browser, and if you see requests log printing in localtunnel output, then the tunnel is set up successfully.

    - +

    Then you can start open that URL in your browser, and if you see requests log printing in localtunnel output, then the tunnel is set up successfully.

    Sat Aug 31 2019 11:38:00 GMT-0700 (PDT) GET /
    -
    - - - +

    4. Config tunnel service on Lomorage APP

    -

    Open Lomorage APP on the phone, and in the settings tab, fill the tunnel service host, the host is like “allice.localtunnel.me”.

    - +

    eg:on Android Lomorgae App, go to Setting page. Fill the server address as https://allice.localtunnel.me, then fill the port 443 if you did not changed the default port. +If you fill the server address as http://allice.localtunnel.me, please fill the port 80, see below picture:

    +
    +

    + +

    +

    ngrok

    -

    1. Register

    -

    Sign up a ngrok account here, after that, it will show up a “Setup & Installation” page.

    -

    2. Download

    -

    ngrok is just one binary, you can download the version on your platform.

    - -

    If you are on Raspberry Pi, you can copy the link of Linux(ARM) on the “Setup & Installation” page, which is “https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip" for now, and download it via “wget”.

    - +

    If you are on Raspberry Pi, you can copy the link of Linux(ARM) on the “Setup & Installation” page, which is “https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip" for now, and download it via “wget”.

    wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
    -
    - -

    3. Installation

    - +

    3. Installation

    unzip and get the binary. You can double click on Windows or macOS to unzip it.

    -

    If you are using Raspberry Pi, use “unzip” command:

    -
    unzip ngrok-stable-linux-arm.zip
    -
    - -

    4. Connect your account

    - +

    4. Connect your account

    On the “Setup & Installation” page step 3, it shows the “authtoken”, you need open terminal to run ngrok to add the authtoken to the config file.

    -
    ./ngrok authtoken [your-authtoken-show-in-step-3]
    -
    - -

    5. Run ngrok

    - +

    5. Run ngrok

    Lomorage service is using “8000” by default, and ngrok can’t customize subdomain with free account. After runnig successfully, it will show the tunnel url, the subdomain is a random string which might change in next run.

    -
    ./ngrok http 8000
    -
    - - - +

    6. Config tunnel service on Lomorage APP

    -

    Open Lomorage APP on the phone, and in the settings tab, fill the tunnel service host, the host is like “2e30eea5.ngrok.io”.

    @@ -316,7 +271,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/faq/index.html b/faq/index.html index b05781e2..5b0fdff6 100644 --- a/faq/index.html +++ b/faq/index.html @@ -1,460 +1,328 @@ + + + + + + + + FAQ | Lomorage + + - - - - - - - - - - FAQ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    FAQ

    -
    -
    -
    + - -
    - - -
    - -
    - -
    - -
    - - - - -

    1. Why not just use cloud?

    - -

    We believe the digital assets should be taken care by ourselves, store locally, backup locally, that is the primary, and cloud backup is the tertiary backup, a good complementary, the price of existing cloud storage is too high, and some of the companies(Shoebox, Canon Irista) doing the business gradually shutdown the services, this is a money losing business, it’s not the efficient way to manage huge amount of assets centralized (flicker CEO’s open letter sent last year confirmed this), they have to either make it more expensive, or make you the product. Cloud service is convenient for the user, people don’t need to buy expensive hardware, don’t need to be the professionals to maintain that, don’t need to worry about the energy fee to keep it run 24x7, but things are changing, single board computers are getting cheaper, more powerful and more energy efficient, storage are getting cheaper with larger capacity, software are getting more intelligent, people are having more and more concerns about the privacy, it’s now viable to host the Photo service, your private cloud, at your own place.

    - -

    2. How about NAS?

    - -

    If you haven’t heard of NAS before, then NAS probably won’t be your best option. NAS is a general storage that can store everything, it also comes with application that can backup and management your photos and videos. Even though some NAS tried to make it easy to use, and make the operating system looks like Windows, but still it’s too complicate for non-technical users when they tried to understand what is. Take a look at the user guide it’s just way too much for a photo back and management.

    - -

    3. Any other similar solutions?

    - -

    Yes, there are other products which focuses on the vertical market, let user hosts the Photo service locally but simplify the setup and use.

    - -
      -
    • ibi - The Smart Photo Manager with 1TB storage ($119.99)
    • -
    • Monument Photo Management Device NO hard drive ($169.94)
    • -
    • Kwilt3 Personal Cloud Storage Device NO hard drive ($99)
    • -
    • CatDrive Your Private Shared Memory(out-of-service)
    • +
      +
      +
      + + +
      +
      - -

      4. Why Lomorage?

      - -

      Simple, we are not satisfied with existing solutions.

      - -
        -
      1. Cloud can be the tertiary complementary backup, not the primary, nor the secondary.

        - -
          -
        • We currently support redundancy backup locally
        • -
        • We plan to support remote backup (like backup to your parents’ Lomorage setup) and cloud backup like backblaze.
        • -
      2. - -
      3. Easy to setup, easy to use, easy to upgrade, zero maintenance.

        - -
          -
        • It only takes a few minutes to install the prebuild OS image on Raspberry Pi.
        • -
        • We support backup to Windows and MacOS as well with one single application.
        • -
        • software upgrade automatically.
        • -
        • System migrate automatically to guarantee compatibility.
        • -
      4. - -
      5. Software matters, it need to be solid to take care of those invaluable assets.

        - -
          -
        • We are the user, we eat our own dog food.
        • -
        • We release by quality not by date.
        • -
      6. - -
      7. It should be open, avoid any kind of lock down, the user should easily migrate to other systems, and should not get a electronic waste if the product is out of service.

        - -
          -
        • Media files are stored as it’s on your disk, original format, original resolution, exactly the same.
        • -
        • You don’t need format your hard drive to use it, and it supports all popular file systems.
        • -
        • Media files are organized in folders by “YYYY/MM/DD” structure on disk, you can easily import them to other systems/tools.
        • -
        • The setup use Raspberry Pi, even if you don’t use Lomorage, it’s still a single board computer you can use in tons of projects.
        • -
      8. - -
      9. More than backup and management, enjoy the memories with your families.

        - -
          -
        • How many times you open photo APP and take a look the old photos?
        • -
        • Have dozens of photo frames but hard to find enough space for them?
        • -
        • Have idle digital photo frame which requires copy/paste files, limited in storage?
        • -
        • Think about having a large screen digital signage in your living room which shows weather, news, digital arts and selected photos, and several other smaller digital photo frames in your bedroom or study room which shows your personal photos and videos. No more copy/paste, break the storage limit and use WiFi to retrieve photos from Lomorage.
        • -
        • Reuse any idle screens to build digital frames with wireless connection using Raspberry Pi, customize the content on your Phone.
        • -
        • share your kids photo to their grandparents’ digital frame.
        • -
      10. - -
      11. Stay connected while independent.

        - -
          -
        • You can have Lomorage setup at your home, and your parents or your friends can have their own setup. They are operating independently, but can talk to each other when necessary, and they can as backup for each other.
        • -
      12. -
      - -

      5. What is the cost?

      - -

      Lomorage is more cost efficient and more flexible compared with existing solutions, the software cost you nothing, and even get the hardware setup using Raspberry Pi 4 is cheaper compared with existing solutions. If you use the Windows or Mac application, it’s $0. There are some advanced features currently missing but are planned, and the basic backup feature is solid and stable for almost 2 years, no hidden fees, no lock down, no privacy concern, why not give it a try?

      - -

      See here for comparison with cloud service, NAS and other solutions.

      - -

      6. How comes the name “Lomorage”?

      - +

      How comes the name “Lomorage”?

      If you know what Lomography is, then “Lomorage” is just a combination of “Lomography” and “Storage”.

      - -

      7. What is the business model?

      - -

      This is a side project starts with 3 fathers seeking a better solution for the digital assets for the family and we are doing that in spare time, we have been doing this for two years. We started this with love and build it with love, and we use it in our daily life, we do spend a lot of time on that, but we know we probably will do this even nobody is paying us, because that is what we need, and the way we do this doesn’t cost us much, the only thing we paid for now it’s the apple developer account and a domain name, we don’t host the storage, we don’t offer the device, we host website and software download at github for free, so the answer why it’s free it’s because we can.

      - -

      Nothing is free, and need to make money to make it sustainable, we wish we can do that full time to get the features delivered faster, but we just can’t at this stage. We will be happy if people find the product useful and willing to spend money on that, for now the product is at early stage with basic features like backup and share, and we provide that as freeware. We don’t have to make user part of the products, and we care the privacy since day one because we are ourself the user.

      - -

      Peter Thiel said: “To build a successful startup, you have to be 10 times better than second best.”, and we also believe: to make money out of something, we need to build something that is valuable first.

      - -

      We are planning to release more advanced features (like advanced search, remote backup, digital frame etc), and will probably think about monetize some of them. And the digital photo frame as a dominate screen in the room, there can be multiple ones, for example, a big screen in living room and some smaller ones put on desks in bedroom or study room, there is also possibilities to monetize.

      - -

      8. How to setup redundancy backup?

      - +

      What is the cost of Lomorage?

      +

      Software is free, and user can buy hardware according to their needs, you can use Orange Pi Zero which will cost you less than $20. Check here for more details on cost for different configurations. No hidden fees.

      +

      How to setup redundancy backup?

      If you are running Lomorage service on macOS (Windows haven’t support yet), you can open the settings window of LomoAgent application, and set the redundancy backup there.

      -

      If you are running Lomorage service on Raspberry Pi, you can plugin in a new disk drive, and open iOS client APP, go to settings tab and set the redundancy backup there.

      - -

      9. What file systems supported?

      - +

      What file systems supported?

      If you are on Windows or macOS, then you can use whatever file system supported by Windows or macOS.

      -

      If you are on Raspberry Pi, it supports “vfat exfat ext2 ext3 ext4 hfsplus ntfs fuseblk”.

      - -

      10. Why the date time seems not correct?

      - +

      Why folders named with date time seem not correct on hard drive?

      The date time used to store on the system is in UTC, not the time of local timezone, the reason is that the photo can be taken in different timezones, and the user may travel or relocate to different timezones, to simplify the processing, we use UTC timestamp, and it can easily convert to different timezones on the APP.

      - -

      11. How to set a secondary backup?

      - +

      How to setup a secondary backup?

      There are several options to setup a secondary backup, check this blog for more details.

      - -

      12. Does Lomorage support backup edited file?

      - +

      Does Lomorage support backup edited file?

      On iOS, if photo is edited, system will store the original photo, the edited one, as well as the editing operations, Lomorage will store ONLY the edited photo. For edited video, system will store the video before last editing, the editing operations as well as the edited one, and Lomorage will ONLY store the edited video.

      -

      If you would like to store the file before editing, make sure you have backup the edited one first, and then you can revert the editing in Apple’s “Photos APP”, and then upload those files before editing.

      - -

      Notice: The old iOS client (<0.6.10) doesn’t support edited files, so if you have error when uploading the edited files, please delete old client and reinstall the new one, instead of upgrading to new version, to make sure the old problematic database is removed.

      - -

      13. What is background backup?

      - +

      What is background backup?

      Background backup means you don’t need to open Lomorage app to backup the assets.

      -

      Background backup on iOS is not expected to work the same way as iCloud, Apple restricts 3rd party tools to run in the background. Currently there is only two hacks to trigger Lomorage running in the background, one is background fetch, which might be triggered when system is idle, another one is triggered when significant location changes, that is why background backup requires location permission. Both won’t last long and can only run in background for a limited time.

      -

      Moving Lomorage app into background, the existing upload is still running in the background but the next upload has to wait either it’s back to foreground or the above two hack condition triggers the upload.

      - -
      - +

      How to recover from Raspbian boot failure?

      +

      Don’t worry, your Photo are stored on hard drive, and the database is backup to hard drive as well. You just need to recovery the backup database.

      +
        +
      1. plugin in your hard drive to PC, and you can find that assets.db in each user’s Lomorage home directory, they are exactly the same.
      2. +
      3. reinstall Lomorage Raspbian image.
      4. +
      5. attach hard drive to Raspberry Pi.
      6. +
      7. copy assets.db from one user’s Lomorage home directory on hard drive to /opt/lomorage/var/ on Raspberry Pi.
      8. +
      9. restart Lomorage service on Raspberry Pi: sudo service lomod restart.
      10. +
      +

      This applies to Armbian setup as well.

      +

      I forget password, how to reset?

      +

      Don’t worry, you can alway reset password by running /opt/lomorage/bin/lomoc user reset [user name] [password] at Linux. username is username reset for, and password is new password you like to use.

      +

      And if you are using Mac LomoAgent, you can reset user’s password in user list by clicking “Users” menu.

      +

      For Windows, you can download the command line tool here, open cmd +run below command line, replace “your_user_name” and “new_password_in_clear_txt”:

      +
      cd c:\Users\%username%\AppData\Local\lomoware\Lomoagent\lomod\
      +lomoc user reset –db “c:\Users\%username%\AppData\Local\lomoware\var\assets.db” your_user_name new_password_in_clear_txt
      +

      What can it do besides photo backup and management?

      +

      Lomorage is focus on photo backup and management and our current goal is to make it easy to use, stable and reliable. But we are using a customized open Linux platform, so if you need some of those features on expensive NAS, you should be able to install the alternatives, for example you can install Transmission for downloading, and Jellyfin for media center, samba share is enabled by default for backup other files.

      +

      What is the size of storage?

      +

      Lomorage relies on external storage and supports all types of hard drive and flash disk.

      +

      Can it connected with multiple hard drives?

      +

      Yes, but you need powered USB hub to support multiple hard drives.

      +

      Can I use spare hard drive?

      +

      Yes, you don’t need reformat the disk to use Lomorage, and it supports all major file systems(FAT32, NTFS, EXT etc).

      +

      Does it support hard drive sleep?

      +

      Yes, once no activity on hard drive, it goes to sleep mode automatically, and will wake up once you access the hard drive。

      +

      How to install?

      +

      Connect hard drive via USB, connect ethernet, power on, and download Lomorage APP.

      +

      How to view the backup photos?

      +

      You can use Lomorage APP on iOS or Android, or you can use the Web APP, or you can access via samba, or even access the hard drive directly. We also have Android TV APP.

      +

      Does it support remote access?

      +

      Yes, you can use 3rd party reverse proxy tunnel service(like ngrok), or you can set port mapping on router.

      +

      Does it support export from backup to Phone?

      +

      Yes, currently works on iOS, you can “Save” those backups locally, and local will keep a copy, if you save it locally on multiple devices, you will have multiple copies and delete the copy won’t delete the original backup.

      +

      In case you haven’t found the answer to your question please feel free to contact us, we will be happy to help you.

      - -
      - -
      - -
      - - -
      - - - -
      - - -
      -
      - - -
      -

      About us

      - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
      - - - -
      - - - -
      - - - - -
      - -
      - - - - - - - - - - - - -
    + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    - - - - - - - + - - - + - + +
    + + + + + +
    - + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 00000000..f35cce94 Binary files /dev/null and b/favicon.ico differ diff --git a/features/index.html b/features/index.html index 9f78fee2..83f16de6 100644 --- a/features/index.html +++ b/features/index.html @@ -27,7 +27,7 @@ - + @@ -192,75 +192,54 @@

    Feature Highlight

    - - - - - -

       Privacy Matters

    - +

       Privacy Matters

    Lomorage is a private cloud service which runs on your private network, which gives you the convenience of cloud-based photo backup service, but without the concern of leaking privacy. We are not, and will never collect ANY user privacy data.

    -

    You can also set up multiple Lomorage services in your private network, for different family members, which are completely isolated with each other.

    - - -

       Cross-Platform

    - +

       Cross-Platform

    There is no OS limitation for running the Lomorage service, you can backup your photos on MAC, Windows and Raspberry Pi, and we will add other OS support upon user’s request. We have iOS, Android and Web clients.

    - -

       Easy Setup

    - +

       Easy Setup

    We are not building another NAS system, so if you want to backup and manage your photos, but get scared by the complicated setup process of NAS, just forget about the jargons and take easy. Lomorage setup is guaranteed to be within minutes. Check here for the installation guide.

    - -

       Keep Original Size

    - +

       Keep Original Size

    The photo and video are stored as the original size on your disk, it will be exactly the same with the one taken on your phone, EXIF meta data (like location, date time) is preserved. Live photo is also supported, and the image and video clips are stored together as a zip file.

    - -

      No Lockin

    - +

      No Lockin

    Unlike some cloud-based file storage which split the file into smaller segments, Lomorage will store the photo file as it’s on the file system, we are not using any proprietary format.

    -

    Unlike some NAS system which requires user to format the disk before using it as backup storage, with Lomorage, you can just plug in a spare disk with popular file system, it just works, you won’t be locked to use specific file system, you can just use the file system you normally use, like FAT32/NTFS in Windows, thus you don’t need 3rd party software to access the backup file.

    - -

      Near-zero Maintenance

    - +

      Near-zero Maintenance

    Cloud service hides the complexity of the system since Lomorage is a service deployed at the user’s network, we aim to provide the same user experience with the cloud service, to minimize user intervention and maintenance.

    -
      -
    • self upgrade: Lomorage service can upgrade to the newest version when available.

    • - -
    • auto migration: Migration will be done automatically to make sure nothing breaks after the upgrade.

    • - -
    • consistency check: consistency check will be scheduled regularly to make sure no abnormal in the system.

    • +
    • +

      self upgrade: Lomorage service can upgrade to the newest version when available.

      +
    • +
    • +

      auto migration: Migration will be done automatically to make sure nothing breaks after the upgrade.

      +
    • +
    • +

      consistency check: consistency check will be scheduled regularly to make sure no abnormal in the system.

      +
    - - -

      Flexible Backup Options

    - +

      Flexible Backup Options

    Since most people will offload the phone storage, so having those backup once is not enough, Lomorage will provide several backup options:

    -
      -
    • Local redundancy backup: you can backup multiple copies locally, just plugin in more disks and set up the backup on your phone.

    • - -
    • remote backup: you can backup to other Lomorage services setup by other family members or friends, with encryption. This is on the backlog, and plan to support this year.

    • +
    • +

      Local redundancy backup: you can backup multiple copies locally, just plugin in more disks and set up the backup on your phone.

      +
    • +
    • +

      remote backup: you can backup to other Lomorage services setup by other family members or friends, with encryption. This is on the backlog, and plan to support this year.

      +
    - - -

      Share Your Moments

    - +

      Share Your Moments

    You can share moments with your family members, and create groups to share with multiple members at one time. It won’t occupy your disk space so you don’t need to worry about the disk usage on your phone.

    - -

      Enjoy Your Memories

    - +

      Enjoy Your Memories

    You can connect monitor with Raspberry Pi and use that as digital photo frame, and you can setup multiple digital photo frames using Raspberry Pi zero w and access your digital assets via WiFi. No need to worries about the storage of digital frame, no need file transfer any more.

    @@ -291,7 +270,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/images/evie_default_bg.jpeg b/images/evie_default_bg.jpeg new file mode 100644 index 00000000..ede415a0 Binary files /dev/null and b/images/evie_default_bg.jpeg differ diff --git a/images/hero_sm.png b/images/hero_sm.png new file mode 100644 index 00000000..af3ce4e2 Binary files /dev/null and b/images/hero_sm.png differ diff --git a/images/tet.svg b/images/tet.svg new file mode 100644 index 00000000..b10be207 --- /dev/null +++ b/images/tet.svg @@ -0,0 +1 @@ +test \ No newline at end of file diff --git a/images/together.svg b/images/together.svg new file mode 100644 index 00000000..8b9fb28e --- /dev/null +++ b/images/together.svg @@ -0,0 +1 @@ +together \ No newline at end of file diff --git a/images/undraw_browser.svg b/images/undraw_browser.svg new file mode 100644 index 00000000..2fa0339f --- /dev/null +++ b/images/undraw_browser.svg @@ -0,0 +1 @@ +browser stats \ No newline at end of file diff --git a/images/undraw_creation.svg b/images/undraw_creation.svg new file mode 100644 index 00000000..fb4ebbfa --- /dev/null +++ b/images/undraw_creation.svg @@ -0,0 +1 @@ +creation process \ No newline at end of file diff --git a/images/undraw_design.svg b/images/undraw_design.svg new file mode 100644 index 00000000..50d74a60 --- /dev/null +++ b/images/undraw_design.svg @@ -0,0 +1 @@ +organizing projects1 \ No newline at end of file diff --git a/images/undraw_designer.svg b/images/undraw_designer.svg new file mode 100644 index 00000000..4e18b960 --- /dev/null +++ b/images/undraw_designer.svg @@ -0,0 +1 @@ +designer \ No newline at end of file diff --git a/images/undraw_elements.svg b/images/undraw_elements.svg new file mode 100644 index 00000000..19a8fdcc --- /dev/null +++ b/images/undraw_elements.svg @@ -0,0 +1 @@ +control panel1 \ No newline at end of file diff --git a/images/undraw_everywhere.svg b/images/undraw_everywhere.svg new file mode 100644 index 00000000..41f61f40 --- /dev/null +++ b/images/undraw_everywhere.svg @@ -0,0 +1 @@ +real-time sync \ No newline at end of file diff --git a/images/undraw_fans.svg b/images/undraw_fans.svg new file mode 100644 index 00000000..cec44400 --- /dev/null +++ b/images/undraw_fans.svg @@ -0,0 +1 @@ +fans11000099 \ No newline at end of file diff --git a/images/undraw_frameworks.svg b/images/undraw_frameworks.svg new file mode 100644 index 00000000..3f49b258 --- /dev/null +++ b/images/undraw_frameworks.svg @@ -0,0 +1 @@ +JavaScript Frameworks \ No newline at end of file diff --git a/images/undraw_hello_aeia.svg b/images/undraw_hello_aeia.svg new file mode 100644 index 00000000..2b690b9f --- /dev/null +++ b/images/undraw_hello_aeia.svg @@ -0,0 +1 @@ +hello \ No newline at end of file diff --git a/images/undraw_responsive.svg b/images/undraw_responsive.svg new file mode 100644 index 00000000..1dd8f95c --- /dev/null +++ b/images/undraw_responsive.svg @@ -0,0 +1 @@ +responsive \ No newline at end of file diff --git a/images/undraw_selfie.svg b/images/undraw_selfie.svg new file mode 100644 index 00000000..1430e8f4 --- /dev/null +++ b/images/undraw_selfie.svg @@ -0,0 +1 @@ +selfie1 \ No newline at end of file diff --git a/images/undraw_tabs.svg b/images/undraw_tabs.svg new file mode 100644 index 00000000..168a3012 --- /dev/null +++ b/images/undraw_tabs.svg @@ -0,0 +1 @@ +tabs \ No newline at end of file diff --git a/img/blog/raspberrypi-hd/power-hub-adafruit.jpg b/img/blog/raspberrypi-hd/power-hub-adafruit.jpg new file mode 100644 index 00000000..7535f3db Binary files /dev/null and b/img/blog/raspberrypi-hd/power-hub-adafruit.jpg differ diff --git a/img/blog/win-docker/docker.png b/img/blog/win-docker/docker.png new file mode 100644 index 00000000..7eb17873 Binary files /dev/null and b/img/blog/win-docker/docker.png differ diff --git a/img/blog/win-docker/web-client.png b/img/blog/win-docker/web-client.png new file mode 100644 index 00000000..704152dc Binary files /dev/null and b/img/blog/win-docker/web-client.png differ diff --git a/img/blog/win-docker/win-docker-banner.png b/img/blog/win-docker/win-docker-banner.png new file mode 100644 index 00000000..588e2b50 Binary files /dev/null and b/img/blog/win-docker/win-docker-banner.png differ diff --git a/img/buy/backup-en.png b/img/buy/backup-en.png new file mode 100644 index 00000000..280d56ac Binary files /dev/null and b/img/buy/backup-en.png differ diff --git a/img/buy/backup.png b/img/buy/backup.png new file mode 100644 index 00000000..3f08edc3 Binary files /dev/null and b/img/buy/backup.png differ diff --git a/img/buy/local-en.png b/img/buy/local-en.png new file mode 100644 index 00000000..31b9a08b Binary files /dev/null and b/img/buy/local-en.png differ diff --git a/img/buy/local.png b/img/buy/local.png new file mode 100644 index 00000000..bebaca5f Binary files /dev/null and b/img/buy/local.png differ diff --git a/img/buy/lomorage-mini.png b/img/buy/lomorage-mini.png new file mode 100644 index 00000000..9c3ebf3f Binary files /dev/null and b/img/buy/lomorage-mini.png differ diff --git a/img/buy/lomorage-setup.png b/img/buy/lomorage-setup.png new file mode 100644 index 00000000..8f51dc96 Binary files /dev/null and b/img/buy/lomorage-setup.png differ diff --git a/img/buy/search-en.png b/img/buy/search-en.png new file mode 100644 index 00000000..1c345581 Binary files /dev/null and b/img/buy/search-en.png differ diff --git a/img/buy/search.png b/img/buy/search.png new file mode 100644 index 00000000..56cd0709 Binary files /dev/null and b/img/buy/search.png differ diff --git a/img/buy/settings-en.png b/img/buy/settings-en.png new file mode 100644 index 00000000..772a7b7a Binary files /dev/null and b/img/buy/settings-en.png differ diff --git a/img/buy/settings.png b/img/buy/settings.png new file mode 100644 index 00000000..a5b96130 Binary files /dev/null and b/img/buy/settings.png differ diff --git a/img/buy/web-gallery-en.png b/img/buy/web-gallery-en.png new file mode 100644 index 00000000..92c3b597 Binary files /dev/null and b/img/buy/web-gallery-en.png differ diff --git a/img/buy/web-gallery.png b/img/buy/web-gallery.png new file mode 100644 index 00000000..f7cb945d Binary files /dev/null and b/img/buy/web-gallery.png differ diff --git a/img/buy/web-upload-en.png b/img/buy/web-upload-en.png new file mode 100644 index 00000000..6adabdd3 Binary files /dev/null and b/img/buy/web-upload-en.png differ diff --git a/img/buy/web-upload.png b/img/buy/web-upload.png new file mode 100644 index 00000000..f99ef524 Binary files /dev/null and b/img/buy/web-upload.png differ diff --git a/img/carousel/All-in-one-en.png b/img/carousel/All-in-one-en.png new file mode 100644 index 00000000..9931bac2 Binary files /dev/null and b/img/carousel/All-in-one-en.png differ diff --git a/img/carousel/All-in-one.png b/img/carousel/All-in-one.png new file mode 100644 index 00000000..a8c371ea Binary files /dev/null and b/img/carousel/All-in-one.png differ diff --git a/img/carousel/orangepizero.jpg b/img/carousel/orangepizero.jpg new file mode 100644 index 00000000..a8032122 Binary files /dev/null and b/img/carousel/orangepizero.jpg differ diff --git a/img/data-storage-svgrepo-com.svg b/img/data-storage-svgrepo-com.svg new file mode 100644 index 00000000..fe996933 --- /dev/null +++ b/img/data-storage-svgrepo-com.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/delivery-truck-free-svgrepo-com.svg b/img/delivery-truck-free-svgrepo-com.svg new file mode 100644 index 00000000..2f0bc6d0 --- /dev/null +++ b/img/delivery-truck-free-svgrepo-com.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/family-svgrepo-com.svg b/img/family-svgrepo-com.svg new file mode 100644 index 00000000..755cea12 --- /dev/null +++ b/img/family-svgrepo-com.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/file-storage-svgrepo-com.svg b/img/file-storage-svgrepo-com.svg new file mode 100644 index 00000000..4d681807 --- /dev/null +++ b/img/file-storage-svgrepo-com.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/hard-disk-svgrepo-com.svg b/img/hard-disk-svgrepo-com.svg new file mode 100644 index 00000000..d374a282 --- /dev/null +++ b/img/hard-disk-svgrepo-com.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/installation/android/external_setting.jpg b/img/installation/android/external_setting.jpg new file mode 100644 index 00000000..b110b20a Binary files /dev/null and b/img/installation/android/external_setting.jpg differ diff --git a/img/installation/armbian.svg b/img/installation/armbian.svg new file mode 100644 index 00000000..1aa1329e --- /dev/null +++ b/img/installation/armbian.svg @@ -0,0 +1,71 @@ + + + + + + + + diff --git a/img/installation/ubuntu.svg b/img/installation/ubuntu.svg new file mode 100644 index 00000000..0ec1388c --- /dev/null +++ b/img/installation/ubuntu.svg @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/img/installation/windows-lomo-agent-zh.png b/img/installation/windows-lomo-agent-zh.png new file mode 100644 index 00000000..2390e7f7 Binary files /dev/null and b/img/installation/windows-lomo-agent-zh.png differ diff --git a/img/installation/windows-lomo-agent.png b/img/installation/windows-lomo-agent.png index dec6529c..d516c1b7 100644 Binary files a/img/installation/windows-lomo-agent.png and b/img/installation/windows-lomo-agent.png differ diff --git a/img/links/appinn.png b/img/links/appinn.png new file mode 100644 index 00000000..fb11570f Binary files /dev/null and b/img/links/appinn.png differ diff --git a/img/links/canalapps.png b/img/links/canalapps.png new file mode 100644 index 00000000..46e5e93b Binary files /dev/null and b/img/links/canalapps.png differ diff --git a/img/links/futurezone.png b/img/links/futurezone.png new file mode 100644 index 00000000..27a620bb Binary files /dev/null and b/img/links/futurezone.png differ diff --git a/img/links/iplaysoft.png b/img/links/iplaysoft.png new file mode 100644 index 00000000..994aa3c1 Binary files /dev/null and b/img/links/iplaysoft.png differ diff --git a/img/links/medium.png b/img/links/medium.png new file mode 100644 index 00000000..9ada607b Binary files /dev/null and b/img/links/medium.png differ diff --git a/img/platform-svgrepo-com.svg b/img/platform-svgrepo-com.svg new file mode 100644 index 00000000..45f062a0 --- /dev/null +++ b/img/platform-svgrepo-com.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/raw-svgrepo-com.svg b/img/raw-svgrepo-com.svg new file mode 100644 index 00000000..e75179c5 --- /dev/null +++ b/img/raw-svgrepo-com.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/security-svgrepo-com.svg b/img/security-svgrepo-com.svg new file mode 100644 index 00000000..7e243fb0 --- /dev/null +++ b/img/security-svgrepo-com.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/undraw-devices.svg b/img/undraw-devices.svg new file mode 100644 index 00000000..6068bd7a --- /dev/null +++ b/img/undraw-devices.svg @@ -0,0 +1 @@ +Devices \ No newline at end of file diff --git a/index.html b/index.html index 6267ca87..5ef8fbb9 100644 --- a/index.html +++ b/index.html @@ -1,460 +1,388 @@ + + + + + + + + + Home | Lomorage + + - - + + - + + + + - - - - - Lomorage - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + - - - + - + + - + + + - - - - - - - - - - + - - +
    +
    +
    +
    +
    +
    + +
    +
    +
    + + + +
    +
    +
    +

    What is Lomorage?

    +

    Lomorage enables you to backup photos / videos from any devices to your self-hosted server, and intelligently manages these personal assets via AI. Run the Lomorage server at your home, download mobile client to save the memories, and enjoy the moments.

    +
    +
    +
    + + +
    +
    + +
    +
    +
    +
    Automatic Back Up
    +

    Automatic Back Up

    +

    Automatically backs up all your photos from smartphones and computers to your own hard drive; Redundancy backup lowers the risk of losing data. No rate limits.

    +
    +
    +
    + + + +
    +
    +
    +
    Quality
    +

    Original Quality

    +

    Whether it’s a 50 megapixel raw photo or hour long 4K HD video, back up your high resolution content as it is without any modification. What you take is what is saved.

    +
    +
    +
    + + + +
    +
    +
    +
    Intelligent Organization
    +

    Intelligent Organization

    +

    Use AI to sort your photos by date, location, person, scene; search by texts in photos; detect similar photos; remove duplicated assets; history of today reminder.

    +
    +
    +
    + - - - - - -
    - -
    - - - - - - - - -
    -
    - - -
    -
    - -
    -
    -
    - -
    -

    Privacy

    -

    Your photo will store locally on your own device with the service running locally, nobody can access your assets without your permission.

    -
    -
    - - - -
    -
    -
    - -
    -

    Backup

    -

    Backup your photos and videos on the phone to your private storage while keeping the original resolution, supporting all formats including live photo, with no monthly fees.

    -
    -
    - - - -
    -
    -
    - -
    -

    Share

    -

    Create accounts for your family, create different groups and share moments with them securely.

    -
    -
    - + +
    +
    + +
    +
    +
    +
    Unlimited Accounts
    +

    Unlimited Accounts

    +

    One server for all family members while each member has its own account, no account number limits. Share becomes easy.

    +
    +
    + + + +
    +
    +
    +
    Your Photos, Wherever You Are
    +

    Your Photos, Wherever You Are

    +

    Browse ALL your photos and videos from apps on your Android, iOS, Chromecast, Fire TV device, or a web browser; No need to worry about the phone space.

    +
    +
    +
    + + + +
    +
    +
    +
    It's Your Data
    +

    It’s Your Data

    +

    No tracking. We believe in privacy is super important for everyone, and anything we might collect (crash logs, discovery, etc.) is opt-in only. no vendor lock in.

    +
    +
    +
    + + +
    - - - -
    -
    - -
    -
    -
    - -
    -

    Cross Platform

    -

    Our backend service is cross platform, you can easily set it up on Single Board Computer like Raspberry Pi with our customized image, and keep it running 7x24 with extremly low power consumption.

    -
    -
    - - - -
    -
    -
    - -
    -

    Disaster Recovery

    -

    Replicate your valuable assets to different hard drivers locally and remotely to compliment your disaster recovery plan.

    -
    -
    - - - -
    -
    -
    - -
    -

    Federation

    -

    You and your friends can run different instances of services, but they don’t need to be isolate islands, they can still share photos and videos with each other regardless of where their account is.

    -
    -
    - +
    + +
    +
    +
    +
    Flexible Storage
    +

    Flexible Storage

    +

    All major file systems(FAT32, NTFS, EXT etc) are supported; Choose your own hard drive, no re-format needed; Up to 16T hard drive is supported.

    +
    +
    +
    + + + +
    +
    +
    +
    Cross Platform
    +

    Cross Platform

    +

    Native iOS, Android client and Web client. Multiple platform server software (MAC/Linux/Windows) can let you choose any devices as self-host server.

    +
    +
    +
    + + + +
    +
    +
    +
    Yes, it really costs nothing
    +

    Yes, it really costs nothing

    +

    No costs, no hidden fees. Setup on any old laptops, servers, or Single Board Computers, reuse your hard drives, install free Lomorage server software and client APP, then you are ready to go.

    +
    +
    +
    - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - +
    +
    -
    - - -
    - -
    - - -
    - - +
    +
    +
    +

    +

    + Download Now +
    +
    +
    + - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/index.xml b/index.xml index ef71f505..63d6e661 100644 --- a/index.xml +++ b/index.xml @@ -1,182 +1,98 @@ - + - Lomorage - https://lomorage.com/ - Recent content on Lomorage + Home on Lomorage + http://lomorage.com/ + Recent content in Home on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + Move MyCloud to Lomorage - https://lomorage.com/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the + http://lomorage.com/blog/2020/05/17/import_my_cloud/ + <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - <strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> +keep the computer on to copy the files to MyCloud disk. +<strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - - https://lomorage.com/external-access/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/external-access/ - External Access Configuration Currently, external access need some manual setup and some technical background, we will make the process more user-friendly later. -There are a few tunnel services available for free use, most tunnel services require a client application running on your device, and set up a connection to the service running by the service provider, and it will give a subdomain name for you to use, if you access the URL with that subdomain, the tunnel service will forward the traffic/request to the client application. - - - - - https://lomorage.com/install-frame/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/install-frame/ - Table of Contents Install Lomo-frame Setup Lomo-frame Quickstart Turn Frame ON/OFF Stop/Start lomo-frame Service Schedule Frame ON/OFF time Playback Order Customize playlist Playback Media Type Keyboard control Setup multiple digital frame 1. Install Lomo-frame 2. Setup WiFi connection 3. Check IP address of primary Raspberry Pi 4. Find the mount directory on primary Raspberry Pi 5. Mount on Raspberry Pi zero w 6. Reboot Install Lomo-frame Lomo-frame only supports on Raspberry Pi, Windows/Mac or the docker version is not supported - - - - - https://lomorage.com/installation-android/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/installation-android/ - Install Lomorage App in Android phone Currently you can install the app on Android phone, the minimal version is 7.1. -Currently it is dev-beta version, will publish to Google Play Store soon -Click below icon to download. - -After launching Lomorage, it will take a few minutes to import all your photos and videos on phone in the first time. -Then you can click the right up more menu to Manage account. - - - - - https://lomorage.com/installation-ios/ + Buy + http://lomorage.com/buy/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/installation-ios/ - Install Lomorage iOS client You can install the application on either iPad or iPhone, the minimum iOS version required in 10.3. - -- After launching Lomorage, it should be able to discover the Lomorage service running in the same network. If you have multiple Lomorage service instances running, those will be listed and you can choose one to use. If Lomorage service can&rsquo;t be discovered automatically, you can discover the service via QRCode Scanning when using Windows or MacOS LomoAgent (open settings in LomoAgent to show the QRCode), or you can input the IP address and port manually. - - - - - https://lomorage.com/installation-osx/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/installation-osx/ - Install Lomorage Service on MacOS 1. Click the link below to download Lomorage Service Application. -macOS 2. Double click &ldquo;LomoAgent.dmg&rdquo; to start installation, and follow the steps below to finish the installation. - 3. Run LomoAgent Application,please allow network access for LomoAgent if firewall is triggered. -4. After launch the Lomorage application,You need to set the &ldquo;Home directory&rdquo; before using Lomorage,&rdquo;Home directory&rdquo; is used to save the photos and videos uploading from your phone。You can also set up a backup directory which served as redundancy backup. - - - - - https://lomorage.com/installation-pi/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/installation-pi/ - Table of Contents Install Lomorage Service on Raspberry Pi Install with prebuild OS image Docker installation 1. Install Docker on Raspberry Pi 2. Get Docker image 3. Run Apt installation 1. Add lomoware source 2. Install Lomorage 3. Change mount directory and username if needed 4. Run Install Lomorage Service on Raspberry Pi To run on Raspberry Pi, you need to order a Raspberry Pi, we have tested the image the following models: - - - - - https://lomorage.com/installation-web/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/installation-web/ - Install Lomorage Web client You can use Lomorage Web client to upload photos/videos from desktop/laptop using browser, and you can use the gallery to view the photos/videos stored in Lomorage. -If you are using Lomorage Service in MacOS, then you can just click &ldquo;import&rdquo; menu item in LomoAgent Application, and it will open the web application. -If you are using Lomorage Service in Raspberry Pi, then you can use the following command to install Lomorage Web client on your raspberry Pi: - - - - - https://lomorage.com/installation-win/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/installation-win/ - Install Lomorage Service on Windows 1. Click the link below to download Lomorage Service Application. -Windows 2. double click &ldquo;lomoagent.msi&rdquo; to start installation. If Windows Defender shows &ldquo;lomoagent.msi&rdquo; as unknown application, please follow the steps below to allow it to run. - 3. Follow the wizard to finish the installation, in the End-User License Agreement, please checked the box as below. - 4. Now you should see the lomoagent icon on your desktop, you can double click to start the lomoagent. + http://lomorage.com/buy/ + Lomorage - Save the moments, enjoy the memories We build Lomorage with love of the family, and we care about privacy, we are the users of Lomorage, and we constantly improve it with user&rsquo;s feedback. +Online store coming soon 1. Pain points So many photos in Phone, how to backup? Don&rsquo;t have time to clean up the photo, the backup on hard drive is everywhere with duplicates? Getting used to take screenshot for documents, but can&rsquo;t find it via text search? Contact - https://lomorage.com/contact/ + http://lomorage.com/contact/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/contact/ + http://lomorage.com/contact/ We are here to help you Report problems, having new requirements? we are glad to hear from you, that will help us to polish the products. You can also join our slack channel. FAQ - https://lomorage.com/faq/ + http://lomorage.com/faq/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/faq/ - 1. Why not just use cloud? 2. How about NAS? 3. Any other similiar solutions? 4. Why Lomorage? 5. What is the cost? 6. How comes the name &ldquo;Lomorage&rdquo;? 7. What is the business model? 8. How to setup redundancy backup? 9. What file systems supported? 10. Why the date time seems not correct? 11. How to set a secondary backup? 12. Does Lomorage support backup edited file? 13. + http://lomorage.com/faq/ + How comes the name &ldquo;Lomorage&rdquo;? What is the cost of Lomorage? How to setup redundancy backup? What file systems supported? Why folders named with date time seem not correct on hard drive? How to setup a secondary backup? Does Lomorage support backup edited file? What is background backup? How to recover from Raspbian boot failure? I forget password, how to reset? What can it do besides photo backup and management? - Feature Highlight - https://lomorage.com/features/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/features/ - -- &nbsp;&nbsp;&nbsp;Privacy Matters Lomorage is a private cloud service which runs on your private network, which gives you the convenience of cloud-based photo backup service, but without the concern of leaking privacy. We are not, and will never collect ANY user privacy data. -You can also set up multiple Lomorage services in your private network, for different family members, which are completely isolated with each other. -&nbsp;&nbsp;&nbsp;Cross-Platform There is no OS limitation for running the Lomorage service, you can backup your photos on MAC, Windows and Raspberry Pi, and we will add other OS support upon user&rsquo;s request. - - - - Installation Guide - https://lomorage.com/installation/ + Price Comparison + http://lomorage.com/compare/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/installation/ - Installation Guide 1. Overview To use Lomorage, you need to run the Lomorage service in your local network, either on Windows, OSX or Raspberry Pi. And then you need to download the client APP at the APP store. Once you run the Lomorage service, the client APP is supposed to find the service running automatically with zero configuration, then you can upload photos on the Phone. -2. Install Lomorage Service The first step is to set up the Lomorage service. + http://lomorage.com/compare/ + Price Comparison The following comparison only considered the biggest selling point for each category, and assuming the main purpose is photo backup and photo management, so if you need more than that, just go with NAS, or get Orange Pi Zero or other single board computer to DIY yourself if you are expert. +We are not against cloud storage, it can be as good backup for local storage, and we suggest user keep the local copy. - Price Comparison - https://lomorage.com/compare/ + Survey + http://lomorage.com/survey/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/compare/ - Price Comparison The following comparison only considered the biggest selling point for each category, and assuming the main purpose is photo backup and photo management, so if you need more than that, just go with NAS, or get Raspberry Pi 4 or other single board computer to DIY yourself if you are expert. -For example, the cloud service has different price by storage size, there are other features but it actually makes no difference with different storage sizes; And for the self hosting devices, the price differs by the hardware configurations, there are other features but it actually makes no difference with different configurations. + http://lomorage.com/survey/ + loading… - \ No newline at end of file + diff --git a/install-frame/index.html b/install-frame/index.html index 9d39e94c..45b0cd7f 100644 --- a/install-frame/index.html +++ b/install-frame/index.html @@ -27,7 +27,7 @@ - + @@ -192,14 +192,10 @@

    - - -

    Table of Contents

    - +

    Table of Contents

    - + + + +

    Install Lomo-frame

    -

    Lomo-frame only supports on Raspberry Pi, Windows/Mac or the docker version is not supported

    -

    If you install the latest Lomorage Raspberry Pi OS image, you should already have the Lomo-frame application installed in that image.

    -

    Otherwise, if your OS image is before 2020-03-13 (“image_2020-03-13-lomorage-lite.zip “), or you don’t use Lomorage Raspberry Pi OS image, you can run the following command to install it (assuming you have installed Lomorage Service Application so that you have already added “gpg.key”, if not you can check here).

    -
    sudo apt update
     sudo apt install lomo-frame
    -
    - -

    Setup Lomo-frame

    - +

    Setup Lomo-frame

    You have several options:

    -
      -
    1. Run Lomorage service and Lomo-frame on the same Raspberry Pi.

    2. - -
    3. Run Lomorage service on one Raspberry Pi, and run Lomo-frame on other Raspberry Pis. For example, you can run Lomo-frame on the cheap Raspberry Pi zero, and run Lomorage service on more powerful Raspberry Pi 4.

    4. +
    5. +

      Run Lomorage service and Lomo-frame on the same Raspberry Pi.

      +
    6. +
    7. +

      Run Lomorage service on one Raspberry Pi, and run Lomo-frame on other Raspberry Pis. For example, you can run Lomo-frame on the cheap Raspberry Pi zero, and run Lomorage service on more powerful Raspberry Pi 4.

      +
    -

    Once you have Lomo-frame running, it will show a QRCode on the screen, and you can use iOS APP to register the frame in settings, once success, you can share photos with the digital frame just like share with other contacts in Lomorage APP. Currently, only iOS APP support register/unregister Lomorage digital frame, once registered, you can share to the digital frame on Android APP as well

    -

    Quickstart

    -

    If you have Lomo-frame installed, it will launch on boot.

    -

    If the Raspberry Pi is not connected to the network, you need to connect it first, if you prefer to use WiFi, connect HDMI and keyboard with Raspberry Pi and reboot, follow the instruction on screen to enter in terminal and login Raspberry Pi, then you can use the command wifi_switch client [wifi-ssid] [wifi-password], replace “[wifi-ssid]” and “[wifi-password]” with those of your wifi network.

    -

    Once setup network, reboot and it will show a QRCode, you can go to “Settings” Tab in Lomorage iOS APP to register the frame, then you can use either Lomorage iOS APP or Lomorage Android APP to share photos with the digital frame.

    -

    -

    If you don’t need more configuration, you can skip the below sections.

    - -

    Turn Frame ON/OFF

    - +

    Turn Frame ON/OFF

    Lomo-frame will start after system boot automatically, but if you want manual control, you can use the following commands to turn it on: framectrl.sh on, or turn it off: framectrl.sh off. It will turn on/off the monitor as well as the Lomo-frame service.

    -

    Stop or Start Lomo-frame Service

    -

    If you just want to quit Lomo-frame service, while keep the monitor on, you can either:

    -
      -
    • press “esc” on the keyboard if Raspberry Pi connected with keyboard.

    • - -
    • sudo service supervisor stop if you use ssh to access Raspberry Pi.

    • +
    • +

      press “esc” on the keyboard if Raspberry Pi connected with keyboard.

      +
    • +
    • +

      sudo service supervisor stop if you use ssh to access Raspberry Pi.

      +
    -

    You can use sudo service supervisor start to start the Lomo-frame service.

    - -

    Schedule Frame ON/OFF time

    - +

    Schedule Frame ON/OFF time

    The default turn on time is “08:00 am”, and turn off time is “21:00 pm”.

    -

    You can change that use the following command, which changes the on time to “10:00 am” and off time to “18:00”:

    -
    framectr.sh add --on-hour 10 --off-hour 18
    -
    - -

    You can also change that to “10:30 am” and off time to “18:30”

    - +

    You can also change that to “10:30 am” and off time to “18:30”

    framectr.sh add --on-hour 10 --on-min 30 --off-hour 18 --off-min 30
    -
    - -

    Or if you want to keep it on 7x24, just remove the schedule:

    - +

    Or if you want to keep it on 7x24, just remove the schedule:

    framectr.sh remove
    -
    - -

    Playback Order

    - +

    Playback Order

    By default, it’s random, but if you prefer to playback sequentially:

    -
    sudo sed -i "s/is_random =.*/is_random = false/" /opt/lomorage/var/video_looper.ini
    -
    - -

    Or you can change it back to random:

    - +

    Or you can change it back to random:

    sudo sed -i "s/is_random =.*/is_random = true/" /opt/lomorage/var/video_looper.ini
    -
    - -

    Customize playlist

    - +

    Customize playlist

    You can edit/create “/opt/lomorage/var/lomo-playlist.txt”, the format is one media file path per line.

    -

    Playback Media Type

    -

    By default, it will play videos and images, but if you need to play only images, you can change the “media_type” in “/opt/lomorage/var/video_looper.ini”:

    -
    sudo sed -i "s/media_type =.*/media_type = image/" /opt/lomorage/var/video_looper.ini
    -
    - -

    or play only video:

    - +

    or play only video:

    sudo sed -i "s/media_type =.*/media_type = video/" /opt/lomorage/var/video_looper.ini
    -
    - -

    or restore to play all media assets:

    - +

    or restore to play all media assets:

    sudo sed -i "s/media_type =.*/media_type = all/" /opt/lomorage/var/video_looper.ini
    -
    - -

    Keyboard control

    - +

    Keyboard control

    If you have keyboard connect with Raspberry Pi, you can press the following key to control:

    -
      -
    • “r”: rescan playlist.

    • - -
    • “k”: skip to next.

    • - -
    • “s”: pause/resume play

    • - -
    • “esc”: quit Lomo-frame

    • +
    • +

      “r”: rescan playlist.

      +
    • +
    • +

      “k”: skip to next.

      +
    • +
    • +

      “s”: pause/resume play

      +
    • +
    • +

      “esc”: quit Lomo-frame

      +
    -

    Setup multiple digital frame

    -

    This setup need some expertise, sorry, will make it easier in the future using phone APP.

    -

    If you already have one Raspberry Pi (Primary Raspberry Pi) setup for running Lomorage service, and having all the hard drivers connected with that device, you probably keep it in the storage room connected to the router with wired network, and want to setup the digital frame in bedroom or living room.

    -

    You can use a low cost Raspberry Pi zero w to setup the digital frame and access your digital assets via WiFi, it works pretty well, the video playback is very smooth.

    -

    1. Install Lomo-frame

    -

    You can follow the instructions on the top of the page.

    -

    2. Setup WiFi connection

    -

    Connect keyboard with Raspberry Pi zero W and login, if you installed Lomorage Raspberry Pi OS image, you can use the command wifi_switch client [wifi-ssid] [wifi-password], replace “[wifi-ssid]” and “[wifi-password]” with those of your wifi network; otherwise, you can refer to other docs online to set the WiFi connection.

    -

    3. Check IP address of primary Raspberry Pi

    -

    You can find the IP address using iPhone APP, in “settings” tab, section “LOCAL SERVICE”, the host field is the IP address.

    -

    4. Find the mount directory on primary Raspberry Pi

    -

    You can mount the “media” directory on primary Raspberry Pi onto your desktop/laptop via SAMBA, with user name “pi” and password “raspberry”, and you will find the directory name store media assets mounted under “media” directory.

    -

    5. Mount on Raspberry Pi zero w

    -

    Say if directory with name “/media/WD_90C27F73C27F5C82” store media assets mounted on primary Raspberry Pi (with IP 192.168.1.155), you can mount it on your Raspberry Pi zero w, login to Raspberry Pi zero and then:

    -
    sudo mkdir /media/WD_90C27F73C27F5C82
     echo "//192.168.1.124/media/WD_90C27F73C27F5C82  /media/WD_90C27F73C27F5C82  cifs  user=pi,pass=raspberry,uid=1000,gid=1000" | sudo tee -a /etc/fstab
     sudo mount -a
    -
    - -

    6. Reboot

    - +

    6. Reboot

    sudo reboot
    -
    - -

    After reboot, you should be able to see it starts scanning the media files to generate playlist.

    +

    After reboot, you should be able to see it starts scanning the media files to generate playlist.

    @@ -414,7 +347,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/install.sh b/install.sh new file mode 100755 index 00000000..2d8a4a06 --- /dev/null +++ b/install.sh @@ -0,0 +1,116 @@ +#!/bin/bash +export PATH=/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin# +# Lomorage install script +# +# All this script does is determine your OS and/or distribution and then add the correct +# repository or download the correct package and install it. It then starts the service +DEB_BASE_URL='https://lomoware.lomorage.com/debian/' +LOMOD_PATH='/opt/lomorage/bin/lomod' + +install_docker () { +} + +echo +echo '*** Lomoware One Quick Install for Linux Systems. Refer https://lomorage.com/installation/ for other OS' +echo +echo '*** Tested distributions and architectures:' +echo '*** Debian (7+) on x86_64, x86, arm, and arm64' +echo +echo '*** Please report problems to support@lomorage.com and we will try to fix.' +echo + +SUDO= +if [ "$UID" != "0" ]; then + if [ -e /usr/bin/sudo -o -e /bin/sudo ]; then + SUDO=sudo + else + echo '*** This quick installer script requires root privileges.' + exit 0 + fi +fi + +# Detect already-installed on Linux +if [ -f $LOMOD_PATH ]; then + echo '*** Lomorage appears to already be installed.' + exit 0 +fi + +rm -f /tmp/lomo-gpg-key +echo '-----BEGIN PGP PUBLIC KEY BLOCK-----' >/tmp/lomo-gpg-key +cat >>/tmp/lomo-gpg-key << END_OF_KEY +Version: GnuPG v1 + +mQINBFwGEbIBEAC9vQ7aOmWgrlSX75X6ytYBsu31PxF/qTJKiuMST+FXJb+ug4aa +hwLG2GEYVvaZBDtnDVR2CJGfbjwIrNH2u+gjSZMKDY+XYW3SmBGGFYHT4ZOWSGar +1owO+c1927HOrgHEmorha3FAtEOiKuIf6oMWsUTbAZY5sj37IgTrEJu9uA7WWxD7 +D9J9AK0EIgNUBtcCVsgPWyvBgjqrua3CW2aQc/v7n+DiOPcJGvlZ9Oy3OumTPmJZ +tCbqkwIHyKs0lyT67sG0WShV/Kwq2NMiFrXRZ7oyFk5ikBmN+MEA2IYeGlRvl7+a +w4wtMXYLBLTkNhg8m9giQNkhRn4Nm3q39p11OXbtb1tojKQkMDQvPcFxVR8urWLM +vJOISTfw+lS+5FmUlc10XOe4olM3iLsaWBjVcq7+/kbgpEY437SAjsYivy5WNdES +L3KC4UOu806ih+yhbI9Rsbfm5OGSn3k4AQJZcAgFklcOui63Bs5gpXlwmMIjeVzJ +nb0gBbc6FURnjWZeFE+Dg0/bZ82sG7MUPsngYZk3s2+Ulw87r/2DpSsAQ9BnDVl+ +yYnUsCuYRHSvuVBpEFotRjN4nQZY0CwkQUaHddmo/yyfTKXGthj93OpjfUElDFpY +nZBFcd1+jQG4qtHf7ZK/ufpBUvbHVloQq5MSrUOwuUqvWvzQNcfXxn7VoQARAQAB +tB1Mb21vcmFnZSA8bG9tb3JhZ2VAZ21haWwuY29tPokCOAQTAQIAIgUCXAYRsgIb +AwYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQu3aCdvPg4s2lVA/+L0rgrwIv +Mu80RTw8TruqW7ktTr34R4BmB0/K0LBBrP2NczlwerZWf8eg93SLQrOWMq5p1J0X +hUWD2SwBM94gIQVW34jb5p8lZi5XvtyBc0WnTuiZkD1RAoV7LbjzqZ6exUwgYqcf +rBKlr+b4V5Lxyv7DuvbOSqekDmYujI8Q+B1OIJJNuQfI4TqyvO8/dZmEkBxE//mC +oNqYdOfrf1k9RZEqDn4XGOOQyIF/w6g8cakiOxoisKITIbDQTXKXR8QlaVd4qo04 +0hcK8N4/JtmmqaHLAHu6Ap1E1jzresYedUG9tV+nWNvYkGe5rGY7QG8Tm7+cJ19P +c0I6W2+BHJFiuV15LgEkQeyS7ckGRl8EFUNX2zuId7tkJC1d8jOtn0X3jkm9af+O +bCoayIqC8fs0YW2vCM0VD39Y3MkifjizlOeGoGkq6iX4TM5kudRO2+W506uy5u3/ ++oJpsg6GLCPQESxXOOzZfd+5X1BkUYnvvLCCoZplmzVv0fQq5utJt22i2jYoxfJ6 +lqAgewqBvQgNAJ8MUTSkZrB6azG1DmiovD/IZbWoQgGyc0IEUB0FFK4OxehG4fcY +Cu3JL7Gndp9JWXxA5WoRYi9s73cfSbwUxfrp8LdJi1bI8cwm755ucYKiCaJi5dr5 +GVMFrZA3ZOpbo124dP4c6u2Tn5eBtAw+p7E= +=qO+d +END_OF_KEY +echo '-----END PGP PUBLIC KEY BLOCK-----' >>/tmp/lomo-gpg-keyecho '*** Detecting Linux Distribution' +echo + +if [ -f /etc/debian_version ]; then + dvers=`cat /etc/debian_version | cut -d '.' -f 1 | cut -d '/' -f 1` + $SUDO rm -f /tmp/lomo-sources-list if [ -f /etc/lsb-release -a -n "`cat /etc/lsb-release 2>/dev/null | grep -F focal`" ]; then + echo '*** Found Ubuntu "focal", creating /etc/apt/sources.list.d/lomoware.list' + echo "deb ${DEB_BASE_URL}focal focal main" >/tmp/lomo-sources-list + elif [ -f /etc/lsb-release -a -n "`cat /etc/lsb-release 2>/dev/null | grep -F groovy`" ]; then + echo '*** Found Ubuntu "groovy", creating /etc/apt/sources.list.d/lomoware.list' + echo "deb ${DEB_BASE_URL}groovy groovy main" >/tmp/lomo-sources-list + elif [ "$dvers" = "buster" ]; then + echo '*** Found Debian "buster", creating /etc/apt/sources.list.d/lomoware.list' + echo "deb ${DEB_BASE_URL}buster buster main" >/tmp/lomo-sources-list + else + echo "*** WARNING: unrecognized distribution: $dvers. Try to install via Docker" + install_docker + exit 0 + fi + $SUDO mv -f /tmp/lomo-sources-list /etc/apt/sources.list.d/lomoware.list + $SUDO chown 0 /etc/apt/sources.list.d/lomoware.list + $SUDO chgrp 0 /etc/apt/sources.list.d/lomoware.list + $SUDO apt-key add /tmp/lomo-gpg-key echo + echo '*** Installing lomorage package...' cat /dev/null | $SUDO apt-get update + cat /dev/null | $SUDO apt-get install -y lomo-base lomo-vips lomo-backend lomo-web +fi + +$SUDO rm -f /tmp/lomo-gpg-key + +if [ ! -e $LOMOD_PATH ]; then + echo + echo '*** Package installation failed! Unfortunately there may not be a package' + echo '*** for your architecture or distribution natively. Try to install via Docker' + install_docker + exit 0 +fi + +echo +echo '*** Enabling and starting lomorage service...'# restart lomod +$SUDO systemctl enable lomod +$SUDO systemctl restart lomod# restart lomo-web +$SUDO systemctl enable lomow +$SUDO systemctl restart lomow# restart lomo-frame +$SUDO service supervisor restart + +echo +echo "*** Success! You can use mobile phone to discover lomo backend service now" +echo diff --git a/installation-android/index.html b/installation-android/index.html index b7e90e31..d9f084e5 100644 --- a/installation-android/index.html +++ b/installation-android/index.html @@ -27,7 +27,7 @@ - + @@ -192,25 +192,14 @@

    - - -

    Install Lomorage App in Android phone

    - +

    Install Lomorage App in Android phone

    Currently you can install the app on Android phone, the minimal version is 7.1.

    - -

    Currently it is dev-beta version, will publish to Google Play Store soon

    - -

    Click below icon to download.

    - -

    -Download

    - +

    Click below icon to go to Goole Play Store to download.

    +

    +Download

    After launching Lomorage, it will take a few minutes to import all your photos and videos on phone in the first time.

    -

    Then you can click the right up more menu to Manage account.

    -

    At there, the app will automatically find the Lomorage service if you installed on Mac/Windows or Raspberry pi.

    -

    App will import your photos and videos, may need few minutes in first time. @@ -218,7 +207,6 @@

    Install Lomorage App in Android p

    -
    Click right up menu to enter into account management page.

    At there, App will find the Lomorage service automatically.

    @@ -229,19 +217,16 @@

    Install Lomorage App in Android p

    -
    Drag down to start uploading your assets.

    You can filter the assets by filter drop down as below pic.

    -

    -
    You can long touch to select multiple assets to share your families.

    @@ -249,20 +234,16 @@

    Install Lomorage App in Android p

    -
    Check all users in your Lomorage server via Members tab as below.

    -

    -
    Inbox here is the assets which your family share to you.

    -
    You can set the remote access like ngrok and redundancy backup in setting page

    Or you can send the feedback here to the Lomorage team.

    @@ -271,9 +252,7 @@

    Install Lomorage App in Android p -

    -
    @@ -302,7 +281,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation-armbian/index.html b/installation-armbian/index.html new file mode 100644 index 00000000..eb37f184 --- /dev/null +++ b/installation-armbian/index.html @@ -0,0 +1,314 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    +
    +
    +

    +
    +
    +
    +
    + + +
    + + +
    + +
    + +
    + +
    +

    Install Lomorage Service on Armbian

    +

    Currently it supports Armbian Focal. If you have other needs please reach us for support.

    +
    sudo apt install -y ca-certificates python-certifi python3-certifi
    +sudo update-ca-certificates --fresh
    +wget -qO - https://raw.githubusercontent.com/lomoware/lomoware.github.io/master/debian/gpg.key | sudo apt-key add -
    +echo "deb https://lomoware.github.io/debian/focal focal main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    +sudo apt update
    +sudo apt install lomo-base lomo-vips lomo-backend lomo-web -y
    +
    +
    + +
    + +
    + + +
    + + + +
    + + +
    +
    + + +
    +

    About us

    + + We are a small team believe that distributed web is the future, + and we focus on building the private photo cloud based on DWeb technologies in the first place. + + + + +
    + + + +
    + + + +
    + + + + +
    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/installation-ios/index.html b/installation-ios/index.html index 37af65bd..0529692a 100644 --- a/installation-ios/index.html +++ b/installation-ios/index.html @@ -27,7 +27,7 @@ - + @@ -192,12 +192,8 @@

    - - -

    Install Lomorage iOS client

    - +

    Install Lomorage iOS client

    You can install the application on either iPad or iPhone, the minimum iOS version required in 10.3.

    -

    Download on the App Store

    -

    After launching Lomorage, it should be able to discover the Lomorage service running in the same network. If you have multiple Lomorage service instances running, those will be listed and you can choose one to use. If Lomorage service can’t be discovered automatically, you can discover the service via QRCode Scanning when using Windows or MacOS LomoAgent (open settings in LomoAgent to show the QRCode), or you can input the IP address and port manually.

    -

    Then you can create user, choose the place you want to store your photos on the Lomorage service, after login, it will take a few minutes to import all your photos on phone, and then you can drop down to start uploading the photos to the place you choose to store your backup, if the photo uploads successfully, there will be a green check on the bottom right. The remote tab will show you those photos stored remotely but not exists locally, so if you delete your local photo that already backup successfully, it will show up in the remote tab view.

    -

    @@ -220,7 +213,6 @@

    Install Lomorage iOS client

    -
    @@ -249,7 +241,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation-osx/index.html b/installation-osx/index.html index bb29b4a0..1fea8316 100644 --- a/installation-osx/index.html +++ b/installation-osx/index.html @@ -27,7 +27,7 @@ - + @@ -192,18 +192,12 @@

    - - -

    Install Lomorage Service on MacOS

    - +

    Install Lomorage Service on MacOS

    1. Click the link below to download Lomorage Service Application.

    -

    -macOS +macOS

    -

    2. Double click “LomoAgent.dmg” to start installation, and follow the steps below to finish the installation.

    -

    @@ -211,11 +205,8 @@

    Install Lomorage Service on MacOS

    -

    3. Run LomoAgent Application,please allow network access for LomoAgent if firewall is triggered.

    - -

    4. After launch the Lomorage application,You need to set the “Home directory” before using Lomorage,”Home directory” is used to save the photos and videos uploading from your phone。You can also set up a backup directory which served as redundancy backup.

    - +

    4. After launch the Lomorage application,You need to set the “Home directory” before using Lomorage,“Home directory” is used to save the photos and videos uploading from your phone。You can also set up a backup directory which served as redundancy backup.

    @@ -250,7 +241,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation-pi/index.html b/installation-pi/index.html index 1a4b33c9..c7967167 100644 --- a/installation-pi/index.html +++ b/installation-pi/index.html @@ -27,7 +27,7 @@ - + @@ -192,132 +192,100 @@

    - - -

    Table of Contents

    - +

    Table of Contents

    - + + + +

    Install Lomorage Service on Raspberry Pi

    -

    To run on Raspberry Pi, you need to order a Raspberry Pi, we have tested the image the following models:

    - -

    If you don’t have one yet, we would recommend the newer version, which gives better performance. The minimum set you need includes:

    -
    • Raspberry Pi board
    • Power supply
    • 16GB MicroSD card
    -

    A Raspberry Pi 3 B+ (PLUS) Starter Kit is good enough for the setup.

    -

    There are 3 options to install Lomorage service on Raspberry Pi, one is using the prebuild OS image which has all the dependencies installed, or you can run docker image on your existing running Raspberry Pi, or if you can just use APT install.

    -

    Install with prebuild OS image

    -

    The prebuild image includes all Lomorage packages, including:

    -
      -
    • lomo-backend: Lomorage service backend

    • - -
    • lomo-web: Lomorage web application

    • - -
    • lomo-base: network configure tool, button control, hard drive mount tool (usbmount modification), bluetooth console

    • - -
    • lomo-frame: the digital frame application

    • +
    • +

      lomo-backend: Lomorage service backend

      +
    • +
    • +

      lomo-web: Lomorage web application

      +
    • +
    • +

      lomo-base: network configure tool, button control, hard drive mount tool (usbmount modification), bluetooth console

      +
    • +
    • +

      lomo-frame: the digital frame application

      +
    -

    Click the link below to download the prebuild OS image.

    -

    -Raspberry Pi +Raspberry Pi

    -

    After you download the customized OS image, you can install the image to MicroSD card using balenaEtcher, which is available on both Windows and macOS.

    -

    After you insert the MicroSD to your desktop or laptop, just select the image you download, choose the MicroSD drive, and click “Flash”, it will be done in a few minutes.

    -

    -

    After flushing the image, insert the microSD into Raspberry Pi board, connect USB hard drive with Raspberry Pi, plug in a network cable, plug in the power supply, turn on the power and wait a few minutes for system boot.

    -

    If you have HDMI connected, after system boot successfully, it will show up a screen that no able to find any assets. You can upload photos using Lomorage Phone app, and then press “r” to rescan. If you want to quit to terminal to do some configuration, just press “ESC” and then “Ctrl+Alt+F2”, after you made any changes and want to start lomo-frame, use command sudo service supervisor restart.

    -

    The default login username is “pi” and password is “raspberry”

    -

    We suggest use cable to provide better performance, but if you prefer to use WiFi, you can login Raspberry Pi and use the command wifi_switch.sh client "wifi-ssid" wifi-password, replace “wifi-ssid” and “wifi-password” with those of your wifi network. Make sure you have quotation mark around “wifi-ssid” if you have space or unicode character in it, for example wifi_switch.sh client "Lomorage's 2.4G" mypassword.

    -

    Docker installation

    -

    Docker installation is convenient way if you don’t want to mess thing on existing system. It doesn’t support Raspberry Pi 0 and 1 now.

    -

    MDNS won’t work in this case, so the service won’t be discovered automatically on Lomorage Phone APP, you have to enter the service IP address and Port manually

    -

    Docker image includes:

    -
      -
    • lomo-backend: Lomorage service backend

    • - -
    • lomo-web: Lomorage web application

    • +
    • +

      lomo-backend: Lomorage service backend

      +
    • +
    • +

      lomo-web: Lomorage web application

      +
    -

    1. Install Docker on Raspberry Pi

    -

    note: If you are using OMSC, you need to change “id=osmc” in “/etc/os-release” to “id=raspbain”

    -
    sudo apt install -y ca-certificates
     sudo update-ca-certificates --fresh
     curl -fSLs https://get.docker.com | sudo sh
     sudo usermod -aG docker $USER
     sudo systemctl start docker
    -
    - -

    2. Get Docker image

    - +

    2. Get Docker image

    Pull from docker hub.

    -
    sudo docker pull lomorage/raspberrypi-lomorage:latest
    -
    - -

    3. Run

    - +

    3. Run

    Download run.sh.

    -

    You can specify the media home directory and lomo directory, otherwise it will use the default, you MUST specify the host.

    -

    There should be subdirectories in media home directory,for example if you specify -m /mnt/hdd/, then there should be some subdirectory in hdd, like -m /mnt/hdd/lomorage.

    -
    run.sh [-m {media-dir} -b {lomo-dir} -d -p {lomod-port} -P {lomow-port}] -h host-ip -i image-name
     
     Command line options:
    @@ -332,70 +300,47 @@ 

    3. Run

    Examples: # assuming your hard drive mounted in /media, like /media/usb0, /media/usb1. ./run.sh -m /media -b /home/pi/lomorage -h 192.168.1.232 -
    - -

    You can add the command in “/etc/rc.local” before “exit 0” to make it run automatically after system boot.

    - +

    You can add the command in “/etc/rc.local” before “exit 0” to make it run automatically after system boot.

    Apt installation

    -

    If you have the official Raspbian image installed already, APT installation would be the quickest way to install.

    -

    1. Add lomoware source

    -
    sudo apt install -y ca-certificates python-certifi python3-certifi
     sudo update-ca-certificates --fresh
     wget -qO - https://raw.githubusercontent.com/lomoware/lomoware.github.io/master/debian/gpg.key | sudo apt-key add -
    -
    - -

    If you are using jessie:

    - +

    If you are using jessie:

    echo "deb https://lomoware.github.io/debian/jessie jessie main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    -
    - -

    If you are using buster:

    - +

    If you are using buster:

    echo "deb https://lomoware.github.io/debian/buster buster main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    -
    - -

    then run:

    - +

    then run:

    sudo apt update
    -
    - -

    2. Install Lomorage

    - +

    2. Install Lomorage

    You need at least lomo-vips and lomo-backend installed.

    -
      -
    • lomo-backend: mandatory, Lomorage service backend

    • - -
    • lomo-web: optional, Lomorage web application

    • - -
    • lomo-base: optional, network configure tool, button control, hard drive mount tool, bluetooth console

    • - -
    • lomo-vips: mandatory, lomorage vips clone. (A fast image processing library with low memory needs), used by lomo-backend

    • - -
    • lomo-frame: optional, the digital frame application

    • +
    • +

      lomo-backend: mandatory, Lomorage service backend

      +
    • +
    • +

      lomo-web: optional, Lomorage web application

      +
    • +
    • +

      lomo-base: optional, network configure tool, button control, hard drive mount tool, bluetooth console

      +
    • +
    • +

      lomo-vips: mandatory, lomorage vips clone. (A fast image processing library with low memory needs), used by lomo-backend

      +
    • +
    • +

      lomo-frame: optional, the digital frame application

      +
    -
    sudo apt install lomo-base lomo-vips lomo-backend lomo-web lomo-frame -y
    -
    - -

    3. Change mount directory and username if needed

    - +

    3. Change mount directory and username if needed

    You may need to specify the mount directory if the USB drive is not mounted in “/media” directory.

    -

    For example if you are using PCManFM, then the mount directory will be “/media/pi”. To specify the mount directory to be “/media/pi”, modify ExecStart in “/lib/systemd/system/lomod.service”, and add parameter “–mount-dir” as below

    -
    ExecStart=/opt/lomorage/bin/lomod -b /opt/lomorage/var --mount-dir /media/pi  --max-upload 1 --max-fetch-preview 3
    -
    - -

    If your username is not “pi”, you need to change “User=pi” in “/lib/systemd/system/lomod.service”, and use your username.

    - +

    If your username is not “pi”, you need to change “User=pi” in “/lib/systemd/system/lomod.service”, and use your username.

    +

    Make sure the user has the r/w permission for the “mount-dir” set above

    4. Run

    -

    Restart Lomorage service:

    -
    # restart lomo-backend
     sudo systemctl restart lomod
     
    @@ -405,7 +350,6 @@ 

    4. Run

    # restart lomo-frame sudo service supervisor restart
    -
    @@ -434,7 +378,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation-web/index.html b/installation-web/index.html index 175a8363..39c1bcd2 100644 --- a/installation-web/index.html +++ b/installation-web/index.html @@ -27,7 +27,7 @@ - + @@ -192,22 +192,14 @@

    - - -

    Install Lomorage Web client

    - +

    Install Lomorage Web client

    You can use Lomorage Web client to upload photos/videos from desktop/laptop using browser, and you can use the gallery to view the photos/videos stored in Lomorage.

    -

    If you are using Lomorage Service in MacOS, then you can just click “import” menu item in LomoAgent Application, and it will open the web application.

    -

    If you are using Lomorage Service in Raspberry Pi, then you can use the following command to install Lomorage Web client on your raspberry Pi:

    -
    sudo apt update
     sudo apt install lomo-web
    -
    - -

    Then you can open “http://raspberrypi-lomorage.local:8001” in the browser on your desktop/laptop to use Lomorage web client.

    - +

    Then you can open “http://raspberrypi-lomorage.local:8001” in the browser on your desktop/laptop to use Lomorage web client.

    +

    The login username and password is the Lomorage Username/Password set using Phone APP

    @@ -215,7 +207,6 @@

    Install Lomorage Web client

    -
    @@ -244,7 +235,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation-win/index.html b/installation-win/index.html index dfac4751..5498c387 100644 --- a/installation-win/index.html +++ b/installation-win/index.html @@ -27,7 +27,7 @@ - + @@ -192,27 +192,20 @@

    - - -

    Install Lomorage Service on Windows

    - -

    1. Click the link below to download Lomorage Service Application.

    - +

    Install Lomorage Service on Windows

    +

    1. Click the Windows icon link below to download Lomorage Server For Windows.

    -Windows +Click to download ==> +Windows

    -

    2. double click “lomoagent.msi” to start installation. If Windows Defender shows “lomoagent.msi” as unknown application, please follow the steps below to allow it to run.

    -

    -

    3. Follow the wizard to finish the installation, in the End-User License Agreement, please checked the box as below.

    -

    @@ -220,23 +213,18 @@

    Install Lomorage Service on Windows

    -

    4. Now you should see the lomoagent icon on your desktop, you can double click to start the lomoagent. If you meet below dialog popuped up by the Windows os, please select “Private networks …” one and click the Allow access.

    -

    - -

    5. You will see below picture while you start the lomoagent, You need to config the “Data directory” before using it,”Data directory” is used to save the photos and videos uploading from your phone.

    - +

    5. You will see below picture while you start the lomoagent, You need to config the “Data directory” before using it,“Data directory” is used to save the photos and videos uploading from your phone.

    -
    @@ -265,7 +253,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/installation/index.html b/installation/index.html index 8ef72e9e..e099c482 100644 --- a/installation/index.html +++ b/installation/index.html @@ -27,7 +27,7 @@ - + @@ -192,54 +192,38 @@

    Installation Guide

    - - -

    Installation Guide

    - +

    Installation Guide

    1. Overview

    -

    To use Lomorage, you need to run the Lomorage service in your local network, either on Windows, OSX or Raspberry Pi. And then you need to download the client APP at the APP store. Once you run the Lomorage service, the client APP is supposed to find the service running automatically with zero configuration, then you can upload photos on the Phone.

    -

    2. Install Lomorage Service

    -

    The first step is to set up the Lomorage service.

    -

    You can choose which version of Lomorage Service to download based on your preference. Running Lomorage service on Windows or OSX gives you better performance compared with on Raspberry Pi, the uploading and accessing the backup will be faster, but running Windows or OSX is not energy efficient as using Raspberry Pi. If using Raspberry Pi, you don’t need to worry about the electricity bill, it is only about 5$ a year

    -

    -Windows +Windows +  +macOS   -macOS +Raspbian   -Raspberry Pi +Docker   -Docker +Armbian

    -

    3. Install Lomorage Client

    -

    After running Lomorage Service, you can then install Lomorage client on smart phone.

    -

    You can also use the web client to upload assets on your desktop/laptop, or use it to browser the photo/video gallery.

    -

    Download Android client - Lomorage iOS client   Lomorage web client

    -

    4. External Access (optional)

    -

    Lomorage can run within your private network with no Internet access, but if you want to access Lomorage from outside, then you can enable the external access, currently it support free 3rd party tunnel services. Check the configuration for external access.

    -

    5. Setup Digital Frame (optional)

    -

    You can connect monitor with Raspberry Pi and use that as digital photo frame, and you can setup multiple digital photo frames using Raspberry Pi zero w and access your digital assets via WiFi. Check here for digital frame setup instructions.

    - -










    -

    Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY

    +










    +
    Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
    @@ -269,7 +253,6 @@

    About us

  • Store your data securely on your own devices
  • Backup and duplicate storage by adding more devices
  • No one can access your assets without permission
  • --> - diff --git a/ios_export.mov b/ios_export.mov new file mode 100644 index 00000000..236283b3 Binary files /dev/null and b/ios_export.mov differ diff --git a/js/scripts.min.3e88525d3fcba7eb1e0e1489b0f00e01dd0f09d8da8b94910ccd04343e6915e9.js b/js/scripts.min.3e88525d3fcba7eb1e0e1489b0f00e01dd0f09d8da8b94910ccd04343e6915e9.js new file mode 100644 index 00000000..20c7da5e --- /dev/null +++ b/js/scripts.min.3e88525d3fcba7eb1e0e1489b0f00e01dd0f09d8da8b94910ccd04343e6915e9.js @@ -0,0 +1,91 @@ +document.addEventListener("DOMContentLoaded",function(){var lastScrollTop=window.pageYOffset||document.documentElement.scrollTop;window.onresize=function(event){lastScrollTop=window.pageYOffset||document.documentElement.scrollTop;};function getOffset(el){var _x=0;var _y=0;while(el&&!isNaN(el.offsetLeft)&&!isNaN(el.offsetTop)){_x+=el.offsetLeft-el.scrollLeft;_y+=el.offsetTop-el.scrollTop;el=el.offsetParent;} +return{top:_y,left:_x};} +function addNewClass(elements,myClass){if(!elements){return;} +if(typeof elements==="string"){elements=document.querySelectorAll(elements);} +else if(elements.tagName){elements=[elements];} +for(var i=0;i=0){stopAnimation=function(){var travelled=window.pageYOffset;if(travelled>=endLocation-increments||window.innerHeight+travelled>=document.body.offsetHeight){clearInterval(runAnimation);}};} +var runAnimation=setInterval(animateScroll,16);};var scrollToggle=document.querySelectorAll(".scroll");[].forEach.call(scrollToggle,function(toggle){toggle.addEventListener("click",function(e){e.preventDefault();var dataTarget=document.querySelector(".landing__section");var dataSpeed=toggle.getAttribute("data-speed");if(dataTarget){smoothScroll(dataTarget,dataSpeed||700);}},false);});} +window.addEventListener("scroll",function(){if(document.body.contains(document.getElementById("navConverter"))){var lastScrollTop=window.pageYOffset||document.documentElement.scrollTop;if(lastScrollTop>getOffset(document.getElementById("navConverter")).top-60){removeClass(document.querySelector(".navbar"),"navbar--extended");}else{addNewClass(document.querySelector(".navbar"),"navbar--extended");}} +if(document.body.contains(document.getElementById("scrollToNext"))){var lastScrollTop=window.pageYOffset||document.documentElement.scrollTop;if(lastScrollTop>20){addNewClass(document.getElementById("scrollToNext"),"invisible");}else{removeClass(document.getElementById("scrollToNext"),"invisible");}}});if(document.getElementsByClassName("nav__mobile")&&document.getElementsByClassName("nav__mobile").length>0){var navElements=document.getElementsByClassName("navbar__menu")[0].innerHTML;document.getElementsByClassName("nav__mobile")[0].innerHTML=navElements;var nav=responsiveNav(".nav__mobile",{animate:true,transition:284,label:"Menu",insert:"before",customToggle:"toggle",openPos:"relative",navClass:"nav__mobile"});}else{addNewClass(document.querySelector(".navbar__menu"),"navbar__menu--noMob");addNewClass(document.querySelector(".navbar__menu-mob"),"navbar__menu-mob--noMob");}});;(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f();}else if(typeof define==="function"&&define.amd){define([],f);}else{var g;if(typeof window!=="undefined"){g=window;}else if(typeof global!=="undefined"){g=global;}else if(typeof self!=="undefined"){g=self;}else{g=this;} +g.flexibility=f();}})(function(){var define,module,exports;return(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw((f.code="MODULE_NOT_FOUND"),f);} +var l=(n[o]={exports:{}});t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e);},l,l.exports,e,t,n,r);} +return n[o].exports;} +var i=typeof require=="function"&&require;for(var o=0;o0){var growFactor=line.children.reduce(function(lastGrowFactor,child){return lastGrowFactor+child.flexGrow;},0);if(growFactor>0){line.children.forEach(function(child){child.mainAround+=(child.flexGrow/growFactor)*line.mainSpace;});line.main=line.children.reduce(function(main,child){return main+child.mainAround;},0);line.mainSpace=0;}}};},{}],5:[function(require,module,exports){module.exports=function flexShrink(line){if(line.mainSpace<0){var shrinkFactor=line.children.reduce(function(lastShrinkFactor,child){return lastShrinkFactor+child.flexShrink;},0);if(shrinkFactor>0){line.children.forEach(function(child){child.mainAround+=(child.flexShrink/shrinkFactor)*line.mainSpace;});line.main=line.children.reduce(function(main,child){return main+child.mainAround;},0);line.mainSpace=0;}}};},{}],6:[function(require,module,exports){module.exports=function flexboxLines(target){var line;target.lines=[(line={main:0,cross:0,children:[]})];target.children.forEach(function(child){if(target.flexWrap==="nowrap"||line.children.length===0||target.mainAround>=line.main+child.mainAround){line.main+=child.mainAround;line.cross=Math.max(line.cross,child.crossAround);}else{target.lines.push((line={main:child.mainAround,cross:child.crossAround,children:[]}));} +line.children.push(child);});};},{}],7:[function(require,module,exports){module.exports=function flexbox(target){target.descendants.forEach(function(descendant){module.exports(descendant);});if(target.display==="flex"){target.children.forEach(function(child){require("./flex-direction")(child,target.flexDirection,target.alignItems);});}else{return target;} +require("./order")(target);require("./flex-direction")(target,target.flexDirection,target.alignItems);require("./flexbox-lines")(target);if(target.main==="auto"){target.main=Math.max(target.mainAround,target.lines.reduce(function(main,line){return Math.max(main,line.main);},0));if(target.flexDirection==="row"){target.mainAround=target.mainClient+target.mainBefore+target.mainAfter;}else{target.mainAround=target.main+target.mainBefore+target.mainAfter;}} +if(target.cross==="auto"){target.cross=target.lines.reduce(function(cross,line){return cross+line.cross;},0);if(target.flexDirection==="column"){target.crossAround=target.crossClient+target.crossBefore+target.crossAfter;}else{target.crossAround=target.cross+target.crossBefore+target.crossAfter;} +target.crossSpace=target.crossAround-target.cross;}else{target.crossSpace=target.cross- +target.lines.reduce(function(cross,line){return cross+line.cross;},0);} +require("./align-content")(target);target.lines.forEach(function(line){line.mainSpace=target.main-line.main;require("./flex-grow")(line);require("./flex-shrink")(line);require("./margin-main")(line);require("./margin-cross")(line);require("./justify-content")(line,target.justifyContent);});require("./align-items")(target);return target;};},{"./align-content":1,"./align-items":2,"./flex-direction":3,"./flex-grow":4,"./flex-shrink":5,"./flexbox-lines":6,"./justify-content":8,"./margin-cross":9,"./margin-main":10,"./order":11}],8:[function(require,module,exports){module.exports=function justifyContent(line,targetJustifyContent){var start;var factor;if(targetJustifyContent==="flex-start"){start=0;line.children.forEach(function(child){child.mainStart=start;start+=child.mainAround;});}else if(targetJustifyContent==="flex-end"){start=line.mainSpace;line.children.forEach(function(child){child.mainStart=start;start+=child.mainAround;});}else if(targetJustifyContent==="center"){start=line.mainSpace/2;line.children.forEach(function(child){child.mainStart=start;start+=child.mainAround;});}else if(targetJustifyContent==="space-between"){factor=line.mainSpace/(line.children.length-1);start=0;line.children.forEach(function(child){child.mainStart=start;start+=child.mainAround+factor;});}else if(targetJustifyContent==="space-around"){factor=(line.mainSpace*2)/(line.children.length*2);start=factor/2;line.children.forEach(function(child){child.mainStart=start;start+=child.mainAround+factor;});}};},{}],9:[function(require,module,exports){module.exports=function marginCross(line){line.children.forEach(function(child){var count=0;if(child.crossBefore==="auto"){++count;} +if(child.crossAfter==="auto"){++count;} +var childSpace=line.cross-child.crossAround;if(child.crossBefore==="auto"){child.crossBefore=childSpace/count;child.crossAround+=child.crossBefore;} +if(child.crossAfter==="auto"){child.crossAfter=childSpace/count;child.crossAround+=child.crossAfter;}});};},{}],10:[function(require,module,exports){module.exports=function marginCross(line){var count=0;line.children.forEach(function(child){if(child.mainBefore==="auto"){++count;} +if(child.mainAfter==="auto"){++count;}});if(count>0){line.children.forEach(function(child){if(child.mainBefore==="auto"){child.mainBefore=line.mainSpace/count;child.mainAround+=child.mainBefore;} +if(child.mainAfter==="auto"){child.mainAfter=line.mainSpace/count;child.mainAround+=child.mainAfter;}});line.mainSpace=0;}};},{}],11:[function(require,module,exports){module.exports=function order(target){target.children.sort(function(childA,childB){return childA.order-childB.order||childA.index-childB.index;});};},{}],12:[function(require,module,exports){module.exports=function getFlexStyles(target,data,isFlexChild){var style=Object.assign(data,{alignContent:"stretch",alignItems:"stretch",alignSelf:"auto",display:"inline",flexBasis:"auto",flexDirection:"row",flexGrow:0,flexShrink:1,flexWrap:"nowrap",justifyContent:"flex-start",height:"auto",marginTop:0,marginRight:0,marginLeft:0,marginBottom:0,maxHeight:"none",maxWidth:"none",minHeight:0,minWidth:0,order:0,position:"static",width:"auto"});if(target.hasAttribute("data-style")){target.setAttribute("style",target.getAttribute("data-style"));}else{target.setAttribute("data-style",target.getAttribute("style")||"");} +var attr=(target.getAttribute("data-style")||"")+";"+(target.getAttribute("data-flex")||"");var re=/([^\s:;]+)\s*:\s*([^;]+?)\s*(;|$)/g;var decl;while((decl=re.exec(attr))){var name=decl[1].toLowerCase().replace(/-[a-z]/g,function(match){return match.slice(1).toUpperCase();});style[name]=parseFloat(decl[2]);if(isNaN(style[name])){style[name]=decl[2];}} +if(isFlexChild){target.style.display="inline-block";target.style.position="absolute";} +var rect=target.getBoundingClientRect();style.clientWidth=rect.width||target.offsetWidth;style.clientHeight=rect.height||target.offsetHeight;return style;};},{}],13:[function(require,module,exports){/*!Flexibility 2.0.0 | MIT Licensed | github.com/10up/flexibility*/module.exports=function flexibility(target){var data1=module.exports.walk(target);var data2=module.exports.flexbox(data1);var data3=module.exports.write(data2);return data3;};module.exports.flexbox=require("./flexbox");module.exports.getFlexStyles=require("./getFlexStyles");module.exports.walk=require("./walk");module.exports.write=require("./write");},{"./flexbox":7,"./getFlexStyles":12,"./walk":14,"./write":15}],14:[function(require,module,exports){var getFlexStyles=require("../getFlexStyles");module.exports=function walk(target,ancestorData,isFlexChild){var flexContainerRE=/(^|;)\s*display\s*:\s*(inline-)?flex\s*(;|$)/i;var isFlexContainer=flexContainerRE.test(target.getAttribute("data-flex"));var data={node:target,children:[],descendants:[]};if(isFlexContainer){if(ancestorData!==undefined){ancestorData.descendants.push(data);}} +if(isFlexContainer||!ancestorData){ancestorData=data;} +Array.prototype.forEach.call(target.childNodes,function(childNode){if(isFlexContainer&&childNode.nodeType===3&&childNode.nodeValue.trim()){var oldNode=childNode;childNode=target.insertBefore(document.createElement("flex-item"),oldNode);childNode.appendChild(oldNode);} +if(childNode.nodeType===1){var childData=module.exports(childNode,ancestorData,isFlexContainer);if(isFlexContainer){data.children.push(childData);}}});if(isFlexContainer||isFlexChild){getFlexStyles(target,data,isFlexChild);} +return data;};},{"../getFlexStyles":12}],15:[function(require,module,exports){module.exports=function write(target){target.descendants.filter(function(descendant){return target.children.indexOf(descendant)===-1;}).forEach(function(descendant){module.exports(descendant);});if(!target.display){return;} +var style=target.node.style;if("mainStart"in target){style.position="absolute";if(target.mainAxis==="inline"){style.left=target.mainStart+"px";style.top=target.crossStart+"px";style.marginTop=target.crossBefore+"px";style.marginRight=target.mainAfter+"px";style.marginBottom=target.crossAfter+"px";style.marginLeft=target.mainBefore+"px";}else{style.left=target.crossStart+"px";style.top=target.mainStart+"px";style.marginTop=target.mainBefore+"px";style.marginRight=target.crossAfter+"px";style.marginBottom=target.mainAfter+"px";style.marginLeft=target.crossBefore+"px";} +if(target.mainAxis==="inline"){style.width=target.mainAround-target.mainBefore-target.mainAfter+"px";style.height=target.crossAround-target.crossBefore-target.crossAfter+"px";}else{if(target.cross==="auto"){style.width=target.crossClient-target.crossBefore-target.crossAfter+"px";}else{style.width=target.crossAround-target.crossBefore-target.crossAfter+"px";} +if(target.main==="auto"){style.height=target.mainClient-target.mainBefore-target.mainAfter+"px";}else{style.height=target.mainAround-target.mainBefore-target.mainAfter+"px";}}}else{if(!style.position){style.position="relative";} +if(target.mainAxis==="inline"){style.width=target.mainAround-target.mainBefore-target.mainAfter+"px";style.height=target.crossAround-target.crossBefore-target.crossAfter+"px";}else{style.width=target.crossAround-target.crossBefore-target.crossAfter+"px";style.height=target.mainAround-target.mainBefore-target.mainAfter+"px";}} +if(target.children){target.children.forEach(function(child){module.exports(child);});}};},{}]},{},[13])(13);});;/*! responsive-nav.js 1.0.39 +* https://github.com/viljamis/responsive-nav.js +* http://responsive-nav.com +* +* Copyright (c) 2015 @viljamis +* Available under the MIT license +Licensed under the MIT license. +Copyright (c) 2013 Viljami Salminen, http://viljamis.com/ +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/(function(document,window,index){"use strict";var responsiveNav=function(el,options){var computed=!!window.getComputedStyle;if(!computed){window.getComputedStyle=function(el){this.el=el;this.getPropertyValue=function(prop){var re=/(\-([a-z]){1})/g;if(prop==="float"){prop="styleFloat";} +if(re.test(prop)){prop=prop.replace(re,function(){return arguments[2].toUpperCase();});} +return el.currentStyle[prop]?el.currentStyle[prop]:null;};return this;};} +var addEvent=function(el,evt,fn,bubble){if("addEventListener"in el){try{el.addEventListener(evt,fn,bubble);}catch(e){if(typeof fn==="object"&&fn.handleEvent){el.addEventListener(evt,function(e){fn.handleEvent.call(fn,e);},bubble);}else{throw e;}}}else if("attachEvent"in el){if(typeof fn==="object"&&fn.handleEvent){el.attachEvent("on"+evt,function(){fn.handleEvent.call(fn);});}else{el.attachEvent("on"+evt,fn);}}},removeEvent=function(el,evt,fn,bubble){if("removeEventListener"in el){try{el.removeEventListener(evt,fn,bubble);}catch(e){if(typeof fn==="object"&&fn.handleEvent){el.removeEventListener(evt,function(e){fn.handleEvent.call(fn,e);},bubble);}else{throw e;}}}else if("detachEvent"in el){if(typeof fn==="object"&&fn.handleEvent){el.detachEvent("on"+evt,function(){fn.handleEvent.call(fn);});}else{el.detachEvent("on"+evt,fn);}}},getChildren=function(e){if(e.children.length<1){throw new Error("The Nav container has no containing elements");} +var children=[];for(var i=0;i10||Math.abs(e.touches[0].clientY-this.startY)>10){this.touchHasMoved=true;}},_onTouchEnd:function(e){this._preventDefault(e);if(!isMobile){return;} +if(!this.touchHasMoved){if(e.type==="touchend"){this.toggle();return;}else{var evt=e||window.event;if(!(evt.which===3||evt.button===2)){this.toggle();}}}},_onKeyUp:function(e){var evt=e||window.event;if(evt.keyCode===13){this.toggle();}},_transitions:function(){if(opts.animate){var objStyle=nav.style,transition="max-height "+opts.transition+"ms";objStyle.WebkitTransition=objStyle.MozTransition=objStyle.OTransition=objStyle.transition=transition;}},_calcHeight:function(){var savedHeight=0;for(var i=0;i + - - - https://lomorage.com/en/sitemap.xml - - 2020-05-17T13:43:40+00:00 - - - - - https://lomorage.com/es/sitemap.xml - - - - - https://lomorage.com/zh/sitemap.xml - - 2020-07-19T21:04:40+00:00 - - - + + + http://lomorage.com/en/sitemap.xml + + 2020-11-16T22:43:40+00:00 + + + + + http://lomorage.com/zh/sitemap.xml + + 2020-11-16T22:43:40+00:00 + + + diff --git a/survey/index.html b/survey/index.html new file mode 100644 index 00000000..5520b30d --- /dev/null +++ b/survey/index.html @@ -0,0 +1,248 @@ + + + + + + + + + + Survey | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +
    +
    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/tags/container/index.html b/tags/container/index.html new file mode 100644 index 00000000..a78a1dfd --- /dev/null +++ b/tags/container/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Container | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Run Lomoage Docker in Windows 10

    +
    +

    + + + + in Docker + + + +

    +

    + November 16, 2020 +

    +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +

    Continue reading +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/tags/container/index.xml b/tags/container/index.xml new file mode 100644 index 00000000..4ebe2885 --- /dev/null +++ b/tags/container/index.xml @@ -0,0 +1,20 @@ + + + + Container on Lomorage + http://lomorage.com/tags/container/ + Recent content in Container on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + + + + diff --git a/tags/container/page/1/index.html b/tags/container/page/1/index.html new file mode 100644 index 00000000..40bae60c --- /dev/null +++ b/tags/container/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/tags/container/ \ No newline at end of file diff --git a/tags/covid-19/index.html b/tags/covid-19/index.html index 15bf9e26..a53d7e08 100644 --- a/tags/covid-19/index.html +++ b/tags/covid-19/index.html @@ -1,463 +1,294 @@ + + + + + + + + Covid-19 | Lomorage + + - - - - - - - - - - Covid 19 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Covid 19

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -

    - - - - in Dashboard - - - -

    -

    - March 29, 2020 -

    -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/covid-19/index.xml b/tags/covid-19/index.xml index c00660c1..28e2c4cd 100644 --- a/tags/covid-19/index.xml +++ b/tags/covid-19/index.xml @@ -1,24 +1,20 @@ - + - Covid 19 on Lomorage - https://lomorage.com/tags/covid-19/ - Recent content in Covid 19 on Lomorage + Covid-19 on Lomorage + http://lomorage.com/tags/covid-19/ + Recent content in Covid-19 on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> - \ No newline at end of file + diff --git a/tags/covid-19/page/1/index.html b/tags/covid-19/page/1/index.html index fd32c79b..7c5f79c4 100644 --- a/tags/covid-19/page/1/index.html +++ b/tags/covid-19/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/covid-19/ \ No newline at end of file +http://lomorage.com/tags/covid-19/ \ No newline at end of file diff --git a/tags/dashboard/index.html b/tags/dashboard/index.html index 8de1d53b..a0ac7ea6 100644 --- a/tags/dashboard/index.html +++ b/tags/dashboard/index.html @@ -1,463 +1,294 @@ + + + + + + + + dashboard | Lomorage + + - - - - - - - - - - Dashboard - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Dashboard

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -

    - - - - in Dashboard - - - -

    -

    - March 29, 2020 -

    -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/dashboard/index.xml b/tags/dashboard/index.xml index c472bcb4..6ad4cf5b 100644 --- a/tags/dashboard/index.xml +++ b/tags/dashboard/index.xml @@ -1,24 +1,20 @@ - + - Dashboard on Lomorage - https://lomorage.com/tags/dashboard/ - Recent content in Dashboard on Lomorage + dashboard on Lomorage + http://lomorage.com/tags/dashboard/ + Recent content in dashboard on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> - \ No newline at end of file + diff --git a/tags/dashboard/page/1/index.html b/tags/dashboard/page/1/index.html index ae3cc8d4..7a18b98a 100644 --- a/tags/dashboard/page/1/index.html +++ b/tags/dashboard/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/dashboard/ \ No newline at end of file +http://lomorage.com/tags/dashboard/ \ No newline at end of file diff --git a/tags/docker/index.html b/tags/docker/index.html new file mode 100644 index 00000000..5c6dcf70 --- /dev/null +++ b/tags/docker/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Docker | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Run Lomoage Docker in Windows 10

    +
    +

    + + + + in Docker + + + +

    +

    + November 16, 2020 +

    +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +

    Continue reading +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/tags/docker/index.xml b/tags/docker/index.xml new file mode 100644 index 00000000..1ee47eec --- /dev/null +++ b/tags/docker/index.xml @@ -0,0 +1,20 @@ + + + + Docker on Lomorage + http://lomorage.com/tags/docker/ + Recent content in Docker on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + + + + diff --git a/tags/docker/page/1/index.html b/tags/docker/page/1/index.html new file mode 100644 index 00000000..a93cde10 --- /dev/null +++ b/tags/docker/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/tags/docker/ \ No newline at end of file diff --git a/tags/flash-drive/index.html b/tags/flash-drive/index.html index 436a937a..f5fb0dd5 100644 --- a/tags/flash-drive/index.html +++ b/tags/flash-drive/index.html @@ -1,463 +1,294 @@ + + + + + + + + Flash Drive | Lomorage + + - - - - - - - - - - Flash Drive - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Flash Drive

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/flash-drive/index.xml b/tags/flash-drive/index.xml index 9648f1c8..fbeace16 100644 --- a/tags/flash-drive/index.xml +++ b/tags/flash-drive/index.xml @@ -1,24 +1,20 @@ - + Flash Drive on Lomorage - https://lomorage.com/tags/flash-drive/ + http://lomorage.com/tags/flash-drive/ Recent content in Flash Drive on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/flash-drive/page/1/index.html b/tags/flash-drive/page/1/index.html index 3f0d85cd..be929eef 100644 --- a/tags/flash-drive/page/1/index.html +++ b/tags/flash-drive/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/flash-drive/ \ No newline at end of file +http://lomorage.com/tags/flash-drive/ \ No newline at end of file diff --git a/tags/hard-disk/index.html b/tags/hard-disk/index.html index 8d1b976a..a6824b4e 100644 --- a/tags/hard-disk/index.html +++ b/tags/hard-disk/index.html @@ -1,463 +1,294 @@ + + + + + + + + Hard Disk | Lomorage + + - - - - - - - - - - Hard Disk - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Hard Disk

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/hard-disk/index.xml b/tags/hard-disk/index.xml index 0f6b86d9..0d52f82f 100644 --- a/tags/hard-disk/index.xml +++ b/tags/hard-disk/index.xml @@ -1,24 +1,20 @@ - + Hard Disk on Lomorage - https://lomorage.com/tags/hard-disk/ + http://lomorage.com/tags/hard-disk/ Recent content in Hard Disk on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/hard-disk/page/1/index.html b/tags/hard-disk/page/1/index.html index 4b457eb0..a21562b5 100644 --- a/tags/hard-disk/page/1/index.html +++ b/tags/hard-disk/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/hard-disk/ \ No newline at end of file +http://lomorage.com/tags/hard-disk/ \ No newline at end of file diff --git a/tags/index.html b/tags/index.html index d8d3c9e6..67168b33 100644 --- a/tags/index.html +++ b/tags/index.html @@ -1,399 +1,21 @@ - - + + + + + + + + Tags | Lomorage + + - - - - - - - - - - Tags - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Tags

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - + - - + + + + - - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - +

    Tags

    + + + + - - diff --git a/tags/index.xml b/tags/index.xml index 5818a973..ed579008 100644 --- a/tags/index.xml +++ b/tags/index.xml @@ -1,105 +1,128 @@ - + Tags on Lomorage - https://lomorage.com/tags/ + http://lomorage.com/tags/ Recent content in Tags on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - + Mon, 16 Nov 2020 22:43:40 +0000 + + Container + http://lomorage.com/tags/container/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/tags/container/ + + + + Docker + http://lomorage.com/tags/docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/tags/docker/ + + - Covid 19 - https://lomorage.com/tags/covid-19/ - Sun, 29 Mar 2020 22:43:40 +0000 + Lomorage + http://lomorage.com/tags/lomorage/ + Mon, 16 Nov 2020 22:43:40 +0000 - https://lomorage.com/tags/covid-19/ + http://lomorage.com/tags/lomorage/ - Dashboard - https://lomorage.com/tags/dashboard/ - Sun, 29 Mar 2020 22:43:40 +0000 + MyCloud + http://lomorage.com/tags/mycloud/ + Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/tags/dashboard/ + http://lomorage.com/tags/mycloud/ - Flash Drive - https://lomorage.com/tags/flash-drive/ - Tue, 24 Dec 2019 13:43:40 +0000 + 迁移 + http://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ + Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/tags/flash-drive/ + http://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ - Hard Disk - https://lomorage.com/tags/hard-disk/ - Tue, 24 Dec 2019 13:43:40 +0000 + Covid-19 + http://lomorage.com/tags/covid-19/ + Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/tags/hard-disk/ + http://lomorage.com/tags/covid-19/ - Mycloud - https://lomorage.com/tags/mycloud/ - Sun, 17 May 2020 13:43:40 +0000 + dashboard + http://lomorage.com/tags/dashboard/ + Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/tags/mycloud/ + http://lomorage.com/tags/dashboard/ Raspberry Pi - https://lomorage.com/tags/raspberry-pi/ + http://lomorage.com/tags/raspberry-pi/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/tags/raspberry-pi/ + http://lomorage.com/tags/raspberry-pi/ - Restore - https://lomorage.com/tags/restore/ + Flash Drive + http://lomorage.com/tags/flash-drive/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/tags/restore/ + http://lomorage.com/tags/flash-drive/ - Secondary Backup - https://lomorage.com/tags/secondary-backup/ + Hard Disk + http://lomorage.com/tags/hard-disk/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/tags/secondary-backup/ + http://lomorage.com/tags/hard-disk/ - Usb Hub - https://lomorage.com/tags/usb-hub/ + Restore + http://lomorage.com/tags/restore/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/tags/usb-hub/ + http://lomorage.com/tags/restore/ - 迁移 - https://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ - Sun, 17 May 2020 13:43:40 +0000 + secondary backup + http://lomorage.com/tags/secondary-backup/ + Tue, 24 Dec 2019 13:43:40 +0000 + + http://lomorage.com/tags/secondary-backup/ + + + + + USB Hub + http://lomorage.com/tags/usb-hub/ + Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ + http://lomorage.com/tags/usb-hub/ - \ No newline at end of file + diff --git a/tags/lomorage/index.html b/tags/lomorage/index.html new file mode 100644 index 00000000..ce0e0886 --- /dev/null +++ b/tags/lomorage/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Lomorage | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Run Lomoage Docker in Windows 10

    +
    +

    + + + + in Docker + + + +

    +

    + November 16, 2020 +

    +
    +

    Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, Download Lomorage Windows Installer

    +

    Continue reading +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/tags/lomorage/index.xml b/tags/lomorage/index.xml new file mode 100644 index 00000000..6f0d7f25 --- /dev/null +++ b/tags/lomorage/index.xml @@ -0,0 +1,20 @@ + + + + Lomorage + http://lomorage.com/tags/lomorage/ + Recent content on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + Run Lomoage Docker in Windows 10 + http://lomorage.com/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/blog/2020/11/16/windows-docker/ + <p>Though Lomorage already provide Windows Native MSI package, But if you like to run Docker image in Windows, please follow below steps to do so. Esp. on Windows Server, Docker can leverage the Windows HYPER-v technology,and let the Lomorage running faster. If you do not know what is Docker, you also can download the native Lomorage installer for Windows, <a href="https://lomorage.com/zh/installation-win/">Download Lomorage Windows Installer</a>。</p> + + + + diff --git a/tags/lomorage/page/1/index.html b/tags/lomorage/page/1/index.html new file mode 100644 index 00000000..b908486e --- /dev/null +++ b/tags/lomorage/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/tags/lomorage/ \ No newline at end of file diff --git a/tags/mycloud/index.html b/tags/mycloud/index.html index 7cd684e8..de565db4 100644 --- a/tags/mycloud/index.html +++ b/tags/mycloud/index.html @@ -1,466 +1,297 @@ + + + + + + + + MyCloud | Lomorage + + - - - - - - - - - - Mycloud - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Mycloud

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Move MyCloud to Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Move MyCloud to Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - Now let me introduce how to import / move MyCloud data to Lomorage.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +keep the computer on to copy the files to MyCloud disk. +Now let me introduce how to import / move MyCloud data to Lomorage.

    +

    Continue reading +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/mycloud/index.xml b/tags/mycloud/index.xml index bd48ee82..184f4a6a 100644 --- a/tags/mycloud/index.xml +++ b/tags/mycloud/index.xml @@ -1,27 +1,23 @@ - + - Mycloud on Lomorage - https://lomorage.com/tags/mycloud/ - Recent content in Mycloud on Lomorage + MyCloud on Lomorage + http://lomorage.com/tags/mycloud/ + Recent content in MyCloud on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - - + Sun, 17 May 2020 13:43:40 +0000 Move MyCloud to Lomorage - https://lomorage.com/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the + http://lomorage.com/blog/2020/05/17/import_my_cloud/ + <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - <strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> +keep the computer on to copy the files to MyCloud disk. +<strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> - \ No newline at end of file + diff --git a/tags/mycloud/page/1/index.html b/tags/mycloud/page/1/index.html index 193f583b..81f52244 100644 --- a/tags/mycloud/page/1/index.html +++ b/tags/mycloud/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/mycloud/ \ No newline at end of file +http://lomorage.com/tags/mycloud/ \ No newline at end of file diff --git a/tags/raspberry-pi/index.html b/tags/raspberry-pi/index.html index 469b09ed..35c141df 100644 --- a/tags/raspberry-pi/index.html +++ b/tags/raspberry-pi/index.html @@ -1,497 +1,328 @@ + + + + + + + + Raspberry Pi | Lomorage + + - - - - - - - - - - Raspberry Pi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - + + + -
    + + + + + + + + + + + + + + + + + + + + + + + -
    -
    -
    -
    -

    Raspberry Pi

    -
    -
    -
    -
    + + + -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Covid-19 dashboard using Raspberry Pi

    -
    -

    - - - - in Dashboard - - - -

    -

    - March 29, 2020 -

    -
    -

    It’s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.

    -

    Continue reading -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/raspberry-pi/index.xml b/tags/raspberry-pi/index.xml index 517b9685..3f54dee1 100644 --- a/tags/raspberry-pi/index.xml +++ b/tags/raspberry-pi/index.xml @@ -1,33 +1,29 @@ - + Raspberry Pi on Lomorage - https://lomorage.com/tags/raspberry-pi/ + http://lomorage.com/tags/raspberry-pi/ Recent content in Raspberry Pi on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 Setup Covid-19 dashboard using Raspberry Pi - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/blog/2020/03/29/covid19/ + http://lomorage.com/blog/2020/03/29/covid19/ <p>It&rsquo;s hard time for everyone, covid-19 is spreading the world, even though you can easily getting the news on your finger tips, it still helpful to setup a dedicated dashboard to show the statistics and relating news of covid-19. The following gives step by step guide to customize your covid-19 dashboard using Raspberry Pi.</p> Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/raspberry-pi/page/1/index.html b/tags/raspberry-pi/page/1/index.html index 27b139c3..8f292c7c 100644 --- a/tags/raspberry-pi/page/1/index.html +++ b/tags/raspberry-pi/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/raspberry-pi/ \ No newline at end of file +http://lomorage.com/tags/raspberry-pi/ \ No newline at end of file diff --git a/tags/restore/index.html b/tags/restore/index.html index 1b8e2548..64082127 100644 --- a/tags/restore/index.html +++ b/tags/restore/index.html @@ -1,463 +1,294 @@ + + + + + + + + Restore | Lomorage + + - - - - - - - - - - Restore - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Restore

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/restore/index.xml b/tags/restore/index.xml index e90d087e..a95ce3bc 100644 --- a/tags/restore/index.xml +++ b/tags/restore/index.xml @@ -1,24 +1,20 @@ - + Restore on Lomorage - https://lomorage.com/tags/restore/ + http://lomorage.com/tags/restore/ Recent content in Restore on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/restore/page/1/index.html b/tags/restore/page/1/index.html index e2b6095a..64114258 100644 --- a/tags/restore/page/1/index.html +++ b/tags/restore/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/restore/ \ No newline at end of file +http://lomorage.com/tags/restore/ \ No newline at end of file diff --git a/tags/secondary-backup/index.html b/tags/secondary-backup/index.html index 4c0397bc..287efc43 100644 --- a/tags/secondary-backup/index.html +++ b/tags/secondary-backup/index.html @@ -1,463 +1,294 @@ + + + + + + + + secondary backup | Lomorage + + - - - - - - - - - - Secondary Backup - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Secondary Backup

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/secondary-backup/index.xml b/tags/secondary-backup/index.xml index 12f3b992..2068e8e6 100644 --- a/tags/secondary-backup/index.xml +++ b/tags/secondary-backup/index.xml @@ -1,24 +1,20 @@ - + - Secondary Backup on Lomorage - https://lomorage.com/tags/secondary-backup/ - Recent content in Secondary Backup on Lomorage + secondary backup on Lomorage + http://lomorage.com/tags/secondary-backup/ + Recent content in secondary backup on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/secondary-backup/page/1/index.html b/tags/secondary-backup/page/1/index.html index 5b8edd01..32bc770f 100644 --- a/tags/secondary-backup/page/1/index.html +++ b/tags/secondary-backup/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/secondary-backup/ \ No newline at end of file +http://lomorage.com/tags/secondary-backup/ \ No newline at end of file diff --git a/tags/usb-hub/index.html b/tags/usb-hub/index.html index 8ac43e65..af0252e8 100644 --- a/tags/usb-hub/index.html +++ b/tags/usb-hub/index.html @@ -1,463 +1,294 @@ + + + + + + + + USB Hub | Lomorage + + - - - - - - - - - - Usb Hub - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Usb Hub

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Setup Lomorage secondary backup with Raspberry Pi

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/tags/usb-hub/index.xml b/tags/usb-hub/index.xml index 34a0439f..8c670837 100644 --- a/tags/usb-hub/index.xml +++ b/tags/usb-hub/index.xml @@ -1,24 +1,20 @@ - + - Usb Hub on Lomorage - https://lomorage.com/tags/usb-hub/ - Recent content in Usb Hub on Lomorage + USB Hub on Lomorage + http://lomorage.com/tags/usb-hub/ + Recent content in USB Hub on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 Setup Lomorage secondary backup with Raspberry Pi - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/blog/2019/12/24/raspberrypi-hd/ <p>Photos and video are valuable assets, having a single backup is not enough, we at least should have secondary backup besides the primary backup, and ideally one more remote backup. Lomorage currently provide the option to setup a secondary backup. There are several options to do this.</p> - \ No newline at end of file + diff --git a/tags/usb-hub/page/1/index.html b/tags/usb-hub/page/1/index.html index d5f2b8cf..acf47f5b 100644 --- a/tags/usb-hub/page/1/index.html +++ b/tags/usb-hub/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/tags/usb-hub/ \ No newline at end of file +http://lomorage.com/tags/usb-hub/ \ No newline at end of file diff --git "a/tags/\350\277\201\347\247\273/index.html" "b/tags/\350\277\201\347\247\273/index.html" index 9d0d81e4..c3eaf075 100644 --- "a/tags/\350\277\201\347\247\273/index.html" +++ "b/tags/\350\277\201\347\247\273/index.html" @@ -1,466 +1,297 @@ + + + + + + + + 迁移 | Lomorage + + - - - - - - - - - - 迁移 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    迁移

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Move MyCloud to Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Move MyCloud to Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    I have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - Now let me introduce how to import / move MyCloud data to Lomorage.

    -

    Continue reading -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +keep the computer on to copy the files to MyCloud disk. +Now let me introduce how to import / move MyCloud data to Lomorage.

    +

    Continue reading +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    About us

    - - We are a small team believe that distributed web is the future, - and we focus on building the private photo cloud based on DWeb technologies in the first place. - - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/tags/\350\277\201\347\247\273/index.xml" "b/tags/\350\277\201\347\247\273/index.xml" index ad3ad954..f950b0f2 100644 --- "a/tags/\350\277\201\347\247\273/index.xml" +++ "b/tags/\350\277\201\347\247\273/index.xml" @@ -1,27 +1,23 @@ - + 迁移 on Lomorage - https://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ + http://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ Recent content in 迁移 on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - - + Sun, 17 May 2020 13:43:40 +0000 Move MyCloud to Lomorage - https://lomorage.com/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/blog/2020/05/17/import_my_cloud/ - <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the + http://lomorage.com/blog/2020/05/17/import_my_cloud/ + <p><strong>I</strong> have ever bought one MyCloud 6T storage to save my photos and videos, but you know, the My Cloud app is not good to use, so everything I have to connect to my phone with USB cable, and -keep the computer on to copy the files to MyCloud disk. - <strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> +keep the computer on to copy the files to MyCloud disk. +<strong>Now</strong> let me introduce how to import / move MyCloud data to Lomorage.</p> - \ No newline at end of file + diff --git "a/tags/\350\277\201\347\247\273/page/1/index.html" "b/tags/\350\277\201\347\247\273/page/1/index.html" index 94278bb6..5f18b0da 100644 --- "a/tags/\350\277\201\347\247\273/page/1/index.html" +++ "b/tags/\350\277\201\347\247\273/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ \ No newline at end of file +http://lomorage.com/tags/%E8%BF%81%E7%A7%BB/ \ No newline at end of file diff --git a/video/Lomorage-tutorial.mp4 b/video/Lomorage-tutorial.mp4 new file mode 100644 index 00000000..88f7af5f Binary files /dev/null and b/video/Lomorage-tutorial.mp4 differ diff --git a/video/Lomorage-tutorial.zh.mp4 b/video/Lomorage-tutorial.zh.mp4 new file mode 100644 index 00000000..2397e22d Binary files /dev/null and b/video/Lomorage-tutorial.zh.mp4 differ diff --git a/video/lomorage.mp4 b/video/lomorage.mp4 new file mode 100644 index 00000000..5bd7e541 Binary files /dev/null and b/video/lomorage.mp4 differ diff --git a/zh/404.html b/zh/404.html index d70ecfe8..5585d98c 100644 --- a/zh/404.html +++ b/zh/404.html @@ -27,7 +27,7 @@ - + @@ -69,7 +69,7 @@ - + @@ -112,13 +112,19 @@ + + @@ -207,7 +213,6 @@

    Error 404 - Page not found

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/blog/2019/12/24/raspberrypi-hd/index.html b/zh/blog/2019/12/24/raspberrypi-hd/index.html index afeebad4..e5705ea0 100644 --- a/zh/blog/2019/12/24/raspberrypi-hd/index.html +++ b/zh/blog/2019/12/24/raspberrypi-hd/index.html @@ -1,283 +1,206 @@ + + + + + + + + 树莓派设置冗余备份 | Lomorage + + - - - - - - - - - - 树莓派设置冗余备份 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    树莓派设置冗余备份

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    December 24, 2019

    - -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    - +
    +
    +
    + + +
    +

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    目录

    - + +
  • 从备份恢复
  • -

    树莓派设置冗余备份

    -

    您可以更加自己的需求来选择合适的方案。

    -

    方案1 (1个USB硬盘, 1个U盘, 使用同一个树莓派)

    -

    树莓派可以带一块USB 2.5存移动硬盘,再加一个U盘应该也没问题。但是通常硬盘比U盘的寿命更久,U盘的擦写次数有限,最好使用移动硬盘作为主备,U盘作为从备。

    -

    方案2 (2个USB硬盘, 使用同一个树莓派)

    -

    通常树莓派带不动两块硬盘,您需要购买一个带供电功能的USB分线器,这样两块硬盘都可以用USB分线器来供电。

    - -

    方案3 (2个USB硬盘分别运行在2个树莓派上)

    -

    两套环境运行在不同的地方可能会更加安全,Lomorage定制的系统镜像默认是已经开启了Samba文件共享服务,您可以将第二套环境里面的硬盘直接通过Samba方式,网络加载到第一套环境。

    - -

    比如,第二个树莓派的ip是”192.168.1.155”,硬盘加载到”/media/WD_90C27F73C27F5C82”目录。

    - +

    比如,第二个树莓派的ip是"192.168.1.155",硬盘加载到"/media/WD_90C27F73C27F5C82"目录。

    在第一个树莓派上,可以使用下面的命令加载第二个树莓派上连接的硬盘(请将ip和加载目录修改为您自己环境里的配置):

    -
    mkdir /media/WD_90C27F73C27F5C82
     
     # user pass is the username password on 2nd Pi, that is the default.
     # uid 1000 and gid 1000 is for mount it as user Pi on 1st Pi
     sudo mount.cifs //192.168.1.155/media/WD_90C27F73C27F5C82 /media/WD_90C27F73C27F5C82 -o user=pi,pass=raspberry,uid=1000,gid=1000
    -
    - -

    您也可以添加新条目到”/etc/fstab”, 这样下次系统启动的时候也能自动加载Samba网络存储:

    - +

    您也可以添加新条目到"/etc/fstab", 这样下次系统启动的时候也能自动加载Samba网络存储:

    //192.168.1.155/media/WD_90C27F73C27F5C82  /media/WD_90C27F73C27F5C82  cifs  user=pi,pass=raspberry,uid=1000,gid=1000
    -
    - -

    修改完后,您可以使用下面的命令来测试加载是否成功:

    - +

    修改完后,您可以使用下面的命令来测试加载是否成功:

    sudo mount -a
     sudo umount -a
    -
    - -

    注意: 即使第二个树莓派能自动发现,也不要在iOS App使用它,因为我们使用第一个主树莓派环境,并设置冗余备份到通过Samba方式加载的第二块树莓派连接的硬盘。当前我们不支持通过APP操作改方案,需要通过命令行方式,后续我们会添加通过APP操作的方式

    - +

    注意: 即使第二个树莓派能自动发现,也不要在iOS App使用它,因为我们使用第一个主树莓派环境,并设置冗余备份到通过Samba方式加载的第二块树莓派连接的硬盘。当前我们不支持通过APP操作改方案,需要通过命令行方式,后续我们会添加通过APP操作的方式

    方案4 (1个USB硬盘连接一个树莓派, NAS存储)

    -

    您可以使用您的NAS存储来做冗余备份,步骤和上面的方案3类似,通过Samba加载NAS存储。

    -

    用到的参数如下:

    -
      -
    • Samba服务地址 (如:192.168.1.155)

    • - -
    • Samba共享目录名 (如:WD_90C27F73C27F5C82)

    • - -
    • 树莓派硬盘加载目录 (如果使用Lomorage定制OS镜像,加载目录路径是”/media”;如果您的加载目录路径是其他的,您可以使用”–mount-dir”命令行参数来运行lomod)

    • - -
    • Samba服务的用户名和密码

    • +
    • +

      Samba服务地址 (如:192.168.1.155)

      +
    • +
    • +

      Samba共享目录名 (如:WD_90C27F73C27F5C82)

      +
    • +
    • +

      树莓派硬盘加载目录 (如果使用Lomorage定制OS镜像,加载目录路径是"/media";如果您的加载目录路径是其他的,您可以使用"–mount-dir"命令行参数来运行lomod)

      +
    • +
    • +

      Samba服务的用户名和密码

      +
    -

    从备份恢复

    +

    如果您的主备硬盘不幸坏掉来,您可以使用从备份来恢复。所有的文件包括照片视频和数据库都会备份,您可以从用户目录下拷贝"assets.db"到"/opt/lomorage/var/assets.db"目录下,并修改"assets.db"中"user"表,将"home_dir"设置为您新的磁盘加载路径。我们后续会让恢复功能更容易使用,但现在您只能手工操作,如果您碰到问题不能解决,可以加入我们的slack channel或者[邮件](mailto: support@lomorage.com)联系我们帮您解决。

    -

    如果您的主备硬盘不幸坏掉来,您可以使用从备份来恢复。所有的文件包括照片视频和数据库都会备份,您可以从用户目录下拷贝”assets.db”到”/opt/lomorage/var/assets.db”目录下,并修改”assets.db”中”user”表,将”home_dir”设置为您新的磁盘加载路径。我们后续会让恢复功能更容易使用,但现在您只能手工操作,如果您碰到问题不能解决,可以加入我们的slack channel或者邮件联系我们帮您解决。

    -
    - - -
    -
    + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - - - - - - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/2019/12/24/transfer2pc/index.html b/zh/blog/2019/12/24/transfer2pc/index.html index e7f2587a..de62a20a 100644 --- a/zh/blog/2019/12/24/transfer2pc/index.html +++ b/zh/blog/2019/12/24/transfer2pc/index.html @@ -1,267 +1,187 @@ + + + + + + + + 利用lomorage把照片和视频传到Windows | Lomorage + + - - - - - - - - - - 利用lomorage把照片和视频传到Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    利用lomorage把照片和视频传到Windows

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    December 24, 2019

    - -
    -

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    - +
    +
    +
    + + +
    +

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。 近期经朋友推荐,发现了 Lomorage 这个软件,立马试用了一下,觉得简直是为我量身定制的。 今天,就让我们来看看lomorage是怎么轻松做到的。

    -

    1. 下载安装Lomorage 在windows上的服务程序

    -

    从Lomorage的官网 https://lomorage.com/zh/installation-win/ 下载Windows的程序,按照网页的说明完成安装,然后运行Lomoagent程序,如下图:

    - -

    - +

    :): 目前只有英文版,我立马给Lomorage 发送了反馈,被告知他们会很快推出中文版本和其他语言版本。期待!

    -

    【本步骤可选】您可以设置您想把从手机传过来的照片存放在哪里,如下图, 点击 Set 按钮选择您想要的目录

    - -

    - +

    【说明】如果您不知道上图中的IP Address 和 Port 是什么意思,请您忽略,这个完全不影响您使用Lomorage

    -

    2. 下载安装Lomorage 手机程序

    -

    可以从 苹果应用商店下载 Lomorage App, 运行起来之后,如下图

    - -

    - +

    点击 下一步, 手机APP 会自动发现您的服务程序,如下图,您可以输入用户名,密码创建一个账号 之后登录成功,您可以给家人创建账号一起来分享照片,这个我下一篇再讲。

    - -

    - +

    账号创建成功会有权限访问提醒,一路点击 好 就可以了

    - -

    - +

    Lomorage 会初始化您手机上的照片和视频,并计算它们的唯一特征值,以防止重复备份

    - -

    - +

    初始化的过程有快慢,决定于您的照片和视频的数量,但现在iPhone的运算能力已经很强,1000张照片,只需要1-2分钟 当初始化完成之后,Lomorage的提醒还是很贴心,会告诉您有多少个资源(包含照片和视频),然后往下拉,备份就开始了

    - -

    - +

    您的照片会通过无线网络传到您的Windows 机器上。 可以在Windows 的托盘区域,打开存照片的目录, 如下图操作步骤:

    - -

    - +

    您的照片按照年份自动分好类的放在那里,您可以按您的习惯来浏览来自您手机的照片和视频,真的很棒! 如下图:

    - -

    - +

    请关注Blog 下一篇 我会写一写 如何利用Lomorage和家人分享照片,请期待!

    - -

    3.结论

    - +

    3.结论

    对于在IT行业呆了很多年的我,个人觉得Lomorage 解决了一个难题: 如何方便智能的备份您手机的照片和视频,并且安全的分享。虽然市面上有很多手机助手的软件, 但从我的使用来看,没一个厂商把这一块做的简单易用,并且支持我的MacOS的。而且Lomorage的服务程序可以跑在树莓派上,这一点也是其他软件没有的。 当我和Lomorage 的团队联系的时候,他们给我发了Lomorage的 网页测试版本,可以在电视机上浏览照片,真的是很好的一个体验,我会在接下来的几篇来 -好好介绍它。

    -
    - - -
    -
    +好好介绍它。

    + + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - - - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/2020/03/29/covid19/index.html b/zh/blog/2020/03/29/covid19/index.html index 1fdaa39e..17c813a1 100644 --- a/zh/blog/2020/03/29/covid19/index.html +++ b/zh/blog/2020/03/29/covid19/index.html @@ -1,255 +1,186 @@ + + + + + + + + 使用树莓派制作新冠病毒电子看板 | Lomorage + + - - - - - - - - - - 使用树莓派制作新冠病毒电子看板 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    March 29, 2020

    - -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    - +
    +
    +
    + + +
    +

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    目录

    - + +
  • 准备投入使用
  • +
  • 1. 配置树莓派
  • +
  • 2. 开机启动MagicMirror
  • +
  • 3. 添加Cronjob启动关闭MagicMirror
  • + + -

    准备工作

    -

    您需要一个树莓派和HDMI的显示器,你可以放置一个大屏幕在客厅,也可以在桌面上放置一个小屏幕作为摆台。

    - -

    注意: 树莓派0/1不支持,NodeJS不支持”armv6l”平台了。

    - +

    注意: 树莓派0/1不支持,NodeJS不支持"armv6l"平台了。

    工作原理

    -

    使用的开源软件有MagicMirrorcovid-19模块.

    -

    MagicMirror是一个开源的智能镜子平台, 但实际上使用它并不需要一面镜子,它可以被用来定制电子看板。MagicMirror的客户端和服务器程序使用了Nodejs,服务器通过http提供看板服务,客户端使用Electron,运行Kiosk模式, 也就是浏览器的全屏模式, 您也可以运行“服务器模式”,并在另外一台电脑的浏览器上访问电子看板。

    -

    MagicMirror定义的如下的布局,您可以选择把模块放置的看板特定的位置。

    - -

    layout

    - +

    layout

    模块定义了如何获取和显示数据。

    -

    大体上来说就这么简单!

    -

    安装

    -

    如果您使用的是lite的系统镜像,您需要先安装桌面系统。

    -
    sudo apt-get update 
     sudo apt-get -y dist-upgrade
     sudo apt-get install raspberrypi-ui-mods -y
    @@ -259,61 +190,35 @@ 

    安装

    sudo apt install ca-certificates python-certifi python3-certifi -y sudo apt-get install -y --reinstall ca-certificates sudo update-ca-certificates --fresh -
    - -

    1. 安装最新版本的NodeJS

    - +

    1. 安装最新版本的NodeJS

    NodeJs-Raspberry-Pi能非常方便的一行命令安装NodeJS:

    -
    $ wget -O - https://raw.githubusercontent.com/audstanley/NodeJs-Raspberry-Pi/master/Install-Node.sh | sudo bash; node -v
    -
    - -

    使用”apt install”很有可能不会安装新版本的NodeJS,MagicMirror在后续的安装过程只会报错。

    - +

    使用"apt install"很有可能不会安装新版本的NodeJS,MagicMirror在后续的安装过程只会报错。

    2. 安装MagicMirror

    -
    $ git clone https://github.com/MichMich/MagicMirror
     $ cd MagicMirror/
     $ npm install
    -
    - -

    3. 使用默认的配置模版

    - +

    3. 使用默认的配置模版

    MagicMirror已经安装了一些默认模块.

    -
    # 假设在MagicMirror目录
     $ cp config/config.js.sample config/config.js
     
     # 可以使用"ctrl+c"停止, 下面的运行方式仅仅用于测试
     $ npm run
    -
    - -

    您可以尝试去修改”config.js”中模块的选项,比如,您可以给”News Feed”模块添加更多的RSS源:

    - +

    您可以尝试去修改"config.js"中模块的选项,比如,您可以给"News Feed"模块添加更多的RSS源:

    {
        title: "BBC",
        url: "http://feeds.bbci.co.uk/news/video_and_audio/news_front_page/rss.xml?edition=us"
     },
    -
    - -

    您也可以更加上面的布局图来修改模块的位置(”position”参数)。

    - -

    您也可以修改默认的语言(”language”参数),https://github.com/MichMich/MagicMirror/tree/master/translations可以查看所有可用的语言选项。改成其他语言要记得安装相关的字体,比如中文字体:

    - +

    您也可以更加上面的布局图来修改模块的位置(“position"参数)。

    +

    您也可以修改默认的语言(“language"参数),https://github.com/MichMich/MagicMirror/tree/master/translations可以查看所有可用的语言选项。改成其他语言要记得安装相关的字体,比如中文字体:

    sudo apt install -y fonts-arphic-uming ttf-wqy-microhei
    -
    - -

    4. 安装MMM-COVID19模块

    - -

    将模块安装在”modules”目录下:

    - +

    4. 安装MMM-COVID19模块

    +

    将模块安装在"modules"目录下:

    # 假设在MagicMirror目录
     $ cd modules
     $ git clone https://github.com/bibaldo/MMM-COVID19
    -
    - -

    然后在”config/config.js”文件中添加模块的配置, 在https://rapidapi.com/注册,将下面的”get-your-api-key”替换为您自己的API密钥。https://rapidapi.com/astsiatsko/api/coronavirus-monitor,”X-RapidAPI-Key”就是API密钥。

    - +

    然后在"config/config.js"文件中添加模块的配置, 在https://rapidapi.com/注册,将下面的"get-your-api-key"替换为您自己的API密钥。https://rapidapi.com/astsiatsko/api/coronavirus-monitor,“X-RapidAPI-Key"就是API密钥。

      {
         module: 'MMM-COVID19',
         position: "bottom_bar",
    @@ -327,68 +232,46 @@ 

    4. 安装MMM-COVID19模块

    rapidapiKey: "get-your-api-key", } }, -
    - -

    修改了”config/config.js”后,您需要重启MagicMirror。

    - +

    修改了"config/config.js"后,您需要重启MagicMirror。

    5. 为MMM-COVID19添加更多的数据源

    -

    默认的数据源缺少一些详细信息,比如没有美国每个郡县的统计,没有中国城市的统计。您也可以添加其他的数据源,但那个就不仅仅是简单的配置了,需要修改一些代码,因为不同的数据源的格式不一样。

    -

    这里有个改动示例添加了美国郡县的统计数据,并做了汉化。这个改动示例添加了中国城市的统计数据。

    -

    美国的数据来源https://github.com/ExpDev07/coronavirus-tracker-api,中国的数据来源https://c.m.163.com/ug/api/wuhan/app/data/list-total,都不需要申请API密钥。

    -

    其他的数据源https://github.com/pomber/covid19, 您也可以自行去网上查找合适的数据源,并对代码做相应的改动。

    -

    6. 获取更多的模块

    -

    这个wiki列举了所有的第三方模块。最上面的示例图片使用了下面的模块:

    - -

    您也可以根据自己的需求尝试其他的模块。

    -

    准备投入使用

    -

    测试好电子看板后,您还需要一些额外的配置,才能将其投入使用。

    -

    1. 配置树莓派

    -

    您需要关掉屏保,禁止无线网卡的休眠模式,打开OpenGL驱动,参考wiki进行配置。

    - -

    注意: 关闭屏保那一步,在修改”/etc/xdg/lxsession/LXDE-pi/autostart”文件时, 需要注释掉这一行”@xscreensaver -no-splash”(使用#),这个在上面的说明里面没有

    - +

    注意: 关闭屏保那一步,在修改”/etc/xdg/lxsession/LXDE-pi/autostart"文件时, 需要注释掉这一行”@xscreensaver -no-splash”(使用#),这个在上面的说明里面没有

    @lxpanel --profile LXDE-pi
     @pcmanfm --desktop --profile LXDE-pi
     #@xscreensaver -no-splash
     @xset s noblank
     @xset s off
     @xset -dpms
    -
    - -

    2. 开机启动MagicMirror

    - +

    2. 开机启动MagicMirror

    参考wiki设置MagicMirror开机启动。

    - -

    注意: 如果安装了pm2后却找不到这个命令,您需要将PATH="/opt/nodejs/bin:$PATH"添加到”~/.profile”文件中,然后source ~/.profile更新PATH环境变量

    - +

    注意: 如果安装了pm2后却找不到这个命令,您需要将PATH="/opt/nodejs/bin:$PATH"添加到"~/.profile"文件中,然后source ~/.profile更新PATH环境变量

    3. 添加Cronjob启动关闭MagicMirror

    - -

    在”/var/spool/cron/crontabs/pi”文件中添加如下的内容,控制MagicMirror在早上8 am启动,晚上9 pm关闭,并打开和关闭HDMI显示器。

    - +

    在"/var/spool/cron/crontabs/pi"文件中添加如下的内容,控制MagicMirror在早上8 am启动,晚上9 pm关闭,并打开和关闭HDMI显示器。

    00 08 * * * vcgencmd display_power 1;pm2 start mm
     00 21 * * * vcgencmd display_power 0;pm2 stop mm
    -
    -
    - - -
    -
    +
    + + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - + +
    + + + +
    +
    - - - - - - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/2020/05/17/import_my_cloud/index.html b/zh/blog/2020/05/17/import_my_cloud/index.html index ccc66be1..5bacf82e 100644 --- a/zh/blog/2020/05/17/import_my_cloud/index.html +++ b/zh/blog/2020/05/17/import_my_cloud/index.html @@ -1,368 +1,264 @@ + + + + + + + + 迁移MyCloud的数据到Lomorage | Lomorage + + - - - - - - - - - - 迁移MyCloud的数据到Lomorage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    迁移MyCloud的数据到Lomorage

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    May 17, 2020

    - -
    -

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, +

    +
    +
    + + +
    +

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。

    -

    目录

    - + +
  • 加载MyCloud的目录到Lomorage上
  • -
  • 开始导入MyCloud到Lomorage - +
  • 1. 用SSH客户端连上Lomorage服务器
  • +
  • 2. 加载MyCloud目录
  • +
  • 3. 查看MyCloud文件
  • + + +
  • 开始导入MyCloud到Lomorage
  • +
  • 1. 扫描文件信息
  • +
  • 2. 安装tmux
  • +
  • 3. 开始导入到Lomorage
  • + + -

    配置您的MyCloud

    -

    1. 打开MyCloud的SSH访问

    -

    打开MyCloud的管理页面,在设置页面,打开SSH,并且按照提示设置密码。如下图:

    -

    -

    2. 用SSH连上MyCloud

    -

    通过SSH 客户端,可以选用putty,用SSH连上MyCloud。

    -

    操作命令如下:

    -
    -

    ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.0.24

    +

    ssh -oHostKeyAlgorithms=+ssh-dss root@192.168.0.24

    -

    进入 nfs目录,查看你的共享目录有哪些。比如我的共享目录有如下图所示:

    -

    cd /nfs

    -

    -

    其中 Public 是我想要Mount到Lomorage的目录。

    -

    3. 编辑exports文件

    -

    在SSH 客户端运行如下命令:

    -

    sudo vi /etc/exports

    -

    然后黏贴如下的一行:

    -
    -

    /nfs/Public 192.168.0.124(rw,subtree_check,secure)

    +

    /nfs/Public 192.168.0.1/24(rw,subtree_check,secure)

    -

    如下图:

    -

    -

    其中 192.168.0.1 是你的路由器的地址, 请做相应的改动!

    -

    然后 保存 退出。如果对VI不熟悉的,可以自行google或者百度。 或者在本站联系Lomorage支持。 到此为止,MyCloud的配置算是完成了。

    -

    加载MyCloud的目录到Lomorage上

    -

    1. 用SSH客户端连上Lomorage服务器

    -

    在SSH客户端里,运行如下命令:

    -
    -

    ssh pi@192.168.0.40

    +

    ssh pi@192.168.0.40

    -

    pi 用户的默认密码是 raspberry

    -

    2. 加载MyCloud目录

    -

    新建一个目录:

    -

    cd /home/pi

    -

    sudo mkdir mycloud

    -

    运行以下命令加载MyCloud的目录

    -

    sudo mount 192.168.0.24:/nfs/Public /home/pi/mycloud

    -

    192.168.0.24 是前面步骤里MyCloud的IP地址,此处应改成你的MyCloud的IP地址。

    -

    如果上述命令有错误输出,请输入:

    -

    sudo rpcbind start

    -

    然后再重复 第一个命令:

    -

    sudo mount 192.168.0.24:/nfs/Public /home/pi/mycloud

    -

    3. 查看MyCloud文件

    -

    cd /home/pi/mycloud

    -

    这里你就可以看到MyCloud上的文件了。恭喜你,关键步骤成功了!!

    -

    开始导入MyCloud到Lomorage

    -

    1. 扫描文件信息

    -

    运行如下命令扫描你mount的目录

    -

    cd /opt/lomorage/bin

    - +
    +

    ./lomoc s /home/pi/mycloud

    -

    [mycloud 是你mount过来的MyCloud(西部数据磁盘)的目录]

    -

    如果照片视频多的话,这个过程可能需要花点时间。

    -

    扫描完之后,可以进入

    -

    ~/.lomo

    -

    来看看您有哪些是没有被分类的,因为有些照片和视频没有时间信息。 比如下面的图:

    -
    pi@raspberrypi-lomorage:~/.lomo/links/unclassfied $ ls -l
     total 20
     drwxr-xr-x 2 pi pi 4096 May 17 16:42  aisnote
    @@ -381,55 +277,38 @@ 

    1. 扫描文件信息

    drwxr-xr-x 2 pi pi 4096 May 17 16:42 xiaomi drwxr-xr-x 2 pi pi 4096 May 17 16:42 来自:iPhone pi@raspberrypi-lomorage:~/.lomo/links/unclassfied/Shared Pictures $ -
    - -

    2. 安装tmux

    - +

    2. 安装tmux

    这一个步骤对于熟练使用Linux的人,可以忽略。

    -

    因为SSH登录linux,运行某个命令,如果你关闭了SSH 客户端,那个命令就退出了。 为了让导入工作持续在Lomorage服务器上运行,建议运行如下命令安装 tmux,可以google或者baidu一下如何使用tmux。 点这里有个简单的教程

    -

    sudo apt install tmux

    -

    然后

    -

    tmux

    -

    3. 开始导入到Lomorage

    -

    此时,已经进入 tmux 会话,运行如下命令:

    -

    cd /opt/lomorage/bin

    - +
    +

    ./lomoc import -y [lomorage username] [password]

    -

    请注意: 这里的username 和 password 是你手机APP登录Lomorage的用户名。

    -

    接下来,lomoc 程序会发现当前网络下有多少个Lomorage的服务器,按照提示选择。

    -

    开始导入的信息会打印输出到屏幕,像下面的一样:

    -
    success upload /home/pi/.lomo/links/classfied/2010/09/16/Does a Kangaroo Have a Mother, Too_ Book Read Aloud, written by Eric Carle.mp4
     success upload /home/pi/.lomo/links/classfied/2010/10/07/If the Dinosaurs Came Back.m4v.mp4
     success upload /home/pi/.lomo/links/classfied/2010/10/25/Click, Clack, Moo Cows That Type by - Doreen Cronin.mp4
    -
    - -

    后记

    +

    后记

    +

    Lomorage会提供新的API,未来这个导入过程将可以在手机APP上进行,待续!

    -

    Lomorage会提供新的API,未来这个导入过程将可以在手机APP上进行,待续!

    -
    - - -
    -
    + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/2020/07/19/mypains/index.html b/zh/blog/2020/07/19/mypains/index.html index eab9d6d9..121cdaa1 100644 --- a/zh/blog/2020/07/19/mypains/index.html +++ b/zh/blog/2020/07/19/mypains/index.html @@ -1,252 +1,191 @@ + + + + + + + + Lomorage帮您解决iCloud的痛点 | Lomorage + + - - - - - - - - - - Lomorage帮您解决iCloud的痛点 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -
    -
    + - -
    -
    - -
    - - - -
    - -

    July 19, 2020

    - -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    - +
    +
    +
    + + +
    +

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    让Lomorage解决iCloud的痛点

    - -

    照片存入后,查找非常痛苦,下载也非常痛苦

    - +

    照片存入后,查找非常痛苦,下载也非常痛苦

    “我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。

    -

    自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的iCloud和百度云里,也是存两份。

    - +
    +

    发现无论存在百度云还是iCloud里,要把原来这个照片下载下来是一个非常痛苦的事情。 我百度云和iCloud, 都付费了,反正容量不够,就加钱扩大容量。

    -

    现在要去找以前的照片下载下来,太痛苦了。

    -

    照片存入后,查找非常痛苦,下载也非常痛苦。

    - -

    还有一个痛点就是重复的照片很多,要找出来删掉,太痛苦了:

    - +

    还有一个痛点就是重复的照片很多,要找出来删掉,太痛苦了:

    我怕照片丢了,所以之前有照片存在这个移动硬盘,那个移动硬盘的,有很多重复。 还有些是存在电脑的不同目录,也有很多重复,

    -

    你们能否开发一个程序,能自动扫描重复的照片,然后删掉它。”

    -

    Lomorage的解决方法

    -
      -
    • 安装Lomorage服务器程序或者购买Lomorage智存盒子:

      - +
    • +

      安装Lomorage服务器程序或者购买Lomorage智存盒子:

      Lomorage 服务器可以装在您的树莓派或者Windows或者MacOS系统

      -
    • - -
    • 下载 Lomorage 的苹果手机APP

    • - -
    • Lomorage 手机 APP 可以自动下载iCloud的照片并且帮您按年月日分好类,无需人工干涉

    • - -
    • 用手机APP来管理您所有的照片:

      - + +
    • +
    • +

      下载 Lomorage 的苹果手机APP

      +
    • +
    • +

      Lomorage 手机 APP 可以自动下载iCloud的照片并且帮您按年月日分好类,无需人工干涉

      +
    • +
    • +

      用手机APP来管理您所有的照片:

      Lomorage APP 会自动发现重复照片,多选快速删除

      -
    • -
    -
    - - -
    -
    + + +
    + + +
    +
    comments powered by Disqus -
    - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - + +
    + + + +
    +
    - - - - - -
    - - - - -
    - - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/2020/11/16/windows-docker/index.html b/zh/blog/2020/11/16/windows-docker/index.html new file mode 100644 index 00000000..8df6317f --- /dev/null +++ b/zh/blog/2020/11/16/windows-docker/index.html @@ -0,0 +1,289 @@ + + + + + + + + + + 在Windows 10 上安装Lomorage容器镜像 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +
    +

    + +

    +
    +

    1. 下载Docker

    +

    这个不必多说,直接去 Docker 的官网下载Windows 的安装包,双击默认设置安装,根据提示重启机器。

    +

    2. PUll lomorage的Docker 镜像

    +

    使用Windows Terminal 或者 Git-bash,或者Windows 的Power Shell 或者CMD:

    +
    +

    docker pull lomorage/raspberrypi-lomorage:latest

    +
    +

    3. 运行您的Lomorage 服务器

    +

    先下载 https://raw.githubusercontent.com/lomorage/lomo-docker/master/run.sh +这个脚本。

    +

    然后把里面的:

    +
    +

    docker run –user=*****

    +
    +

    改成

    +
    +

    docker run –user=root:root

    +
    +

    最后在你熟悉的Terminal里运行:

    +
    +

    $ ./run.sh -d -m h:/docker-lomorage -b h:/var/lomorage -h 192.168.0.63

    +
    +

    请注意 h:/docker-lomorage 是您Windows 机器的盘符,同理 h:/var/lomorage。 192.168.0.63 是您Windows 机器的iP

    +

    4. 检查是否成功

    +
      +
    • +

      打开手机APP,手工输入 IP 地址,和 端口号, 尝试去创建一个用户。

      +
    • +
    • +

      打开browser, 输入: http://192.168.0.63:8001, 应该会打开如下的页面:

      +
    • +
    +
    +

    + +

    +
    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/zh/blog/index.html b/zh/blog/index.html index ad18d807..209e0301 100644 --- a/zh/blog/index.html +++ b/zh/blog/index.html @@ -1,611 +1,467 @@ + + + + + + + + Blogs | Lomorage + + - - - - - - - - - - Blogs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Blogs

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -

    - - - - in BLOG - - - -

    -

    - July 19, 2020 -

    -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    迁移MyCloud的数据到Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    在Windows 10 上安装Lomorage容器镜像

    +
    +

    + + + + in 容器 + + + +

    +

    + November 16, 2020 +

    +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +

    继续阅读 +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    Lomorage帮您解决iCloud的痛点

    +
    +

    + + + + in BLOG + + + +

    +

    + July 19, 2020 +

    +
    +

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    +

    继续阅读 +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    迁移MyCloud的数据到Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -

    - - - - in 看板 - - - -

    -

    - March 29, 2020 -

    -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    利用lomorage把照片和视频传到Windows

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - +
    +
    + +
    +
    +
    + +
    +
    +

    使用树莓派制作新冠病毒电子看板

    +
    +

    + + + + in 看板 + + + +

    +

    + March 29, 2020 +

    +
    +

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    +

    继续阅读 +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    利用lomorage把照片和视频传到Windows

    +
    +

    + + + + in FAQ + + + +

    +

    + December 24, 2019 +

    +
    +

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    +

    继续阅读 +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    树莓派设置冗余备份

    +
    +

    + + + + in FAQ + + + +

    +

    + December 24, 2019 +

    +
    +

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    +

    继续阅读 +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/blog/index.xml b/zh/blog/index.xml index 04f14c7f..66ae2987 100644 --- a/zh/blog/index.xml +++ b/zh/blog/index.xml @@ -1,32 +1,37 @@ - + Blogs on Lomorage - https://lomorage.com/zh/blog/ + http://lomorage.com/zh/blog/ Recent content in Blogs on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> 迁移MyCloud的数据到Lomorage - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ <p><strong>曾经</strong>买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。</p> @@ -34,30 +39,30 @@ 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> 利用lomorage把照片和视频传到Windows - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ <p>之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。</p> 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git a/zh/blog/page/1/index.html b/zh/blog/page/1/index.html index a56e3321..2c2b9aae 100644 --- a/zh/blog/page/1/index.html +++ b/zh/blog/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/blog/ \ No newline at end of file +http://lomorage.com/zh/blog/ \ No newline at end of file diff --git a/zh/buy/index.html b/zh/buy/index.html new file mode 100644 index 00000000..6b99bc6a --- /dev/null +++ b/zh/buy/index.html @@ -0,0 +1,434 @@ + + + + + + + + + + Lomorage照片云存储 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +

    Lomorage照片云存储 - 珍藏美好回忆,享受精彩瞬间

    +

    我们是一群硅谷的工程师,在使用过一些现有的照片存储备份管理产品后,我们觉得需要有更加简单易用,更加稳定,经济实用,涵盖照片视频的备份,管理,分享和展示的一套完整方案。出于对家庭的热爱,对隐私的关注,我们开发了Lomorage,我们是深度用户,我们倾听用户的声音,我们希望Lomorage能成为一个物美价廉品质优的大众产品。

    +

    您可以自行下载安装到您已有到设备,或者您也可以直接购买即插即用的Lomorage照片云存储,迷你版和标准版硬件分别基于Orange Pi Zero和Raspberry Pi 4,预装了定制的Lomorage系统。

    +

    淘宝购买链接

    +

    1. 问题痛点

    +
      +
    1. 手机里面太多照片和视频,怎么备份好?
    2. +
    3. 懒得整理照片,照片存放的七零八落,还有重复?
    4. +
    5. 习惯文档拍照备份,但不能文字查找?
    6. +
    7. 能不能秒开备份的照片视频,就像存本地一样?
    8. +
    9. 担心备份照片的硬盘坏掉?
    10. +
    11. 担心隐私泄露?
    12. +
    13. 担心备份照片视频被压缩?
    14. +
    15. 担心上车被坑,限速收费,变相收费,甚至停止运营?
    16. +
    +

    2. 特色功能

    +
      +
    • 手机照片,轻松下拉备份,是否备份成功一目了然。
    • +
    • 支持增量差异上传,不会重复备份。
    • +
    • 支持断点续传,再大的视频都不怕。
    • +
    • 完美支持动态照片Live Photo,慢动作视频和DNG格式,支持所有主流照片视频格式。
    • +
    • 原始文件备份,质量无损耗,时间地理位置等信息统统保留。
    • +
    • 有相同的照片,照片去重无需存储多次。
    • +
    • 相似图片分析,可以方便选择最好的留下。
    • +
    • 多台手机平板,登陆同一账号,照片即可访问。
    • +
    • 家庭成员不同账号,保护隐私。
    • +
    • 有小秘密,加密存储。(即将推出)
    • +
    • 照片分享,不占手机内存。
    • +
    • 备份的照片无需手动下载到本地,也能轻松分享到社交网络。
    • +
    • 换手机了照片也能随时访问。
    • +
    • 一键批量导出备份照片到手机。(即将推出)
    • +
    • 离线智能缓存,手机没网也能看海量照片视频。
    • +
    • 按地点,时间,图片文字等智能查找。
    • +
    • 历史的今天,让您的照片不再封存在硬盘里。
    • +
    • 支持手动整理相册,打标签,让你按自己的方式组织照片。(即将推出)
    • +
    • 多重备份,大大降低数据丢失风险。
    • +
    • 硬盘照片导入,把繁琐的照片管理工作交给专业的Lomorage。
    • +
    • 不限速,不限账号数,硬盘备份数据一目了然,拒绝绑架用户。
    • +
    • 硬盘即插即用,无需重新格式化。
    • +
    +

    更多信息,猛击查看

    +

    3. Lomorage实拍图

    +

    Lomorage迷你版:小身板,低功耗,功能一个不少。

    +
    +

    +lomorage-mini +lomorage-setup +

    +
    +

    手机APP:轻松下拉备份,离线缓存,超省空间,智能查找,快速定位。

    +
    +

    +local +search +backup +settings +

    +
    +

    Lomorage网页版:相机照片,硬盘照片,拖入即可方便导入。

    +
    +web-upload +web-gallery +
    +

    4. 常见问题

    +
      +
    1. +

      除了能做照片备份管理之外还能做什么? +**Lomorage专注照片备份和管理,我们的现阶段的目标是把这块功能做的易用稳定完善,做一个值得信赖的产品。**但我们使用的是一个基于Linux的开放系统,所以如果您想要有一些动辄上千元的NAS才具备的功能,Lomorage都可以安装相关的软件,比如下载可以安装Transmission,个人媒体中心可以安装Jellyfin。而轻NAS的其他文件的备份,通过SAMBA可以轻松做到,默认已经启用。

      +
    2. +
    3. +

      容量多大? +Lomorage不自带硬盘,您的硬盘通过USB接上就能用,无论是机械硬盘,SSD,还是U盘,有多大我们都支持,实测16T可用。

      +
    4. +
    5. +

      可以接多块硬盘吗? +可以,但需要通过带电源的USB集线器才行,默认的功率只能支持一块硬盘。

      +
    6. +
    7. +

      闲置硬盘可以用吗? +可以,硬盘无需格式化,支持所有主流的文件系统(FAT32, NTFS, EXT等),即插即用。

      +
    8. +
    9. +

      伤硬盘吗?

      +

      硬盘无操作自动休眠,静音省电,保护硬盘,延长寿命。

      +
    10. +
    11. +

      数据可以多重备份吗? +可以,您可以通过带电源的USB集线器,接上两块硬盘,并将其中一块硬盘通过Lomorage APP设置为冗余备份。

      +
    12. +
    13. +

      如何安装使用? +通过USB接上硬盘,插上网线,插上电源,下载Lomorage APP开始使用。

      +
    14. +
    15. +

      有其他的变相收费吗? +没有。

      +
    16. +
    17. +

      备份的照片怎么看? +您可以在苹果或者安卓手机上通过Lomorage应用程序查看,备份里面显示的就是远程备份但本地没有的照片。你也可以使用网页APP查看所有的备份。您还可以在电脑上通过网上邻居或进行查看。您甚至可以拔下移动硬盘直接读取。如果您的电视是安卓系统,我们也提供了电视APP,可以将照片分享到电视上。

      +
    18. +
    19. +

      是否支持远程访问? +可以,现在通过第三方反向代理(类似ngrok)的集成,也可以自己设置端口映射。

      +
    20. +
    +

    5. 产品参数

    +

    迷你版

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    操作系统Linux
    处理器H2 四核 Cortex-A7 1.2GHZ
    内存512MB DDR3 SDRAM
    接口USB2.0,支持移动硬盘,移动固态硬盘,USB硬盘盒等
    网口10/100M自适应网口
    主机尺寸56 x 51 x 32mm
    + +

    标准版

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    操作系统Linux
    处理器H2 四核 Cortex-A72 1.5GHz
    内存2GB LPDDR4-3200 SDRAM
    接口USB3.0,支持移动硬盘,移动固态硬盘,USB硬盘盒等
    网口100/1000M自适应网口
    主机尺寸97 x 70 x 25mm
    + +

    6. 安装三步走

    +
      +
    1. Lomorage接上USB移动硬盘和网线。
    2. +
    3. Lomorage接通电源开机。
    4. +
    5. 手机下载Lomorage APP初始化系统并注册用户,开始使用。
    6. +
    +
    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/zh/categories/blog/index.html b/zh/categories/blog/index.html index 66344bdc..312f56fd 100644 --- a/zh/categories/blog/index.html +++ b/zh/categories/blog/index.html @@ -1,509 +1,331 @@ + + + + + + + + BLOG | Lomorage + + - - - - - - - - - - Blog - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Blog

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -

    - - - - in BLOG - - - -

    -

    - July 19, 2020 -

    -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    迁移MyCloud的数据到Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    Lomorage帮您解决iCloud的痛点

    +
    +

    + + + + in BLOG + + + +

    +

    + July 19, 2020 +

    +
    +

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    +

    继续阅读 +

    +
    +
    +
    + +
    +
    +
    + +
    +
    +

    迁移MyCloud的数据到Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +

    继续阅读 +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/categories/blog/index.xml b/zh/categories/blog/index.xml index 17c6ecd6..697dcae1 100644 --- a/zh/categories/blog/index.xml +++ b/zh/categories/blog/index.xml @@ -1,36 +1,32 @@ - + - Blog on Lomorage - https://lomorage.com/zh/categories/blog/ - Recent content in Blog on Lomorage + BLOG on Lomorage + http://lomorage.com/zh/categories/blog/ + Recent content in BLOG on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Sun, 19 Jul 2020 21:04:40 +0000 Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> 迁移MyCloud的数据到Lomorage - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ <p><strong>曾经</strong>买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。</p> - \ No newline at end of file + diff --git a/zh/categories/blog/page/1/index.html b/zh/categories/blog/page/1/index.html index c9f8f792..d2780594 100644 --- a/zh/categories/blog/page/1/index.html +++ b/zh/categories/blog/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/categories/blog/ \ No newline at end of file +http://lomorage.com/zh/categories/blog/ \ No newline at end of file diff --git a/zh/categories/faq/index.html b/zh/categories/faq/index.html index 4b1789c2..2a1bbd71 100644 --- a/zh/categories/faq/index.html +++ b/zh/categories/faq/index.html @@ -1,506 +1,328 @@ + + + + + + + + FAQ | Lomorage + + - - - - - - - - - - Faq - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - + + + -
    + + + + + + + + + + + + + + + + + + + + + + + -
    -
    -
    -
    -

    Faq

    -
    -
    -
    -
    + + + -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    利用lomorage把照片和视频传到Windows

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/categories/faq/index.xml b/zh/categories/faq/index.xml index ae1f4a58..686c0093 100644 --- a/zh/categories/faq/index.xml +++ b/zh/categories/faq/index.xml @@ -1,33 +1,29 @@ - + - Faq on Lomorage - https://lomorage.com/zh/categories/faq/ - Recent content in Faq on Lomorage + FAQ on Lomorage + http://lomorage.com/zh/categories/faq/ + Recent content in FAQ on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 利用lomorage把照片和视频传到Windows - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ <p>之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。</p> 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git a/zh/categories/faq/page/1/index.html b/zh/categories/faq/page/1/index.html index 250f5174..4c17a396 100644 --- a/zh/categories/faq/page/1/index.html +++ b/zh/categories/faq/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/categories/faq/ \ No newline at end of file +http://lomorage.com/zh/categories/faq/ \ No newline at end of file diff --git a/zh/categories/index.html b/zh/categories/index.html index 38eff650..a80b4880 100644 --- a/zh/categories/index.html +++ b/zh/categories/index.html @@ -1,408 +1,21 @@ - - + + + + + + + + Categories | Lomorage + + - - - - - - - - - - Categories - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Categories

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - + - - + + + + - - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - +

    Categories

    + + + + - - diff --git a/zh/categories/index.xml b/zh/categories/index.xml index e14ff8db..3a9309b6 100644 --- a/zh/categories/index.xml +++ b/zh/categories/index.xml @@ -1,42 +1,47 @@ - + Categories on Lomorage - https://lomorage.com/zh/categories/ + http://lomorage.com/zh/categories/ Recent content in Categories on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Mon, 16 Nov 2020 22:43:40 +0000 - Blog - https://lomorage.com/zh/categories/blog/ - Sun, 19 Jul 2020 21:04:40 +0000 + 容器 + http://lomorage.com/zh/categories/%E5%AE%B9%E5%99%A8/ + Mon, 16 Nov 2020 22:43:40 +0000 - https://lomorage.com/zh/categories/blog/ + http://lomorage.com/zh/categories/%E5%AE%B9%E5%99%A8/ - Faq - https://lomorage.com/zh/categories/faq/ - Tue, 24 Dec 2019 13:43:40 +0000 + BLOG + http://lomorage.com/zh/categories/blog/ + Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/categories/faq/ + http://lomorage.com/zh/categories/blog/ 看板 - https://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ + http://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ + http://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ + + + + + FAQ + http://lomorage.com/zh/categories/faq/ + Tue, 24 Dec 2019 13:43:40 +0000 + + http://lomorage.com/zh/categories/faq/ - \ No newline at end of file + diff --git "a/zh/categories/\345\256\271\345\231\250/index.html" "b/zh/categories/\345\256\271\345\231\250/index.html" new file mode 100644 index 00000000..6a9efff0 --- /dev/null +++ "b/zh/categories/\345\256\271\345\231\250/index.html" @@ -0,0 +1,294 @@ + + + + + + + + + + 容器 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    在Windows 10 上安装Lomorage容器镜像

    +
    +

    + + + + in 容器 + + + +

    +

    + November 16, 2020 +

    +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +

    继续阅读 +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git "a/zh/categories/\345\256\271\345\231\250/index.xml" "b/zh/categories/\345\256\271\345\231\250/index.xml" new file mode 100644 index 00000000..0ce67e42 --- /dev/null +++ "b/zh/categories/\345\256\271\345\231\250/index.xml" @@ -0,0 +1,20 @@ + + + + 容器 on Lomorage + http://lomorage.com/zh/categories/%E5%AE%B9%E5%99%A8/ + Recent content in 容器 on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + + + + diff --git "a/zh/categories/\345\256\271\345\231\250/page/1/index.html" "b/zh/categories/\345\256\271\345\231\250/page/1/index.html" new file mode 100644 index 00000000..285f69bb --- /dev/null +++ "b/zh/categories/\345\256\271\345\231\250/page/1/index.html" @@ -0,0 +1 @@ +http://lomorage.com/zh/categories/%E5%AE%B9%E5%99%A8/ \ No newline at end of file diff --git "a/zh/categories/\347\234\213\346\235\277/index.html" "b/zh/categories/\347\234\213\346\235\277/index.html" index 82fe026b..cf40d51f 100644 --- "a/zh/categories/\347\234\213\346\235\277/index.html" +++ "b/zh/categories/\347\234\213\346\235\277/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 看板 | Lomorage + + - - - - - - - - - - 看板 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    看板

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -

    - - - - in 看板 - - - -

    -

    - March 29, 2020 -

    -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/categories/\347\234\213\346\235\277/index.xml" "b/zh/categories/\347\234\213\346\235\277/index.xml" index 7902ccec..4b504565 100644 --- "a/zh/categories/\347\234\213\346\235\277/index.xml" +++ "b/zh/categories/\347\234\213\346\235\277/index.xml" @@ -1,24 +1,20 @@ - + 看板 on Lomorage - https://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ + http://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ Recent content in 看板 on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> - \ No newline at end of file + diff --git "a/zh/categories/\347\234\213\346\235\277/page/1/index.html" "b/zh/categories/\347\234\213\346\235\277/page/1/index.html" index 173cef9f..da010c54 100644 --- "a/zh/categories/\347\234\213\346\235\277/page/1/index.html" +++ "b/zh/categories/\347\234\213\346\235\277/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ \ No newline at end of file +http://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ \ No newline at end of file diff --git a/zh/compare/index.html b/zh/compare/index.html index 07f0b4ca..7e5034ce 100644 --- a/zh/compare/index.html +++ b/zh/compare/index.html @@ -1,211 +1,154 @@ + + + + + + + + 价格比较 | Lomorage + + - - - - - - - - - - 价格比较 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    价格比较

    -
    -
    -
    + - -
    - - -
    - -
    - -
    - -
    - - -

    价格比较

    - +
    +
    +
    + + +
    +

    价格比较

    下面的比较主要考虑的是每个产品的最大卖点,并假设用户的主要需求是照片的备份和管理,如果您需要的功能超出那个范围,您可能需要考虑一下直接用NAS,或者如果您是专家可以使用树莓派或其他的单板计算机DIY一个。

    -

    比如,云服务主要按不同的存储空间容量大小来定价,其他的一些功能则没有差别;而对于那些放置在自家的硬件产品,价格的差别主要在于硬件的配置,同一厂商的不同型号软件功能没有太大差异。在所有的功能中,备份是最基础的功能,其他的高级功能都是构建在这个基础上的。

    -

    Lomorage相比而言更加经济实用,也更加灵活,软件免费,如果您使用Windows或Mac电脑,也就无需另外购置额外的硬件,但如果想更好但利用改系统,将其作为一个7x24小时的私有云,您可以选择树莓派。即便是购买树莓派,也比市面上的方案更加经济实用。软件方面有些高级功能现在还在开发中,但基本的存储备份功能安全稳定,没有任何隐形费用,没有任何用户锁定,不泄漏隐私,为什么不试试呢?

    -

    和云服务的比较

    - +

    我们不排斥云存储,云存储可以作为本地存储的一个备份,本地存储是建议都保留的。

    下面的按年费来比较, 下面的表格的空单元格表示没有对应的选项。比如Apple iCloud只提供了5 GB, 50 GB, 200 GB and 2 TB的选项, 对Lomorage而言,现在比较难买到新的硬盘是小于500G的。Lomorage的基础功能都是免费的,所以下面的价格主要是考虑的硬件,和硬件的损耗,还有电费。

    - +

    百度云的价格是非常有优势的,但也有用户抱怨隐私政策,流量限制等,可以作为本地存储之外的可选备份方案。

    @@ -214,8 +157,8 @@

    和云服务的比较

    - - + + @@ -223,10 +166,9 @@

    和云服务的比较

    - - + @@ -234,9 +176,8 @@

    和云服务的比较

    - - + @@ -244,9 +185,8 @@

    和云服务的比较

    - - + @@ -254,9 +194,8 @@

    和云服务的比较

    - - + @@ -264,9 +203,8 @@

    和云服务的比较

    - - + @@ -274,59 +212,53 @@

    和云服务的比较

    - - - + + - - - + + - - - + + - - - + + - - - + + - - + @@ -334,20 +266,18 @@

    和云服务的比较

    - - - + + - - - + + @@ -357,127 +287,106 @@

    和云服务的比较

    LomorageLomorage (双备份) 年费
    假设4年升级一次设备
    Apple iCloud Google Photo Amazon Photo 百度云
    5 GB5 GB 免费 免费
    15 GB15 GB 免费
    50 GB50 GB ¥ 72
    100 GB100 GB ¥ 141.82
    200 GB200 GB ¥ 252 ¥ 212.76
    500 GB¥ 307500 GB¥ 223.67
    1 TB¥ 3321 TB¥ 248.67 ¥ 425.59 ¥ 398
    2 TB¥ 3912 TB¥ 308.17 ¥ 816 ¥ 709.36 ¥ 851.17 免费
    3 TB¥ 4813 TB¥ 398.17 ¥ 1276.76 ¥ 119
    4 TB¥ 5224 TB¥ 438.67 ¥ 1702.35 ¥ 249
    5 TB5 TB ¥ 260
    6 TB¥ 8056 TB¥ 722.17 ¥ 2553.52 ¥ 498 (1 TB/人) ¥ 379
    8 TB¥ 8778 TB¥ 794.17 ¥ 3404.70
    -

    因为Lomorage用户使用自己的硬盘,根据研究报告,

    -

    通常来讲,硬盘的使用寿命是3-5年。在线备份公司BackBlaze分析他们运行的25,000个运行的硬盘的失败率得出的结论。他们发现90%的硬盘都能用到3年以上,80%的硬盘都能用到4年以上。但这个和不同品牌有些关系,西部数据和日立的硬盘寿命比希捷的就长不少。

    - -

    在线备份的硬盘使用率相对比较高,一般硬盘都会超过4年的使用寿命。下面已4年作为硬盘的使用寿命来计算,那需要至少两块硬盘来做冗余备份,那存储的价格就是硬盘价格 * 2 / 4, 树莓派通常可以用10年以上, 那假设像个人电脑一样每4年更新换代一次, 加上外接的供电USB分线器,设备的费用总的有(硬盘价格 * 2 + 树莓派套装 + 供电USB分线器) / 4, 加上每年的¥30电费,算下来总的费用(硬盘价格 * 2 + 树莓派套装 + 供电USB分线器) / 4 + 30 per year.

    - -

    树莓派基础套装:

    - +

    在线备份的硬盘使用率相对比较高,一般硬盘都会超过4年的使用寿命。下面已4年作为硬盘的使用寿命来计算,那需要至少两块硬盘来做冗余备份,那存储的价格就是硬盘价格 * 2 / 4, 假设像个人电脑一样每4年更新换代一次, 加上外接的供电USB分线器,设备的费用总的有(硬盘价格 * 2 + Orange Pi Zero套装 + 供电USB分线器) / 4

    +

    Orange Pi Zero套装:

      -
    • 树莓派4B/2G主板
    • +
    • OrangePi zero LTS
    • 外壳
    • -
    • USB-C电源
    • +
    • 电源
    • 16 GB microSD Card
    • -
    • 散热片
    • -
    • micro HDMI线
    -

    供电USB分线器:

    - -

    USB移动硬盘价格以支持USB 3.0接口,2.5寸的知名品牌西部数据价格为参考。

    - - - + + - - - + + - - + + - - - + + - - + + - - - + + - - + + - - - + + - - + + - - - + + - - + + - - - + + - - + + - - - + + - - + +
    单个磁盘空间磁盘价格 (单盘)树莓派基础套装磁盘价格 (双盘位)Orange Pi Zero套装 供电USB分线器 均摊年费(按4年算) 设备总费用 (双盘双备份)
    500 GB¥ 299¥ 383¥ 299 x 2¥ 168.69 ¥ 128¥ 307¥ 1109¥ 223.67¥ 894.69
    1 TB¥ 349¥ 383¥ 349 x 2¥ 168.69 ¥ 128¥ 332¥ 1209¥ 248.67¥ 994.69
    2 TB¥ 468¥ 383¥ 468 x 2¥ 168.69 ¥ 128¥ 391¥ 1447¥ 308.17¥ 1232.69
    3 TB¥ 648¥ 383¥ 648 x 2¥ 168.69 ¥ 128¥ 481¥ 1807¥ 398.17¥ 1592.69
    4 TB¥ 729¥ 383¥ 729 x 2¥ 168.69 ¥ 128¥ 522¥ 1969¥ 438.67¥ 1754.69
    6 TB¥ 648 x 2¥ 383¥ 648 x 4¥ 168.69 ¥ 128¥ 805¥ 3103¥ 722.17¥ 2888.69
    8 TB¥ 720 x 2¥ 383¥ 720 x 4¥ 168.69 ¥ 128¥ 877¥ 3391¥ 794.17¥ 3176.69
    -

    和其他硬件产品的比较

    -

    当然将仅仅专注做照片视频备份管理的硬件和具备各种功能的NAS比较不是那么公平,但如果您需要的仅仅是照片视频备份管理,如果专有设备能做的更好,为什么要去买NAS呢?

    - @@ -487,57 +396,49 @@

    和其他硬件产品的比较

    - - - - + + + - - - - - - - @@ -547,110 +448,107 @@

    和其他硬件产品的比较

    单盘位 1TB
    Lomorage(树莓派基础套装 + 供电USB分线器)

    ¥ 511
    (树莓派基础套装 + 供电USB分线器 + 2个2TB硬盘)

    ¥ 1447
    (树莓派基础套装 + 1个1TB硬盘)

    ¥ 732
    ¥ 296.69¥ 1232.69¥ 517.69
    群晖 DS218+ ¥ 2750
    威联通 TS-231P2 ¥ 2599
    My Cloud Home Duo ¥ 2799
    ibi - The Smart Photo Manager ¥ 851.11
    Monument Photo Management Device ¥ 1205.42
    Kwilt3 Personal Cloud Storage Device ¥ 702.23
    猫盘1TB
    - -
    - -
    - -
    - - -
    - - - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - -
    + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    - - - - - - - + - - - + - + +
    + + + + + +
    - + diff --git a/zh/contact/index.html b/zh/contact/index.html index a2166cee..1b85a0f9 100644 --- a/zh/contact/index.html +++ b/zh/contact/index.html @@ -1,203 +1,155 @@ + + + + + + + + 联系我们 | Lomorage + + - - - - - - - - - - 联系我们 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    联系我们

    -
    -
    -
    + +
    +
    +
    + + -
    - - -
    +
    - - -

    客户服务

    - +

    客户服务

    如果您有任何的问题,建议,新需求,请联系我们,我们洗耳恭听。

    -

    您也可以加入我们的slack channel

    @@ -213,19 +165,19 @@

    联系表单

    - +
    - +
    - +
    @@ -257,102 +209,80 @@

    联系表单

    + - - - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - + +
    +
    +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/external-access/index.html b/zh/external-access/index.html index 6caa7463..8a4b1c81 100644 --- a/zh/external-access/index.html +++ b/zh/external-access/index.html @@ -27,7 +27,7 @@ - + @@ -192,99 +192,55 @@

    - - -

    外网访问设置

    - +

    外网访问设置

    外网访问需要一点技术背景来进行手工设置,我们后续的版本会让这个设置更加简单。

    -

    外网访问依赖于隧道连接服务来实现内网穿透,现有一些服务提供商提供免费的服务,大多数隧道服务都需要下载客户端,运行在您的设备上,同公网的隧道服务器建立连接,并分配子域名,当通过子域名进行访问时,隧道服务就会将请求转发到您的应用程序。

    -

    您可以使用localtunnel或者ngrok,这两个都是免费的隧道服务. localtunnel无需注册,并且支持自定义子域名; ngrok需要注册,使用自定义子域名需要付费,但更加稳定,并没有额外的依赖。

    - -

    如果您使用Lomorage的树莓派镜像, 登陆的用户名是”pi”,密码是”raspberry”

    - +

    如果您使用Lomorage的树莓派镜像, 登陆的用户名是"pi",密码是"raspberry"

    localtunnel

    -

    如果您使用Windows或者macOS,您需要先先安装nodejs,再安装localtunnel。如果您使用Lomorage的树莓派镜像,您可以直接运行sudo localtunnel_install.sh来安装localtunnel,您可以跳过下面的步骤1和步骤2。

    -

    1. 安装nodejs

    -

    下载并安装对应平台下的二进制安装包

    -

    2. 安装localtunnel

    -

    打开命令行窗口并输入:

    -
    npm install -g localtunnel
    -
    - -

    3. 运行localtunnel

    - -

    如果您需要使用子域名”allice” (您可以选择自己的子域名), 打开命令行窗口并输入:

    - +

    3. 运行localtunnel

    +

    如果您需要使用子域名"allice" (您可以选择自己的子域名), 打开命令行窗口并输入:

    lt -s allice -p 8000 --print-requests
    -
    - -

    ”-s”指定要使用的子域名, “-p”指定要转发的目的端口, Lomorage服务默认使用”8000”, “–print-requests”输出接收到的请求信息。

    - +

    “-s"指定要使用的子域名, “-p"指定要转发的目的端口, Lomorage服务默认使用"8000”, “–print-requests"输出接收到的请求信息。

    如果输出结果没有任何错误,并输出类似如下的内容:

    -
    your url is: https://allice.localtunnel.me
    -
    - -

    您可以在浏览器窗口中打开localtunnel输出的url,如果您能在localtunnel的输出看到刚发出的访问请求日志,隧道服务就已经配置成功了。

    - +

    您可以在浏览器窗口中打开localtunnel输出的url,如果您能在localtunnel的输出看到刚发出的访问请求日志,隧道服务就已经配置成功了。

    Sat Aug 31 2019 11:38:00 GMT-0700 (PDT) GET /
    -
    - - - +

    4. 在Lomorage手机应用中配置隧道服务

    - -

    打开Lomorage手机应用,在配置选项页里找到”外网服务”,设置地址为localtunnel输出的url,比如类似”allice.localtunnel.me”。

    - +

    打开Lomorage手机应用,在配置选项页里找到"外网服务”,设置地址为localtunnel输出的url,比如类似"allice.localtunnel.me”。 +比如:安卓手机 可以在设置页面进行配置,并测试。如果您的localtunnel是https的,默认端口是443,如果是http,端口填80. +如图:

    +
    +

    + +

    +

    ngrok

    -

    1. 注册

    - -

    注册ngrok,完成后,会显示”设置和安装”页面.

    - +

    注册ngrok,完成后,会显示"设置和安装"页面.

    2. 下载

    -

    ngrok只有一个二进制文件,您可以下载特定平台的版本。

    - -

    如果您使用树莓派,您需要在”设置和安装”页面中拷贝Linux(ARM)版本的链接,当前是”https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip", 您可以通过”wget”来下载。

    - +

    如果您使用树莓派,您需要在"设置和安装"页面中拷贝Linux(ARM)版本的链接,当前是"https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip", 您可以通过"wget"来下载。

    wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip
    -
    - -

    3. 安装

    - +

    3. 安装

    解压缩得到二进制可执行文件。在Windows或macOS下,您可以双击解压,如果您使用树莓派,可以使用unzip命令

    -
    unzip ngrok-stable-linux-arm.zip
    -
    - -

    4. 连接您的账号

    - -

    在”设置和安装”页面的第三步会显示”authtoken”,您需要在命令行窗口中运行如下命令将”authtoken”添加到配置文件。

    - +

    4. 连接您的账号

    +

    在"设置和安装"页面的第三步会显示"authtoken",您需要在命令行窗口中运行如下命令将"authtoken"添加到配置文件。

    ./ngrok authtoken [your-authtoken-show-in-step-3]
    -
    - -

    5. 运行ngrok

    - +

    5. 运行ngrok

    Lomorage服务默认运行在8000端口,ngrok的免费账号不能自定义子域名,ngrok运行成功后,会自动绑定一个随机子域名,这个子域名在下次ngrok重新启动时会变化。

    -
    ./ngrok http 8000
    -
    - - - +

    6. 在Lomorage手机应用中配置隧道服务

    - -

    打开Lomorage手机应用,在配置选项页里找到”外网服务”,设置服务器地址为ngrok输出的url,比如类似”2e30eea5.ngrok.io”。

    +

    打开Lomorage手机应用,在配置选项页里找到"外网服务",设置服务器地址为ngrok输出的url,比如类似"2e30eea5.ngrok.io"。

    @@ -308,7 +264,6 @@

    6. 在Lomorage手机应

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/faq/index.html b/zh/faq/index.html index 6b15aaad..43b069e9 100644 --- a/zh/faq/index.html +++ b/zh/faq/index.html @@ -1,477 +1,327 @@ + + + + + + + + 常见问题 | Lomorage + + - - - - - - - - - - 常见问题 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    - -
    -
    -
    -
    -

    常见问题

    -
    -
    -
    + - -
    - - -
    - -
    - -
    - -
    - - - - -

    1. 为什么不用云服务?

    - -

    我们认为数字资产的管理需要保存在本地,在本地做好备份,而云端的存储只是本地存储的一个补充,现有的云存储成本过高,国内的云存储厂商相继停止运营:

    - -
      -
    • 115 网盘:2016 年 3 月 4 日下线「我聊」中的「文件发送」功能,后续一直在调整。
    • -
    • 新浪微盘:2016 年 6 月 30 日开始关闭免费个人用户的存储服务。
    • -
    • 华为网盘:2016 年 6 月 30 日开始关闭。
    • -
    • 迅雷 / 金山快盘:停止快盘个人用户的存储服务,数据保留到 2016 年 6 月 30 日。
    • -
    • 360 云盘:2016 年 11 月起停止个人云盘服务,2017 年 2 月 1 日起关闭所有云盘账号并清空数据。
    • -
    • UC 云盘:2016 年 4 月 15 日开始终止网盘的存储服务,停止上传服务 / 离线资源存至网盘功能 / 视频转码服务。
    • -
    - -

    国内外的照片存储服务也相继关停:

    - -
      -
    • 网易相册突然关停清空数据 网友照片丢失愤怒投诉:还我回忆
    • -
    • Dropbox关闭备份照片应用 尝试吸引新用户失败
    • -
    • 佳能关闭Irista平台
    • -
    • 佳能公司将正式停止irista服务
    • +
      +
      +
      + + +
      +
      - -

      云存储的运营成本之高,Flickr母公司SmugMug在公开信中提到Flicker一直都在亏损,希望用户能够接受价格上涨。

      - -

      云存储的优势是使用方便,无需购买硬件,有专人来负责维护,7x24小时服务都可以用,也无需担心电费。但科技在进步,SBC单板计算机变得越来越便宜,性能越来越强大,能耗也越来越低,存储空间也越来越便宜,容量越来越大,软件也越来越智能,人们也开始更多的关心隐私了,是时候可以在自己家里运行“私有云服务”了。

      - -

      2. NAS怎么样?

      - -

      NAS是一种通用的存储,您可以通过网络存储任何资料,包括照片和视频。尽管NAS试图将其操作界面做的更加简单,但其面向专业的特性导致很难将其简化。看看操作易用性最好的群晖NAS的说明书,您就知道,NAS对于照片视频的存储管理备份是杀鸡用牛刀,简单的NAS不简单

      - -

      3. 其他选择呢?

      - -

      也有将NAS功能简化,侧重做照片视频垂直领域的,这块国外市场的产品选择多点,国内的猫盘也算吧。

      - - - -

      4. 为什么要做Lomorage?

      - -

      我们对现有的解决方案不满意。

      - -
        -
      1. 云端存储应该作为本地备份的补充,本地需要至少一个主备和从备。

        - -
          -
        • 我们当前支持本地冗余备份。
        • -
        • 我们机会支持远程备份(比如使用你父母家里的Lomorage存储,来远程备份)和专业的云端存储备份,比如backblaze
        • -
      2. - -
      3. 安装简单,易于使用,自动升级,零成本维护。

        - -
          -
        • 只需要几分钟就能在树莓派上安装定制的系统镜像。
        • -
        • 支持Windows和MacOS系统。
        • -
        • 系统自动升级。
        • -
      4. - -
      5. 软件很重要,备份管理这些珍贵的照片视频,需要非常稳定可靠的系统。

        - -
          -
        • 我们开发者自己就是用户。
        • -
        • 我们产品的发布是按质量,而不是按时间。
        • -
      6. - -
      7. 系统必须开放,不要对用户做任何形式的绑定,即便后续停止开发,不要给用户太多的迁移成本,用户的硬件也不至于变成电子垃圾。

        - -
          -
        • 媒体文件按原始格式,原始尺寸存储在您的磁盘上,不丢失任何信息。
        • -
        • 无需格式化硬盘,任何闲置硬盘即插即用,支持所有常见的文件系统。
        • -
        • 媒体文件按照”YYYY/MM/DD”的日期文件格式存储在您的磁盘上,您可以很方便的将其导入到其他的系统中。
        • -
        • 如果使用树莓派,即便您不用Lomorage,它还是一个单板计算机,您可以用它做其他的用途
        • -
      8. - -
      9. 除了照片的备份和管理之外,和家人一起分享美好回忆。

        - -
          -
        • 有多少次你打开手机翻看老照片?
        • -
        • 家里堆了很多相框,找不到地方摆放?
        • -
        • 闲置在家的数码相框不想用,上传太麻烦,空间有限制?
        • -
        • 想拥有一个大的画屏放客厅,显示日期时间,艺术作品和照片?想在卧室或者书房有个小数码相框摆在桌上?无需上传,突破空间限制,WiFi连接Lomorage存储。
        • -
        • 重新利用任何空闲的屏幕,连接树莓派,搭建数码相框,通过手机来定制要显示的内容。
        • -
        • 远程将照片或视频推送到数码相框,和爷爷奶奶一起分享小孩的成长历程。
        • -
      10. - -
      11. 独立系统并能互联互通。

        - -
          -
        • 您可以在自己家里安装一套Lomorage系统,同时也能在父母家安装一套,两个相互独立,但也能够互相通信,互相共享存储,加密备份。
        • -
      12. -
      - -

      5. 价格

      - -

      Lomorage是一个经济实用,更加灵活的解决方案,软件免费,如果您使用Windows或Mac电脑,也就无需另外购置额外的硬件,但如果想更好但利用改系统,将其作为一个7x24小时的私有云,您可以选择树莓派。即便是购买树莓派,也比市面上的方案更加经济实用。软件方面有些高级功能现在还在开发中,但基本的存储备份功能安全稳定,没有任何隐形费用,没有任何用户锁定,不泄漏隐私,为什么不试试呢?

      - -

      查看这里查看和云服务, NAS,还有其他方案的对比。

      - -

      6. 怎么想到”Lomorage”这个名字?

      - -

      “Lomorage”结合了”Lomography”和”Storage”两个单词.

      - -

      7. 你们的商业模式是什么?

      - -

      这个是一个业余的项目,做这个项目最开始的出发点是想为自己家庭的照片存储管理寻找一个更好的解决方案,家里有了小孩之后照片和视频的量爆涨,在使用过一些现有的产品后,我们想要有更好的方案,更加简单易用,更加稳定,经济实用,涵盖照片视频的备份,管理,分享和展示的一套完整方案。这一切的出发点是我们对家庭的热爱,使得我们对这个事情的投入也充满热情,我们已经业余时间做了快两年了,即便是现在没有人付钱,我们也会坚持做下去。

      - -

      当前我们的投入除了时间成本外,其他的资金投入并不多,主要是apple开发者账号,域名,我们不用提供存储空间,不用提供设备,使用github来免费托管主页和提供下载链接,所以将这套系统免费提供使用对我们而言并没有太大的经济负担。

      - -

      但终究所有的投入都是有成本的,需要资金的投入来让其可持续下去。我们很希望能够全职来做这个事情,更快的能开交付新功能,但当前我们还不能做到这点。如果人们觉得这个产品对他们有用,并且愿意付费,那我们会很开心,但当前的产品还是在早期阶段,只有基本的备份和分享功能,更好的方式是将其作为一个免费软件来提供大家使用。我们也不会走互联网软件的模式,将用户作为产品的一部分,我们从一开始就关心用户隐私,因为我们自己也是用户。

      - -

      Peter Thiel说过: “要创建一家成功的初创公司,你的产品需要比同类产品好10倍” ,我们也相信:如果要用户买单,必须先提供有足够价值的东西。

      - -

      我们计划推出更多高级的功能(比如智能搜索,远程备份,数码相框等),看看是否能提供一些用户愿意付费高级功能。数码相框本质上是一个家用屏幕,可以有放在客厅的大尺寸画屏,也可以有放在桌上的摆台,现有的数码相框没多少人用,是因为不好用,而不是因为不需要,这里面也存在很多的可能性探索出些商业模式。

      - -

      8. 如何设置冗余备份?

      - +

      怎么想到"Lomorage"这个名字?

      +

      “Lomorage"结合了"Lomography"和"Storage"两个单词.

      +

      Lomorage的费用是多少?

      +

      软件免费,硬件用户自己可以购买,基于Orange Pi Zero套件,价格不到200人民币。具体的价格比较和配置可以参考这里绝无任何变相收费

      +

      如何设置冗余备份?

      如果您是在macOS上运行Lomorage服务(Windows暂时还没有支持),您可以打开LomoAgent应用程序的设置窗口,设置冗余备份。

      -

      如果您是在树莓派上运行Lomorage服务,插入新的硬盘后,打开iOS手机客户端,在设置选项卡里可以设置冗余备份。

      - -

      9. 支持那些文件系统?

      - +

      支持那些文件系统?

      如果您在macOS或者Windows上运行Lomorage服务,您可以使用任何Windows或者macOS操作系统原生支持的文件系统。

      -

      如果您是在树莓派上运行Lomorage服务,你可以使用更多的文件系统,包括:“vfat exfat ext2 ext3 ext4 hfsplus ntfs fuseblk”。

      - -

      10. 为什么时间看起来不对?

      - +

      为什么硬盘上的目录命名的时间看起来不对?

      在系统中使用UTC时间来存储而不是本地时间,原因是照片可能拍摄于不同的时区,用户也会离开原先的住处搬迁到另外的时区,使用UTC时间戳能简化处理,而且可以很容易的在客户端应用程序转化为本地时间。

      - -

      11. 如何设置冗余备份?

      - +

      如何设置冗余备份?

      冗余备份的方案有几种, 查看这篇博客获取更多详细信息。

      - -

      12. 编辑后的照片视频支持吗?

      - +

      编辑后的照片视频支持吗?

      苹果系统中,图片编辑后,系统会存储原始文件,编辑后的文件和修改操作记录,Lomorage只会存储编辑后的照片。视频编辑会记录上次编辑前的视频文件,上次编辑的操作记录,Lomorage也只会存储编辑后的视频

      -

      如果您想存储编辑之前的照片或视频,再确保编辑后的视频已经备份成功后,到系统的照片应用中,撤销编辑,再上传编辑前的文件

      - -

      注意: 老的版本iOS客户端(<0.6.10)没有支持上传编辑后的文件,如果您碰到编辑后的文件上传失败,请删除老版本的程序,再重新安装,而不要选择直接升级,这样会保证清理掉之前有问题的老数据库。

      - -

      13. 什么是后台备份?

      - +

      什么是后台备份?

      开启后台备份后,无需打开Lomorage APP就可以备份照片视频。

      -

      但是由于苹果平台的限制,第三方应用并不能像iCloud那样做到一直在后台备份,只能通过一些hack的方式,现在是通过两种方式来触发应用在后台运行,一种是在系统空闲时,通过后台获更新的机制来触发应用后台运行,另一种是通过地理位置的大范围的变化来触发应用后台运行,所以开启后台备份功能后会请求获取地理位置的权限,这些都只能持续很短的时间。

      -

      当手机操作讲Lomorage APP放后台后,原有的上传还是会继续,只是下次个文件上传需要等到下一次将Lomorage APP切换到前台,或者通过上述的两种Hack的方式让APP在后台继续运行。

      - -
      - +

      Raspbian不能启动如何恢复?

      +

      不用担心,您的相片存储在硬盘中,而且数据库也都备份到硬盘中了。您只需要将备份的数据库恢复即可。

      +
        +
      1. 将硬盘插入到PC中,您可以发现在Lomorage的每个用户名目录下都有一个assets.db文件,这些文件都是一样的。
      2. +
      3. 重新安装Lomorage Raspbian镜像。
      4. +
      5. 树莓派接上硬盘。
      6. +
      7. 从任意一个用户的目录拷贝assets.db到树莓派的/opt/lomorage/var/目录下。
      8. +
      9. 树莓派上重启Lomorage服务程序: sudo service lomod restart
      10. +
      +

      Armbian下的恢复类似。

      +

      密码重置

      +

      如果您忘记了密码,服务端使用的是Linux系统,运行/opt/lomorage/bin/lomoc user reset [user name] [password]. username是用户名,password是新的密码。

      +

      如果是用的Mac LomoAgent,您可以点击用户菜单,进到用户列表修改密码。

      +

      如果是用Windows, 您可以[下载]命令行工具(https://aisnote.com/wp-content/uploads/2021/05/lomoc.zip), 打开命令行后执行如下命令,替换"用户名"和"修改后的密码”:

      +
      cd c:\Users\%username%\AppData\Local\lomoware\Lomoagent\lomod\
      +lomoc user reset –db “c:\Users\%username%\AppData\Local\lomoware\var\assets.db” 用户名 修改后的密码
      +

      除了能做照片备份管理之外还能做什么?

      +

      **Lomorage专注照片备份和管理,我们的现阶段的目标是把这块功能做的易用稳定完善,做一个值得信赖的产品。**但我们使用的是一个基于Linux的开放系统,所以如果您想要有一些动辄上千元的NAS才具备的功能,Lomorage都可以安装相关的软件,比如下载可以安装Transmission,个人媒体中心可以安装Jellyfin。而轻NAS的其他文件的备份,通过SAMBA可以轻松做到,默认已经启用。

      +

      容量多大?

      +

      Lomorage不自带硬盘,您的硬盘通过USB接上就能用,无论是机械硬盘,SSD,还是U盘,有多大我们都支持,实测16T可用。

      +

      可以接多块硬盘吗?

      +

      可以,但需要通过带电源的USB集线器才行,默认的功率只能支持一块硬盘。

      +

      闲置硬盘可以用吗?

      +

      可以,硬盘无需格式化,支持所有主流的文件系统(FAT32, NTFS, EXT等),即插即用。

      +

      伤硬盘吗?

      +

      硬盘无操作自动休眠,静音省电,保护硬盘,延长寿命。

      +

      如何安装使用?

      +

      通过USB接上硬盘,插上网线,插上电源,下载Lomorage APP开始使用。

      +

      备份的照片怎么看?

      +

      您可以在苹果或者安卓手机上通过Lomorage应用程序查看,备份里面显示的就是远程备份但本地没有的照片。你也可以使用网页APP查看所有的备份。您还可以在电脑上通过网上邻居或进行查看。您甚至可以拔下移动硬盘直接读取。如果您的电视是安卓系统,我们也提供了电视APP,可以将照片分享到电视上。

      +

      是否支持远程访问?

      +

      可以,现在通过第三方反向代理(类似ngrok)的集成,也可以自己设置端口映射。

      +

      支持导出照片到手机吗?

      +

      iOS支持,您可以在手机上选择已经备份的照片保存到本地,本地会保存一份拷贝,如果保存到多台设备,就会有多份拷贝,删除本机上的照片只会删除本地的拷贝。

      +

      如果您有更多的问题没有在这里找到答案,请联系我们

      - -
      - -
      - -
      - - -
      - - - -
      - - -
      -
      - - -
      -

      关于我们

      - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
      - - - -
      - - - -
      - - - - -
      - -
      - - - - - - - - - - - - -
    + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    - - - - - - - + - - - + - + +
    + + + + + +
    - + diff --git a/zh/features/index.html b/zh/features/index.html index cbe09bf4..84e962a2 100644 --- a/zh/features/index.html +++ b/zh/features/index.html @@ -27,7 +27,7 @@ - + @@ -192,69 +192,51 @@

    特色功能

    - - - - - -

      保护隐私

    - +

      保护隐私

    Lomorage是运行在您网络的私有云服务,为您提供便捷的照片备份和管理服务,而无需担心隐私泄漏。我们没有,并永远不会收集任何用户隐私信息。

    -

    您也可以在家中为不同的家庭成员运行多个完全隔离的Lomorage服务。

    - -

       跨平台

    - +

       跨平台

    Lomorage服务可以运行在多种平台,您可以选择备份您的照片到Windows, macOS,甚至Raspberry Pi上,根据用户需求,我们会加上其他平台的支持。客户端支持iOS, Android和浏览器。

    - -

       安装简单

    - +

       安装简单

    我们并不是在构建另一个NAS系统,如果您的需求仅仅是备份和管理您的照片和视频,但是被NAS复杂的安装过程吓到,忘掉那些专业术语,放轻松。我们保证Lomorage的安装过程只需要短短几分钟。点击这里查看安装步骤。

    - -

       存储原始文件

    - +

       存储原始文件

    照片和视频会按照完整尺寸备份到您的硬盘,文件和您的手机上完全一样,EXIF元数据信息也不会丢失。支持所有常见的图片和视频格式,支持HEIC和动态照片。

    - -

      零迁移成本

    - -

    我们不会像一些云存储系统对文件进行切片分块存储,您的照片视频文件会以原始的文件格式存储备份到您的硬盘,我们不用任何私有的存储格式。要使用Lomorage,您也无需格式化硬盘,可以使用任何闲置的硬盘,并且我们的Raspberry Pi版本支持所有常见的文件系统格式,无需使用特定的文件系统,比如对于Windows用户,您可以使用FAT或者NTFS文件格式的硬盘,这样就无需第三方软件,存储的文件就能在Windows上访问。

    - -

      零维护成本

    - +

      零迁移成本

    +

    我们不会像一些云存储系统对文件进行切片分块存储,您的照片视频文件会以原始的文件格式存储备份到您的硬盘,我们不用任何私有的存储格式。要使用Lomorage,您也无需格式化硬盘,可以使用任何闲置的硬盘,并且我们的Raspberry Pi版本支持所有常见的文件系统格式,无需使用特定的文件系统,比如对于Windows用户,您可以使用FAT或者NTFS文件格式的硬盘,这样就无需第三方软件,存储的文件就能在Windows上访问。

    +

      零维护成本

    云服务之所以得到广泛使用的一个原因就是它在为用户提供了便利性的同时隐藏了系统的复杂性,因为Lomorage是一个在用户环境中部署的私用云,我们致力于提供云服务一样的用户体验,减少用户的干预和维护。

    -
      -
    • 自动升级: 有新版本可用的时候Lomorage服务会自动升级到最新版本。

    • - -
    • 自动迁移: 升级新系统的同时,会根据需要自动的进行数据迁移,保证版本兼容。

    • - -
    • 一致性检查: 系统会定期进行一致性检查,来保证数据的完整性和一致性,并自动修复。

    • +
    • +

      自动升级: 有新版本可用的时候Lomorage服务会自动升级到最新版本。

      +
    • +
    • +

      自动迁移: 升级新系统的同时,会根据需要自动的进行数据迁移,保证版本兼容。

      +
    • +
    • +

      一致性检查: 系统会定期进行一致性检查,来保证数据的完整性和一致性,并自动修复。

      +
    - - -

      多重备份

    - +

      多重备份

    大多数用户在手机空间不够的时候,会将已经备份的照片视频删除,仅仅只有一份备份是不够的,Lomorage提供了多种备份方案:

    -
      -
    • 本地容易备份: 您可以在本地备份多份数据,您只需要多接上一块硬盘,并在设置备份路径

    • - -
    • 远程备份: 您可以选择加密备份到朋友或亲戚加的闲置硬盘空间。我们计划在今年内支持这个功能。 -

    • +
    • +

      本地容易备份: 您可以在本地备份多份数据,您只需要多接上一块硬盘,并在设置备份路径

      +
    • +
    • +

      远程备份: 您可以选择加密备份到朋友或亲戚加的闲置硬盘空间。我们计划在今年内支持这个功能。

      +
    - -

      分享瞬间

    - + +

      分享瞬间

    您可以和自己家人分享照片和视频,并可自定义多个群组,分享不会占用额外的存储空间,而无需担心自己的手机空间不够。

    - -

      框起美好回忆

    - +

      框起美好回忆

    您可以将树莓派和显示屏连接作为数码相框,您可以通过低成本的树莓派zero w来搭建多个数码相框,并通过无线进行访问您的Lomorage存储备份,而无需担心数码相框的存储空间不够,也不需要手动将文件拷贝到数码相框。

    @@ -279,7 +261,6 @@

    diff --git a/zh/index.html b/zh/index.html index 09ebfb92..1b0643ad 100644 --- a/zh/index.html +++ b/zh/index.html @@ -1,453 +1,388 @@ + + + + + + + + + 主页 | Lomorage + + - - + + - + + + + - - - - - Lomorage - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + - - - + - + + - + + + - - - - - - - - - - + - - +
    +
    +
    +
    +
    +
    + +
    +
    +
    + + + +
    +
    +
    +

    什么是Lomorage?

    +

    Lomorage可以让您将任意设备上的照片视频备份到自己的服务器上,并通过AI进行智能管理。安装Lomorage服务器,下载手机客户端; 保存美好回忆,享受精彩瞬间!

    +
    +
    +
    + + +
    +
    + +
    +
    +
    +
    自动备份
    +

    自动备份

    +

    自动备份可以将您手机或电脑里面的照片视频备份到您自己的硬盘中; 使用冗余备份降低数据丢失的风险。永不限速。

    +
    +
    +
    + + + +
    +
    +
    +
    原始质量
    +

    原始质量

    +

    无论拍摄5千万像素的raw格式的照片,还是数小时的4K HD视频,无任何修改的备份您的高质量图片和视频,拍下来是什么,存的就是什么。

    +
    +
    +
    + + + +
    +
    +
    +
    智能分类
    +

    智能分类

    +

    使用AI技术将您的照片按地点,时间,任务,场景进行分类管理;搜索图片中的文字,检查相似图片,移除重复的照片视频;查看历史的今天。

    +
    +
    +
    + - - - - - -
    - -
    - - - - - - - - -
    -
    - - -
    -
    - -
    -
    -
    - -
    -

    隐私

    -

    照片本地存储,内网访问,
    无需担心泄漏个人隐私。

    -
    -
    - - - -
    -
    -
    - -
    -

    备份

    -

    私人云存储备份,原始照片大小,
    支持所有格式,包括动态照片,
    无需月租,不限流量。

    -
    -
    - - - -
    -
    -
    - -
    -

    分享

    -

    为家人创建账号,创建群组,
    安全的分享美好瞬间。

    -
    -
    - + +
    +
    + +
    +
    +
    +
    无限账号
    +

    无限账号

    +

    所有的家庭成员都可以拥有自己的独立账号;账号个数不受限制;方便分享。

    +
    +
    + + + +
    +
    +
    +
    随时查看
    +

    随时查看

    +

    从Android, iOS, Chromecast, Fire TV或者浏览器查看您的照片和视频;不再担心手机空间不够用。

    +
    +
    +
    + + + +
    +
    +
    +
    您的数据
    +

    您的数据

    +

    绝无任何形式的绑定。我们也不会收集用户隐私数据,您可以选择发送数据和日志以方便我们帮助您诊断问题,发现服务。

    +
    +
    +
    + + +
    - - - -
    -
    - -
    -
    -
    - -
    -

    跨平台

    -

    后台服务可运行在多种平台,
    支持Windows, macOS, raspberry Pi。

    -
    -
    - - - -
    -
    -
    - -
    -

    灾难恢复

    -

    照片本地远程双备份,
    无需担心照片丢失。

    -
    -
    - - - -
    -
    -
    - -
    -

    邦联组网

    -

    您和朋友之间运行完全独立的云服务,
    但也能自由而安全的分享照片。

    -
    -
    - +
    + +
    +
    +
    +
    Flexible Storage
    +

    灵活的存储

    +

    支持所有主流的文件系统(FAT32, NTFS, EXT etc);磁盘无需重新格式化即可使用,最大支持单盘16TB。

    +
    +
    +
    + + + +
    +
    +
    +
    跨平台
    +

    跨平台

    +

    原生iOS, Android客户端,Web客户端。跨平台服务器软件(MAC/Linux/Windows),可以将服务器运行在任意设备上。

    +
    +
    +
    + + + +
    +
    +
    +
    完全免费
    +

    完全免费

    +

    无须任何费用,绝无隐藏收费。在任意闲置的笔记本服务器,台式机或者单版计算机上,都可安装免费的Lomorage服务器程序和客户端程序。

    +
    +
    +
    - - -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - +
    +
    -
    - - -
    - -
    - - -
    - - +
    +
    +
    +

    +

    + 立即下载 +
    +
    +
    + - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/index.xml b/zh/index.xml index 0c4feae2..6d3a0a0a 100644 --- a/zh/index.xml +++ b/zh/index.xml @@ -1,32 +1,37 @@ - + - Lomorage - https://lomorage.com/zh/ - Recent content on Lomorage + 主页 on Lomorage + http://lomorage.com/zh/ + Recent content in 主页 on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> 迁移MyCloud的数据到Lomorage - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ <p><strong>曾经</strong>买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。</p> @@ -34,228 +39,102 @@ 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> 利用lomorage把照片和视频传到Windows - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ <p>之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。</p> 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - - https://lomorage.com/zh/external-access/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/external-access/ - 外网访问设置 外网访问需要一点技术背景来进行手工设置,我们后续的版本会让这个设置更加简单。 -外网访问依赖于隧道连接服务来实现内网穿透,现有一些服务提供商提供免费的服务,大多数隧道服务都需要下载客户端,运行在您的设备上,同公网的隧道服务器建立连接,并分配子域名,当通过子域名进行访问时,隧道服务就会将请求转发到您的应用程序。 -您可以使用localtunnel或者ngrok,这两个都是免费的隧道服务. localtunnel无需注册,并且支持自定义子域名; ngrok需要注册,使用自定义子域名需要付费,但更加稳定,并没有额外的依赖。 -如果您使用Lomorage的树莓派镜像, 登陆的用户名是&rdquo;pi&rdquo;,密码是&rdquo;raspberry&rdquo; -localtunnel 如果您使用Windows或者macOS,您需要先先安装nodejs,再安装localtunnel。如果您使用Lomorage的树莓派镜像,您可以直接运行sudo localtunnel_install.sh来安装localtunnel,您可以跳过下面的步骤1和步骤2。 -1. 安装nodejs 下载并安装对应平台下的二进制安装包。 -2. 安装localtunnel 打开命令行窗口并输入: -npm install -g localtunnel 3. 运行localtunnel 如果您需要使用子域名&rdquo;allice&rdquo; (您可以选择自己的子域名), 打开命令行窗口并输入: -lt -s allice -p 8000 --print-requests &rdquo;-s&rdquo;指定要使用的子域名, &ldquo;-p&rdquo;指定要转发的目的端口, Lomorage服务默认使用&rdquo;8000&rdquo;, &ldquo;&ndash;print-requests&rdquo;输出接收到的请求信息。 -如果输出结果没有任何错误,并输出类似如下的内容: -your url is: https://allice.localtunnel.me 您可以在浏览器窗口中打开localtunnel输出的url,如果您能在localtunnel的输出看到刚发出的访问请求日志,隧道服务就已经配置成功了。 -Sat Aug 31 2019 11:38:00 GMT-0700 (PDT) GET / 4. 在Lomorage手机应用中配置隧道服务 打开Lomorage手机应用,在配置选项页里找到&rdquo;外网服务&rdquo;,设置地址为localtunnel输出的url,比如类似&rdquo;allice.localtunnel.me&rdquo;。 -ngrok 1. 注册 注册ngrok,完成后,会显示&rdquo;设置和安装&rdquo;页面. -2. 下载 ngrok只有一个二进制文件,您可以下载特定平台的版本。 -如果您使用树莓派,您需要在&rdquo;设置和安装&rdquo;页面中拷贝Linux(ARM)版本的链接,当前是&rdquo;https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-arm.zip&quot;, 您可以通过&rdquo;wget&rdquo;来下载。 -wget https://bin. - - - - - https://lomorage.com/zh/install-frame/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/install-frame/ - 目录 安装Lomo-frame 配置Lomo-frame 快速开始 关闭开启相框 关闭开启Lomo-frame应用 定时开关 播放顺序 自定义播放列表 播放媒体类型 快捷键 设置多个数码相框 1. 安装Lomo-frame 2. 设置WiFi连接 3. 检查主树莓派的IP地址 4. 找到主树莓派的加载目录 5. 远程挂载媒体目录到树莓派zero w 6. 重启 安装Lomo-frame Lomo-frame应用只支持Raspberry Pi平台, Windows/Mac或docker版本不支持。 -如果您使用最新的Lomorage树莓派系统镜像, 就无需再安装Lomo-frame应用,已经预装到系统中了。 -否则,如果您的系统镜像是2020-03-13之前的 (&ldquo;image_2020-03-13-lomorage-lite.zip &ldquo;),或者您没有使用Lomorage树莓派系统镜像,您可以使用下面的命令安装(您应该已经安装过lomorage服务程序,添加过&rdquo;gpg.key&rdquo;文件,如果没有,请参考这里)。 -sudo apt update sudo apt install lomo-frame 配置Lomo-frame 您有多个选择: - 在同一个树莓派上运行Lomorage服务和相框程序。 - 在不同的树莓派上运行Lomorage服务和相框程序,比如您可以用树莓派zero来运行相框程序,用性能更好的的树莓派4来运行树莓派4。 - 如果相框程序运行起来后,会在相框屏幕上显示一个二维码,您可以使用iOS Lomorage应用程序来注册相框,成功后,您就可以在Lomorage手机应用里给相框分享照片了,就像分享到其他联系人一样。当前只有iOS应用支持注册/注销数码相框,但注册之后,您可以使用Android应用程序来分享照片给数码相框。 -快速开始 如果您已经安装了Lomo-frame程序,它会在开机后自动启动。 -如果树莓派没有连上网络,您需要先将其连上网络,如果您使用WiFi,先连上HDMI和键盘,然后重启设备,按照屏幕上的提示进入命令行并登陆,接下来可以使用命令wifi_switch client [wifi-ssid] [wifi-password], 用您自己的配置替换&rdquo;[wifi-ssid]&ldquo;和&rdquo;[wifi-password]&ldquo;。 -网络设置完成后,重启,会显示QRCode,您可以到Lomorage iOS APP的设置页面,注册相框,然后您就可以使用手机应用程序来分享照片给数码相框。 - 如果你无需更多的高级配置,则可以跳过下面的内容。 - - - - - https://lomorage.com/zh/installation-android/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation-android/ - 安装Lomorage安卓手机App ! 中文版发布了,请下载试用 -您可以在安卓手机上安卓Lomorage App,目前的Lomorage App是开发预览版,最低支持的安卓系统版本是7.1,正式版会很快发布,欢迎关注Lomorage公众号。 -欢迎提供反馈,我们会不断更新我们的软件, 点击下面的图标下载最新中文版 - -- Lomorage 是一款个人私有照片和视频备份工具,它方便的把您的照片和视频备份到Windows PC机或者Apple MAC机,也可以备份到Lomorage 定制的树莓派上。 您需要在Windows 或者 Mac 或者 树莓派上安装 Lomorage 服务程序。 -安装完Lomorage客户端,可能需要花一两分钟时间导入您的视频和照片。然后在Manage Account界面可以创建账号,登录,下拉备份您的照片和视频,还可以和您的家人进行分享。 -App会导入您的照片和视频,并且提示您需要登录 点击右上角的菜单,进入账号管理界面. 在那里,App会自动发现您的Lomorage服务器程序 然后创建账号,登录。您也可以通过二维码扫描您的Lomorage服务器程序. (如果您用的是Windows或者Mac的Lomorage 服务程序) 下来开始备份您的照片和视频 可以选择过滤选项来查看您要的照片和视频 在 备份 栏目,你可以长按选中然后分享给您的家人 通过 Members 选项来查看所有的用户 通过 Inbox 来查看您的家人通过Lomorage 系统分享给您的照片和视频 您可以在设置页配置您的远程访问和冗余备份,并且发送反馈 - - - - - https://lomorage.com/zh/installation-ios/ + Lomorage照片云存储 + http://lomorage.com/zh/buy/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/zh/installation-ios/ - 安装Lomorage iOS客户端 您可以在iPad或iPhone上安装Lomorage客户端应用,最低支持的iOS系统版本是10.3。 - -- 安装完Lomorage客户端,启动就可以自动发现同一网络中运行的Lomorage服务,如果您有多台Lomorage服务运行,那些会列举出来供选择。如果未能自动发现服务,您可以选择扫码的方式登陆(Lomorage服务运行在Windows或者MacOS下,打开LomoAgent设置),或者手动输入IP地址和端口。 -然后您可以创建用户,选择存储目录,登陆后,会花上几分钟来导入您相册的照片和视频,然后您可以选择需要上传的文件进行备份,如果已经备份成功,图片或视频下会显示一个绿色的小勾。在远程的选项卡里,显示的是远程备份过但本地没有的文件,所以如果您删除掉本地成功备份的文件,它们会显示在远程备份里面。 - - - - - - https://lomorage.com/zh/installation-osx/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation-osx/ - 在MacOS上安装Lomorage服务程序 1. 点击下面的链接安装Lomorage服务程序。 -macOS 如果上面链接无法访问,也可以从百度网盘下载: 链接: https://pan.baidu.com/s/1SkCo-zzvgAC_GzugVaZVbw 提取码: wj35 -2. 双击&rdquo;LomoAgent.dmg&rdquo;开始安装,参考下面步骤完成安装。 - 3. 运行应用程序LomoAgent,如果有防火墙提示,请允许LomoAgent访问网络。 -4. 程序启动后,您需要设置数据目录才能正常使用,数据目录用来存储您的手机上传的照片视频。除此之前您也可以再多选择一个冗余备份目录,系统会每天定时进行冗余备份。 - - - - - - https://lomorage.com/zh/installation-pi/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation-pi/ - 目录 在树莓派上安装Lomorage服务程序 安装系统镜像 Docker安装 1. 树莓派上安装Docker 2. 获取Docker镜像 3. 运行 APT安装 1. 添加lomoware源 2. 安装Lomorage 3. 按需修改加载目录和运行用户 4. 运行 在树莓派上安装Lomorage服务程序 要在树莓派上运行,您需要先购买一个树莓派,Lomorage可以运行在以下型号的机器上: - Raspberry Pi 4 Model B Raspberry Pi 3 Model B+ Raspberry Pi Zero W Raspberry Pi 2 Model B 如果您还没有树莓派,我们建议购买新款的树莓派,会有更好的性能。下面是您需要的最小配置: - 树莓派主板 配套电源 16GB MicroSD卡 有3种方式来在Raspberry Pi上安装Lomorage服务程序, 一种是安装预编译好的系统镜像,该镜像已经安装了所有Lomorage服务程序依赖的库和第三方工具,简单快捷,推荐使用;如果您已经有树莓派在运行其他服务,您也可以使用Docker镜像来安装,或者使用从APT源安装。 -安装系统镜像 预装的系统镜像包括所有的包: - lomo-backend: Lomorage服务程序 - lomo-web: Lomorage网页程序 - lomo-base: 系统工具,包括网络配置,开关控制, 磁盘加载, 蓝牙控制台 - - - - - https://lomorage.com/zh/installation-web/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation-web/ - 安装Lomorage网页客户端 您可以使用Lomorage网页客户端来上传电脑里面的照片和视频,并且可以使用图库来浏览已经备份的照片和视频。 -如果您使用MacOS版本的Lomorage服务程序,您可以点击LomoAgent应用的“导入”菜单打开网页客户端。 -如果您使用树莓派版本的Lomorage服务程序,您可以使用下面的命令来安装Lomorage网页客户端到树莓派上: -sudo apt update sudo apt install lomo-web 然后您可以在电脑的浏览器上访问&rdquo;http://raspberrypi-lomorage.local:8001&ldquo;,打开Lomorage网页客户端。 - - - - - - https://lomorage.com/zh/installation-win/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation-win/ - 在Windows上安装Lomorage服务程序 1. 点击下面的链接安装Lomorage服务程序。 -Windows 如果上面链接无法访问,也可以从百度网盘下载: -链接: https://pan.baidu.com/s/193H64Xw5lMGA90O1eDrD_A -提取码: wsd4 -2. 双击&rdquo;lomoagent.msi&rdquo;开始安装。如果有Windows Defender提示未知应用,请参考如下步骤允许安装程序运行。 - 3. 勾选&rdquo;最终用户许可协议&rdquo;后,一路完成安装步骤。 - 4. 双击桌面的LomoAgent图标,启动应用程序,如果有防火墙提示,请允许LomoAgent访问私有网络。 - 5. 程序启动后,您需要设置数据目录才能正常使用,数据目录用来存储您的手机上传的照片视频。 - + http://lomorage.com/zh/buy/ + Lomorage照片云存储 - 珍藏美好回忆,享受精彩瞬间 我们是一群硅谷的工程师,在使用过一些现有的照片存储备份管理产品后,我们觉得需要有更加简单易用,更加稳定,经济实用,涵盖照片视频的备份,管理,分享和展示的一套完整方案。出于对家庭的热爱,对隐私的关注,我们开发了Lomorage,我们是深度用户,我们倾听用户的声音,我们希望Lomorage能成为一个物美价廉品质优的大众产品。 +您可以自行下载安装到您已有到设备,或者您也可以直接购买即插即用的Lomorage照片云存储,迷你版和标准版硬件分别基于Orange Pi Zero和Raspberry Pi 4,预装了定制的Lomorage系统。 +淘宝购买链接 1. 问题痛点 手机里面太多照片和视频,怎么备份好? 懒得整理照片,照片存放的七零八落,还有重复? 习惯文档拍照备份,但不能文字查找? 能不能秒开备份的照片视频,就像存本地一样? 担心备份照片的硬盘坏掉? 担心隐私泄露? 担心备份照片视频被压缩? 担心上车被坑,限速收费,变相收费,甚至停止运营? 2. 特色功能 手机照片,轻松下拉备份,是否备份成功一目了然。 支持增量差异上传,不会重复备份。 支持断点续传,再大的视频都不怕。 完美支持动态照片Live Photo,慢动作视频和DNG格式,支持所有主流照片视频格式。 原始文件备份,质量无损耗,时间地理位置等信息统统保留。 有相同的照片,照片去重无需存储多次。 相似图片分析,可以方便选择最好的留下。 多台手机平板,登陆同一账号,照片即可访问。 家庭成员不同账号,保护隐私。 有小秘密,加密存储。(即将推出) 照片分享,不占手机内存。 备份的照片无需手动下载到本地,也能轻松分享到社交网络。 换手机了照片也能随时访问。 一键批量导出备份照片到手机。(即将推出) 离线智能缓存,手机没网也能看海量照片视频。 按地点,时间,图片文字等智能查找。 历史的今天,让您的照片不再封存在硬盘里。 支持手动整理相册,打标签,让你按自己的方式组织照片。(即将推出) 多重备份,大大降低数据丢失风险。 硬盘照片导入,把繁琐的照片管理工作交给专业的Lomorage。 不限速,不限账号数,硬盘备份数据一目了然,拒绝绑架用户。 硬盘即插即用,无需重新格式化。 更多信息,猛击查看 +3. Lomorage实拍图 Lomorage迷你版:小身板,低功耗,功能一个不少。 手机APP:轻松下拉备份,离线缓存,超省空间,智能查找,快速定位。 Lomorage网页版:相机照片,硬盘照片,拖入即可方便导入。 4. 常见问题 除了能做照片备份管理之外还能做什么? **Lomorage专注照片备份和管理,我们的现阶段的目标是把这块功能做的易用稳定完善,做一个值得信赖的产品。**但我们使用的是一个基于Linux的开放系统,所以如果您想要有一些动辄上千元的NAS才具备的功能,Lomorage都可以安装相关的软件,比如下载可以安装Transmission,个人媒体中心可以安装Jellyfin。而轻NAS的其他文件的备份,通过SAMBA可以轻松做到,默认已经启用。 + 容量多大? Lomorage不自带硬盘,您的硬盘通过USB接上就能用,无论是机械硬盘,SSD,还是U盘,有多大我们都支持,实测16T可用。 + 可以接多块硬盘吗? 可以,但需要通过带电源的USB集线器才行,默认的功率只能支持一块硬盘。 价格比较 - https://lomorage.com/zh/compare/ + http://lomorage.com/zh/compare/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/zh/compare/ + http://lomorage.com/zh/compare/ 价格比较 下面的比较主要考虑的是每个产品的最大卖点,并假设用户的主要需求是照片的备份和管理,如果您需要的功能超出那个范围,您可能需要考虑一下直接用NAS,或者如果您是专家可以使用树莓派或其他的单板计算机DIY一个。 比如,云服务主要按不同的存储空间容量大小来定价,其他的一些功能则没有差别;而对于那些放置在自家的硬件产品,价格的差别主要在于硬件的配置,同一厂商的不同型号软件功能没有太大差异。在所有的功能中,备份是最基础的功能,其他的高级功能都是构建在这个基础上的。 Lomorage相比而言更加经济实用,也更加灵活,软件免费,如果您使用Windows或Mac电脑,也就无需另外购置额外的硬件,但如果想更好但利用改系统,将其作为一个7x24小时的私有云,您可以选择树莓派。即便是购买树莓派,也比市面上的方案更加经济实用。软件方面有些高级功能现在还在开发中,但基本的存储备份功能安全稳定,没有任何隐形费用,没有任何用户锁定,不泄漏隐私,为什么不试试呢? -和云服务的比较 下面的按年费来比较, 下面的表格的空单元格表示没有对应的选项。比如Apple iCloud只提供了5 GB, 50 GB, 200 GB and 2 TB的选项, 对Lomorage而言,现在比较难买到新的硬盘是小于500G的。Lomorage的基础功能都是免费的,所以下面的价格主要是考虑的硬件,和硬件的损耗,还有电费。 - Lomorage Apple iCloud Google Photo Amazon Photo OneDrive 百度云 5 GB 免费 免费 免费 15 GB 免费 50 GB ¥ 72 100 GB ¥ 141. - - - - 安装说明 - https://lomorage.com/zh/installation/ - Mon, 01 Jan 0001 00:00:00 +0000 - - https://lomorage.com/zh/installation/ - 安装说明 1. 简介 要使用Lomorage,您需要在本地网络运行Lomorage服务程序,您可以选择在Windows,macOS或者树莓派上运行。然后您需要去应用程序商店下载手机客户端应用。在运行了Lomorage服务程序之后,手机客户端会自动发现服务,无需配置,然后您就可以开始备份照片和视频了。 -2. 安装Lomorage服务程序 您可以根据自己的喜好和需求来选择不同的平台安装Lomorage服务程序。Windows或macOS上运行Lomorage服务程序可以提供比树莓派上更好的性能,上传和下载的速度会更快,但没树莓派节约能源,7x24小时运行,一年下来电费不会超过30元。 -Windows &nbsp; macOS &nbsp; Raspberry Pi &nbsp; Docker 3. 安装Lomorage客户端 在运行了Lomorage服务程序后,您可以下载手机客户端,当前支持iPhone或者iPad。 -您也可以使用Web版本来上传电脑中已有的照片和视频,也可以在电脑上浏览已经备份的照片和视频。 - &nbsp; 4. 外网访问 (可选) Lomorage可以运行在您的私有网络中,无需互联网连接,如果您需要通过外网访问,您需要启用外网访问,当前Lomorage支持第三方隧道服务方式进行外网连接,点击这里查看具体配置。 -5. 设置数码相框 (可选) 您可以将树莓派连接显示器,并作为数码相框,您也可以使用树莓派zero w来搭建多个数码相框,并远程通过WiFi来访问。点击这里查看数码相框设置。 - Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY +和云服务的比较 我们不排斥云存储,云存储可以作为本地存储的一个备份,本地存储是建议都保留的。 +下面的按年费来比较, 下面的表格的空单元格表示没有对应的选项。比如Apple iCloud只提供了5 GB, 50 GB, 200 GB and 2 TB的选项, 对Lomorage而言,现在比较难买到新的硬盘是小于500G的。Lomorage的基础功能都是免费的,所以下面的价格主要是考虑的硬件,和硬件的损耗,还有电费。 +百度云的价格是非常有优势的,但也有用户抱怨隐私政策,流量限制等,可以作为本地存储之外的可选备份方案。 + Lomorage (双备份) 年费 +假设4年升级一次设备 Apple iCloud Google Photo Amazon Photo OneDrive 百度云 5 GB 免费 免费 免费 15 GB 免费 50 GB ¥ 72 100 GB ¥ 141. 常见问题 - https://lomorage.com/zh/faq/ + http://lomorage.com/zh/faq/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/zh/faq/ - 1. 为什么不用云服务? 2. NAS怎么样? 3. 其他选择呢? 4. 为什么要做Lomorage? 5. 价格 6. 怎么想到&rdquo;Lomorage&rdquo;这个名字? 7. 你们的商业模式是什么? 8. 如何设置冗余备份? 9. 支持那些文件系统? 10. 为什么时间看起来不对? 11. 如何设置冗余备份? 12. 编辑后的照片视频支持吗? 13. 什么是后台备份? 1. 为什么不用云服务? 我们认为数字资产的管理需要保存在本地,在本地做好备份,而云端的存储只是本地存储的一个补充,现有的云存储成本过高,国内的云存储厂商相继停止运营: - 115 网盘:2016 年 3 月 4 日下线「我聊」中的「文件发送」功能,后续一直在调整。 新浪微盘:2016 年 6 月 30 日开始关闭免费个人用户的存储服务。 华为网盘:2016 年 6 月 30 日开始关闭。 迅雷 / 金山快盘:停止快盘个人用户的存储服务,数据保留到 2016 年 6 月 30 日。 360 云盘:2016 年 11 月起停止个人云盘服务,2017 年 2 月 1 日起关闭所有云盘账号并清空数据。 UC 云盘:2016 年 4 月 15 日开始终止网盘的存储服务,停止上传服务 / 离线资源存至网盘功能 / 视频转码服务。 国内外的照片存储服务也相继关停: + http://lomorage.com/zh/faq/ + 怎么想到&quot;Lomorage&quot;这个名字? Lomorage的费用是多少? 如何设置冗余备份? 支持那些文件系统? 为什么硬盘上的目录命名的时间看起来不对? 如何设置冗余备份? 编辑后的照片视频支持吗? 什么是后台备份? Raspbian不能启动如何恢复? 密码重置 除了能做照片备份管理之外还能做什么? 容量多大? 可以接多块硬盘吗? 闲置硬盘可以用吗? 伤硬盘吗? 如何安装使用? 备份的照片怎么看? 是否支持远程访问? 支持导出照片到手机吗? 怎么想到&quot;Lomorage&quot;这个名字? &ldquo;Lomorage&quot;结合了&quot;Lomography&quot;和&quot;Storage&quot;两个单词. +Lomorage的费用是多少? 软件免费,硬件用户自己可以购买,基于Orange Pi Zero套件,价格不到200人民币。具体的价格比较和配置可以参考这里。绝无任何变相收费。 +如何设置冗余备份? 如果您是在macOS上运行Lomorage服务(Windows暂时还没有支持),您可以打开LomoAgent应用程序的设置窗口,设置冗余备份。 +如果您是在树莓派上运行Lomorage服务,插入新的硬盘后,打开iOS手机客户端,在设置选项卡里可以设置冗余备份。 +支持那些文件系统? 如果您在macOS或者Windows上运行Lomorage服务,您可以使用任何Windows或者macOS操作系统原生支持的文件系统。 +如果您是在树莓派上运行Lomorage服务,你可以使用更多的文件系统,包括:&ldquo;vfat exfat ext2 ext3 ext4 hfsplus ntfs fuseblk&rdquo;。 +为什么硬盘上的目录命名的时间看起来不对? 在系统中使用UTC时间来存储而不是本地时间,原因是照片可能拍摄于不同的时区,用户也会离开原先的住处搬迁到另外的时区,使用UTC时间戳能简化处理,而且可以很容易的在客户端应用程序转化为本地时间。 +如何设置冗余备份? 冗余备份的方案有几种, 查看这篇博客获取更多详细信息。 +编辑后的照片视频支持吗? 苹果系统中,图片编辑后,系统会存储原始文件,编辑后的文件和修改操作记录,Lomorage只会存储编辑后的照片。视频编辑会记录上次编辑前的视频文件,上次编辑的操作记录,Lomorage也只会存储编辑后的视频。 +如果您想存储编辑之前的照片或视频,再确保编辑后的视频已经备份成功后,到系统的照片应用中,撤销编辑,再上传编辑前的文件。 +什么是后台备份? 开启后台备份后,无需打开Lomorage APP就可以备份照片视频。 +但是由于苹果平台的限制,第三方应用并不能像iCloud那样做到一直在后台备份,只能通过一些hack的方式,现在是通过两种方式来触发应用在后台运行,一种是在系统空闲时,通过后台获更新的机制来触发应用后台运行,另一种是通过地理位置的大范围的变化来触发应用后台运行,所以开启后台备份功能后会请求获取地理位置的权限,这些都只能持续很短的时间。 +当手机操作讲Lomorage APP放后台后,原有的上传还是会继续,只是下次个文件上传需要等到下一次将Lomorage APP切换到前台,或者通过上述的两种Hack的方式让APP在后台继续运行。 +Raspbian不能启动如何恢复? 不用担心,您的相片存储在硬盘中,而且数据库也都备份到硬盘中了。您只需要将备份的数据库恢复即可。 + 将硬盘插入到PC中,您可以发现在Lomorage的每个用户名目录下都有一个assets.db文件,这些文件都是一样的。 重新安装Lomorage Raspbian镜像。 树莓派接上硬盘。 从任意一个用户的目录拷贝assets.db到树莓派的/opt/lomorage/var/目录下。 树莓派上重启Lomorage服务程序: sudo service lomod restart。 Armbian下的恢复类似。 - 特色功能 - https://lomorage.com/zh/features/ + 联系我们 + http://lomorage.com/zh/contact/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/zh/features/ - -- &nbsp;&nbsp;保护隐私 Lomorage是运行在您网络的私有云服务,为您提供便捷的照片备份和管理服务,而无需担心隐私泄漏。我们没有,并永远不会收集任何用户隐私信息。 -您也可以在家中为不同的家庭成员运行多个完全隔离的Lomorage服务。 -&nbsp;&nbsp;&nbsp;跨平台 Lomorage服务可以运行在多种平台,您可以选择备份您的照片到Windows, macOS,甚至Raspberry Pi上,根据用户需求,我们会加上其他平台的支持。客户端支持iOS, Android和浏览器。 -&nbsp;&nbsp;&nbsp;安装简单 我们并不是在构建另一个NAS系统,如果您的需求仅仅是备份和管理您的照片和视频,但是被NAS复杂的安装过程吓到,忘掉那些专业术语,放轻松。我们保证Lomorage的安装过程只需要短短几分钟。点击这里查看安装步骤。 -&nbsp;&nbsp;&nbsp;存储原始文件 照片和视频会按照完整尺寸备份到您的硬盘,文件和您的手机上完全一样,EXIF元数据信息也不会丢失。支持所有常见的图片和视频格式,支持HEIC和动态照片。 -&nbsp;&nbsp;零迁移成本 我们不会像一些云存储系统对文件进行切片分块存储,您的照片视频文件会以原始的文件格式存储备份到您的硬盘,我们不用任何私有的存储格式。要使用Lomorage,您也无需格式化硬盘,可以使用任何闲置的硬盘,并且我们的Raspberry Pi版本支持所有常见的文件系统格式,无需使用特定的文件系统,比如对于Windows用户,您可以使用FAT或者NTFS文件格式的硬盘,这样就无需第三方软件,存储的文件就能在Windows上访问。 -&nbsp;&nbsp;零维护成本 云服务之所以得到广泛使用的一个原因就是它在为用户提供了便利性的同时隐藏了系统的复杂性,因为Lomorage是一个在用户环境中部署的私用云,我们致力于提供云服务一样的用户体验,减少用户的干预和维护。 - 自动升级: 有新版本可用的时候Lomorage服务会自动升级到最新版本。 - 自动迁移: 升级新系统的同时,会根据需要自动的进行数据迁移,保证版本兼容。 - 一致性检查: 系统会定期进行一致性检查,来保证数据的完整性和一致性,并自动修复。 - &nbsp;&nbsp;多重备份 大多数用户在手机空间不够的时候,会将已经备份的照片视频删除,仅仅只有一份备份是不够的,Lomorage提供了多种备份方案: - 本地容易备份: 您可以在本地备份多份数据,您只需要多接上一块硬盘,并在设置备份路径。 - 远程备份: 您可以选择加密备份到朋友或亲戚加的闲置硬盘空间。我们计划在今年内支持这个功能。 &nbsp;&nbsp;分享瞬间 您可以和自己家人分享照片和视频,并可自定义多个群组,分享不会占用额外的存储空间,而无需担心自己的手机空间不够。 -&nbsp;&nbsp;框起美好回忆 您可以将树莓派和显示屏连接作为数码相框,您可以通过低成本的树莓派zero w来搭建多个数码相框,并通过无线进行访问您的Lomorage存储备份,而无需担心数码相框的存储空间不够,也不需要手动将文件拷贝到数码相框。 + http://lomorage.com/zh/contact/ + 客户服务 如果您有任何的问题,建议,新需求,请联系我们,我们洗耳恭听。 +您也可以加入我们的slack channel - 联系我们 - https://lomorage.com/zh/contact/ + 调查问卷 + http://lomorage.com/zh/survey/ Mon, 01 Jan 0001 00:00:00 +0000 - https://lomorage.com/zh/contact/ - 客户服务 如果您有任何的问题,建议,新需求,请联系我们,我们洗耳恭听。 -您也可以加入我们的slack channel + http://lomorage.com/zh/survey/ + loading… 点击这里查看结果。 - \ No newline at end of file + diff --git a/zh/install-frame/index.html b/zh/install-frame/index.html index bc3db8de..42cd0a71 100644 --- a/zh/install-frame/index.html +++ b/zh/install-frame/index.html @@ -27,7 +27,7 @@ - + @@ -192,199 +192,132 @@

    - - -

    目录

    - +

    目录

    + + + -

    安装Lomo-frame

    -

    Lomo-frame应用只支持Raspberry Pi平台, Windows/Mac或docker版本不支持。

    -

    如果您使用最新的Lomorage树莓派系统镜像, 就无需再安装Lomo-frame应用,已经预装到系统中了。

    -

    否则,如果您的系统镜像是2020-03-13之前的 (“image_2020-03-13-lomorage-lite.zip -“),或者您没有使用Lomorage树莓派系统镜像,您可以使用下面的命令安装(您应该已经安装过lomorage服务程序,添加过”gpg.key”文件,如果没有,请参考这里)。

    - +“),或者您没有使用Lomorage树莓派系统镜像,您可以使用下面的命令安装(您应该已经安装过lomorage服务程序,添加过"gpg.key"文件,如果没有,请参考这里)。

    sudo apt update
     sudo apt install lomo-frame
    -
    - -

    配置Lomo-frame

    - +

    配置Lomo-frame

    您有多个选择:

    -
      -
    1. 在同一个树莓派上运行Lomorage服务和相框程序。

    2. - -
    3. 在不同的树莓派上运行Lomorage服务和相框程序,比如您可以用树莓派zero来运行相框程序,用性能更好的的树莓派4来运行树莓派4。

    4. +
    5. +

      在同一个树莓派上运行Lomorage服务和相框程序。

      +
    6. +
    7. +

      在不同的树莓派上运行Lomorage服务和相框程序,比如您可以用树莓派zero来运行相框程序,用性能更好的的树莓派4来运行树莓派4。

      +
    -

    如果相框程序运行起来后,会在相框屏幕上显示一个二维码,您可以使用iOS Lomorage应用程序来注册相框,成功后,您就可以在Lomorage手机应用里给相框分享照片了,就像分享到其他联系人一样。当前只有iOS应用支持注册/注销数码相框,但注册之后,您可以使用Android应用程序来分享照片给数码相框。

    -

    快速开始

    -

    如果您已经安装了Lomo-frame程序,它会在开机后自动启动。

    - -

    如果树莓派没有连上网络,您需要先将其连上网络,如果您使用WiFi,先连上HDMI和键盘,然后重启设备,按照屏幕上的提示进入命令行并登陆,接下来可以使用命令wifi_switch client [wifi-ssid] [wifi-password], 用您自己的配置替换”[wifi-ssid]“和”[wifi-password]“。

    - +

    如果树莓派没有连上网络,您需要先将其连上网络,如果您使用WiFi,先连上HDMI和键盘,然后重启设备,按照屏幕上的提示进入命令行并登陆,接下来可以使用命令wifi_switch client [wifi-ssid] [wifi-password], 用您自己的配置替换”[wifi-ssid]“和”[wifi-password]"。

    网络设置完成后,重启,会显示QRCode,您可以到Lomorage iOS APP的设置页面,注册相框,然后您就可以使用手机应用程序来分享照片给数码相框。

    -

    -

    如果你无需更多的高级配置,则可以跳过下面的内容。

    -

    关闭开启相框

    -

    Lomo-frame应用程序会在系统启动的时候自动加载,但如果您需要手动控制,你可以使用framectrl.sh on命令打开, 或者使用framectrl.sh off命令关闭。这个命令打开或关闭Lomo-frame应用,并同时打开或者关闭显示器。

    -

    关闭开启Lomo-frame应用

    -

    如果您只是想退出Lomo-frame应用,但是想让显示器L续开着,您可以使用下面的方法之一:

    -
      -
    • 如果树莓派接了键盘,按”esc”键。

    • - -
    • 如果您使用ssh访问,使用sudo service supervisor stop命令。

    • +
    • +

      如果树莓派接了键盘,按"esc"键。

      +
    • +
    • +

      如果您使用ssh访问,使用sudo service supervisor stop命令。

      +
    -

    您可以用sudo service supervisor start命令打开Lomo-frame应用.

    -

    定时开关

    - -

    默认打开时间是”08:00 am”, 关闭时间是”21:00 pm”.

    - -

    您可以使用下面的命令来修改, 下面的命令修改打开时间为”10:00 am”,关闭时间为”18:00”:

    - +

    默认打开时间是"08:00 am”, 关闭时间是"21:00 pm".

    +

    您可以使用下面的命令来修改, 下面的命令修改打开时间为"10:00 am",关闭时间为"18:00":

    framectr.sh add --on-hour 10 --off-hour 18
    -
    - -

    您也可以修改打开时间为”10:30 am”,关闭时间为”18:30”

    - +

    您也可以修改打开时间为"10:30 am",关闭时间为"18:30"

    framectr.sh add --on-hour 10 --on-min 30 --off-hour 18 --off-min 30
    -
    - -

    或者您想7x24小时开机, 删除定时开关机:

    - +

    或者您想7x24小时开机, 删除定时开关机:

    framectr.sh remove
    -
    - -

    播放顺序

    - +

    播放顺序

    默认是随机播放,但如果您希望顺序播放:

    -
    sudo sed -i "s/is_random =.*/is_random = false/" /opt/lomorage/var/video_looper.ini
    -
    - -

    或者您想改为随机播放:

    - +

    或者您想改为随机播放:

    sudo sed -i "s/is_random =.*/is_random = true/" /opt/lomorage/var/video_looper.ini
    -
    - -

    自定义播放列表

    - -

    您可以创建后修改播放列表文件”/opt/lomorage/var/lomo-playlist.txt”,格式是每个文件路径一行。

    - +

    自定义播放列表

    +

    您可以创建后修改播放列表文件"/opt/lomorage/var/lomo-playlist.txt",格式是每个文件路径一行。

    播放媒体类型

    - -

    默认会播放视频和照片,但如果您只想播放照片,您可以修改”/opt/lomorage/var/video_looper.ini”文件中的”media_type”:

    - +

    默认会播放视频和照片,但如果您只想播放照片,您可以修改"/opt/lomorage/var/video_looper.ini"文件中的"media_type":

    sudo sed -i "s/media_type =.*/media_type = image/" /opt/lomorage/var/video_looper.ini
    -
    - -

    或者您只想播放视频:

    - +

    或者您只想播放视频:

    sudo sed -i "s/media_type =.*/media_type = video/" /opt/lomorage/var/video_looper.ini
    -
    - -

    或者想重置为播放视频和照片:

    - +

    或者想重置为播放视频和照片:

    sudo sed -i "s/media_type =.*/media_type = all/" /opt/lomorage/var/video_looper.ini
    -
    - -

    快捷键

    - +

    快捷键

    您可以通过下面的快捷键来控制:

    -
      -
    • “r”: 重新扫描并生成播放列表。

    • - -
    • “k”: 跳到下一个视频或图片。

    • - -
    • “s”: 暂停播放/继续播放

    • - -
    • “esc”: 退出应用

    • +
    • +

      “r”: 重新扫描并生成播放列表。

      +
    • +
    • +

      “k”: 跳到下一个视频或图片。

      +
    • +
    • +

      “s”: 暂停播放/继续播放

      +
    • +
    • +

      “esc”: 退出应用

      +
    -

    设置多个数码相框

    -

    下面的设置需要比较多的专业知识,以后我们会在手机应用中添加相应的控制和配置功能。

    -

    如果您已经有了树莓派再跑Lomorage服务程序(主树莓派),并在上面连接了移动硬盘,您很可能会把它放在储藏室并使用有线连接,而您可能是希望数码相框放在卧室或者客厅。

    -

    您可以使用低成本的树莓派Zero w来安装数码相框程序,并通过WiFi远程访问您的照片和视频。树莓派Zero w跑数码相框应用甚至能流畅的播放视频。

    -

    1. 安装Lomo-frame

    -

    您可以按照本页面最前面的方式来安装。

    -

    2. 设置WiFi连接

    - -

    键盘连接到Raspberry Pi zero W并登陆, 如果您是Lomorage的树莓派镜像,可以使用命令wifi_switch client [wifi-ssid] [wifi-password], 用您自己的配置替换”[wifi-ssid]“和”[wifi-password]“。如果使用其他系统,您可以参考网上其他资料来设置WiFi连接。

    - +

    键盘连接到Raspberry Pi zero W并登陆, 如果您是Lomorage的树莓派镜像,可以使用命令wifi_switch client [wifi-ssid] [wifi-password], 用您自己的配置替换"[wifi-ssid]“和”[wifi-password]"。如果使用其他系统,您可以参考网上其他资料来设置WiFi连接。

    3. 检查主树莓派的IP地址

    - -

    您可以在手机APP里面查看,点击“设置”,找到“本地服务”,其中的”服务器地址“字段里面的就是IP地址。

    - +

    您可以在手机APP里面查看,点击“设置”,找到“本地服务”,其中的"服务器地址“字段里面的就是IP地址。

    4. 找到主树莓派的加载目录

    - -

    您可以把主树莓派的”media”目录通过SAMBA协议加载到电脑上,用户名是”pi”,密码是”raspberry”,你可以在”media”目录下找到加载的存储媒体文件的目录名。

    - +

    您可以把主树莓派的"media"目录通过SAMBA协议加载到电脑上,用户名是"pi",密码是"raspberry",你可以在"media"目录下找到加载的存储媒体文件的目录名。

    5. 远程挂载媒体目录到树莓派zero w

    - -

    比如加载到主树莓派的目录路径为”/media/WD_90C27F73C27F5C82”,主树莓派的IP地址为192.168.1.155, 您可以登陆树莓派zero w,并远程挂载那个目录到本地:

    - +

    比如加载到主树莓派的目录路径为"/media/WD_90C27F73C27F5C82",主树莓派的IP地址为192.168.1.155, 您可以登陆树莓派zero w,并远程挂载那个目录到本地:

    sudo mkdir /media/WD_90C27F73C27F5C82
     echo "//192.168.1.124/media/WD_90C27F73C27F5C82  /media/WD_90C27F73C27F5C82  cifs  user=pi,pass=raspberry,uid=1000,gid=1000" | sudo tee -a /etc/fstab
     sudo mount -a
    -
    - -

    6. 重启

    - +

    6. 重启

    sudo reboot
    -
    - -

    重启之后,您应该可以看到开始扫描媒体文件,并生成播放列表了。

    +

    重启之后,您应该可以看到开始扫描媒体文件,并生成播放列表了。

    @@ -408,7 +341,6 @@

    6. 重启

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-android/index.html b/zh/installation-android/index.html index 55971265..90106b87 100644 --- a/zh/installation-android/index.html +++ b/zh/installation-android/index.html @@ -27,7 +27,7 @@ - + @@ -192,16 +192,10 @@

    - - -

    安装Lomorage安卓手机App

    - +

    安装Lomorage安卓手机App

    中文版发布了,请下载试用

    -

    您可以在安卓手机上安卓Lomorage App,目前的Lomorage App是开发预览版,最低支持的安卓系统版本是7.1,正式版会很快发布,欢迎关注Lomorage公众号。

    -

    欢迎提供反馈,我们会不断更新我们的软件, 点击下面的图标下载最新中文版

    -

    Download

    -

    Lomorage 是一款个人私有照片和视频备份工具,它方便的把您的照片和视频备份到Windows PC机或者Apple MAC机,也可以备份到Lomorage 定制的树莓派上。 您需要在Windows 或者 Mac 或者 树莓派上安装 Lomorage 服务程序。

    -

    安装完Lomorage客户端,可能需要花一两分钟时间导入您的视频和照片。然后在Manage Account界面可以创建账号,登录,下拉备份您的照片和视频,还可以和您的家人进行分享。

    -

    App会导入您的照片和视频,并且提示您需要登录 @@ -222,9 +213,7 @@

    安装Lomorage安卓手机App

    - -

    - +

    点击右上角的菜单,进入账号管理界面.

    在那里,App会自动发现您的Lomorage服务器程序

    @@ -235,19 +224,16 @@

    安装Lomorage安卓手机App

    -
    下来开始备份您的照片和视频

    可以选择过滤选项来查看您要的照片和视频

    -

    -
    在 备份 栏目,你可以长按选中然后分享给您的家人

    @@ -255,30 +241,23 @@

    安装Lomorage安卓手机App

    -
    通过 Members 选项来查看所有的用户

    -

    -
    通过 Inbox 来查看您的家人通过Lomorage 系统分享给您的照片和视频

    -
    您可以在设置页配置您的远程访问和冗余备份,并且发送反馈

    -

    -

    -
    @@ -302,7 +281,6 @@

    安装Lomorage安卓手机App

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-armbian/index.html b/zh/installation-armbian/index.html new file mode 100644 index 00000000..05b6855f --- /dev/null +++ b/zh/installation-armbian/index.html @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + + + + +
    + +
    +
    +
    +
    +

    +
    +
    +
    +
    + + +
    + + +
    + +
    + +
    + +
    +

    在Armbian上安装Lomorage服务程序

    +

    当前支持Armbian Focal。如果你有其他的需求请联系我们。

    +
    sudo apt install -y ca-certificates python-certifi python3-certifi
    +sudo update-ca-certificates --fresh
    +wget -qO - https://raw.githubusercontent.com/lomoware/lomoware.github.io/master/debian/gpg.key | sudo apt-key add -
    +echo "deb https://lomoware.github.io/debian/focal focal main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    +sudo apt update
    +sudo apt install lomo-base lomo-vips lomo-backend lomo-web -y
    +
    +
    + +
    + +
    + + +
    + + + +
    + + +
    +
    + + +
    +

    关于我们

    + + 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 + + + +
    + + + +
    + + + +
    + + + + +
    + +
    + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/zh/installation-ios/index.html b/zh/installation-ios/index.html index a996faa7..9b07057d 100644 --- a/zh/installation-ios/index.html +++ b/zh/installation-ios/index.html @@ -27,7 +27,7 @@ - + @@ -192,12 +192,8 @@

    - - -

    安装Lomorage iOS客户端

    - +

    安装Lomorage iOS客户端

    您可以在iPad或iPhone上安装Lomorage客户端应用,最低支持的iOS系统版本是10.3。

    -

    Download on the App Store

    -

    安装完Lomorage客户端,启动就可以自动发现同一网络中运行的Lomorage服务,如果您有多台Lomorage服务运行,那些会列举出来供选择。如果未能自动发现服务,您可以选择扫码的方式登陆(Lomorage服务运行在Windows或者MacOS下,打开LomoAgent设置),或者手动输入IP地址和端口。

    -

    然后您可以创建用户,选择存储目录,登陆后,会花上几分钟来导入您相册的照片和视频,然后您可以选择需要上传的文件进行备份,如果已经备份成功,图片或视频下会显示一个绿色的小勾。在远程的选项卡里,显示的是远程备份过但本地没有的文件,所以如果您删除掉本地成功备份的文件,它们会显示在远程备份里面。

    -

    @@ -220,7 +213,6 @@

    安装Lomorage iOS客户端

    -
    @@ -243,7 +235,6 @@

    安装Lomorage iOS客户端

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-osx/index.html b/zh/installation-osx/index.html index 707c3dbb..27f06d77 100644 --- a/zh/installation-osx/index.html +++ b/zh/installation-osx/index.html @@ -27,7 +27,7 @@ - + @@ -192,22 +192,15 @@

    - - -

    在MacOS上安装Lomorage服务程序

    - +

    在MacOS上安装Lomorage服务程序

    1. 点击下面的链接安装Lomorage服务程序。

    -

    -macOS +macOS

    -

    如果上面链接无法访问,也可以从百度网盘下载: 链接: https://pan.baidu.com/s/1SkCo-zzvgAC_GzugVaZVbw 提取码: wj35

    - -

    2. 双击”LomoAgent.dmg”开始安装,参考下面步骤完成安装。

    - +

    2. 双击"LomoAgent.dmg"开始安装,参考下面步骤完成安装。

    @@ -215,11 +208,8 @@

    在MacOS上安装Lomorage服务

    -

    3. 运行应用程序LomoAgent,如果有防火墙提示,请允许LomoAgent访问网络。

    -

    4. 程序启动后,您需要设置数据目录才能正常使用,数据目录用来存储您的手机上传的照片视频。除此之前您也可以再多选择一个冗余备份目录,系统会每天定时进行冗余备份。

    -

    @@ -248,7 +238,6 @@

    在MacOS上安装Lomorage服务

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-pi/index.html b/zh/installation-pi/index.html index 74be40da..e41222b4 100644 --- a/zh/installation-pi/index.html +++ b/zh/installation-pi/index.html @@ -27,7 +27,7 @@ - + @@ -192,132 +192,101 @@

    - - -

    目录

    - +

    目录

    +
  • 1. 添加lomoware源
  • +
  • 2. 安装Lomorage
  • +
  • 3. 按需修改加载目录和运行用户
  • +
  • 4. 运行
  • + + + + -

    在树莓派上安装Lomorage服务程序

    -

    要在树莓派上运行,您需要先购买一个树莓派,Lomorage可以运行在以下型号的机器上:

    - -

    如果您还没有树莓派,我们建议购买新款的树莓派,会有更好的性能。下面是您需要的最小配置:

    -
    • 树莓派主板
    • 配套电源
    • 16GB MicroSD卡
    -

    有3种方式来在Raspberry Pi上安装Lomorage服务程序, 一种是安装预编译好的系统镜像,该镜像已经安装了所有Lomorage服务程序依赖的库和第三方工具,简单快捷,推荐使用;如果您已经有树莓派在运行其他服务,您也可以使用Docker镜像来安装,或者使用从APT源安装。

    -

    安装系统镜像

    -

    预装的系统镜像包括所有的包:

    -
      -
    • lomo-backend: Lomorage服务程序

    • - -
    • lomo-web: Lomorage网页程序

    • - -
    • lomo-base: 系统工具,包括网络配置,开关控制, 磁盘加载, 蓝牙控制台

    • - -
    • lomo-frame: 数码相框程序

    • +
    • +

      lomo-backend: Lomorage服务程序

      +
    • +
    • +

      lomo-web: Lomorage网页程序

      +
    • +
    • +

      lomo-base: 系统工具,包括网络配置,开关控制, 磁盘加载, 蓝牙控制台

      +
    • +
    • +

      lomo-frame: 数码相框程序

      +
    -

    点击下面的链接下载系统镜像。

    -

    -Raspberry Pi +Raspberry Pi

    -

    下载了系统镜像后, 你可以使用balenaEtcher将其安装到MicroSD卡, balenaEtcher提供Windows和macOS版本。

    -

    将MicroSD卡插入到台式电脑或笔记本的读卡器后,选择下载的系统镜像,选择MicroSD卡,点击“Flash“按钮,几分钟后就会安装完成。

    -

    -

    安装完后,将MicroSD卡插入到树莓派,接上USB移动硬盘,插入网线,接通电源,等待几分钟系统启动。

    - -

    如果您连接了HDMI,系统启动完成后,会提示没有找到资源,您可以使用Lomorage手机应用程序上传照片,然后按”r”键重新扫描。如果您想退出到控制台做一些系统配置,可以按”ESC”退出,然后按”Ctrl+Alt+F2”切换到控制台,配置完成后,可以使用命令sudo service supervisor restart来启动Lomorage相框程序。

    - -

    默认的用户名是”pi”,密码是”raspberry”

    - -

    为了更好的性能,建议使用有线网络连接,但如果您想使用WiFi, 您可以登陆树莓派,并使用下面的命令来启用无线连接wifi_switch.sh client wifi-ssid wifi-password,将 “wifi-ssid”和”wifi-password”替换为您的无线网络名和密码。如果您的无线网络名称中有中文字符或者空格,就需要用引号,比如wifi_switch.sh client "Lomorage的 无线" mypassword

    - +

    如果您连接了HDMI,系统启动完成后,会提示没有找到资源,您可以使用Lomorage手机应用程序上传照片,然后按"r"键重新扫描。如果您想退出到控制台做一些系统配置,可以按"ESC"退出,然后按"Ctrl+Alt+F2"切换到控制台,配置完成后,可以使用命令sudo service supervisor restart来启动Lomorage相框程序。

    +

    默认的用户名是"pi",密码是"raspberry"

    +

    为了更好的性能,建议使用有线网络连接,但如果您想使用WiFi, 您可以登陆树莓派,并使用下面的命令来启用无线连接wifi_switch.sh client wifi-ssid wifi-password,将 “wifi-ssid"和"wifi-password"替换为您的无线网络名和密码。如果您的无线网络名称中有中文字符或者空格,就需要用引号,比如wifi_switch.sh client "Lomorage的 无线" mypassword

    Docker安装

    -

    在已有的系统上使用Docker镜像安装非常方便。这种方式不适用于树莓派0和树莓派1。

    -

    这种情况下MDNS不工作,手机应用不能自动发现服务,您需要手动输入服务地址和端口号。

    -

    Docker镜像包括:

    -
      -
    • lomo-backend: Lomorage服务程序

    • - -
    • lomo-web: Lomorage网页程序

    • +
    • +

      lomo-backend: Lomorage服务程序

      +
    • +
    • +

      lomo-web: Lomorage网页程序

      +
    -

    1. 树莓派上安装Docker

    - -

    注意: 如果您使用OMSC,需要修改“/etc/os-release”文件,将其中的”id=osmc”替换为”id=raspbain”

    - +

    注意: 如果您使用OMSC,需要修改“/etc/os-release”文件,将其中的"id=osmc"替换为"id=raspbain”

    sudo apt install -y ca-certificates
     sudo update-ca-certificates --fresh
     curl -fSLs https://get.docker.com | sudo sh
     sudo usermod -aG docker $USER
     sudo systemctl start docker
    -
    - -

    2. 获取Docker镜像

    - +

    2. 获取Docker镜像

    从docker hub拉取镜像文件。

    -
    sudo docker pull lomorage/raspberrypi-lomorage:latest
    -
    - -

    3. 运行

    - +

    3. 运行

    下载run.sh

    -

    您可以指定媒体存储目录和Lomorage运行目录,不指定会使用默认值,您必须指定host参数。

    -

    媒体存储目录下必须存在子目录,比如指定-m /mnt/hdd/,那hdd目录下必须存在子目录比如-m /mnt/hdd/lomorage

    -
    run.sh [-m {media-dir} -b {lomo-dir} -d -p {lomod-port} -P {lomow-port}] -h host-ip -i image-name
     
     Command line options:
    @@ -332,70 +301,47 @@ 

    3. 运行

    Examples: # assuming your hard drive mounted in /media, like /media/usb0, /media/usb1. ./run.sh -m /media -b /home/pi/lomorage -h 192.168.1.232 -
    - -

    您可以将运行命令添加到”/etc/rc.local”中,在”exit 0”之前,这样系统开机的时候就可以自动启动了。

    - +

    您可以将运行命令添加到"/etc/rc.local"中,在"exit 0"之前,这样系统开机的时候就可以自动启动了。

    APT安装

    -

    如果您运行官方的系统,APT是最快捷的安装方式。

    -

    1. 添加lomoware源

    -
    sudo apt install -y ca-certificates python-certifi python3-certifi
     sudo update-ca-certificates --fresh
     wget -qO - https://raw.githubusercontent.com/lomoware/lomoware.github.io/master/debian/gpg.key | sudo apt-key add -
    -
    - -

    如果您使用 jessie:

    - +

    如果您使用 jessie:

    echo "deb https://lomoware.github.io/debian/jessie jessie main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    -
    - -

    如果您使用buster:

    - +

    如果您使用buster:

    echo "deb https://lomoware.github.io/debian/buster buster main" | sudo tee /etc/apt/sources.list.d/lomoware.list
    -
    - -

    然后运行:

    - +

    然后运行:

    sudo apt update
    -
    - -

    2. 安装Lomorage

    - +

    2. 安装Lomorage

    最小安装需要lomo-vips和lomo-backend,您可以根据自己需要进行选择。

    -
      -
    • lomo-backend: 必须, Lomorage服务程序

    • - -
    • lomo-web: 可选, Lomorage网页程序

    • - -
    • lomo-base: 可选, 系统工具,包括网络配置,开关控制, 磁盘加载, 蓝牙控制台

    • - -
    • lomo-vips: 必须, lomo-backend使用的图像处理库

    • - -
    • lomo-frame: 可选, 数码相框程序

    • +
    • +

      lomo-backend: 必须, Lomorage服务程序

      +
    • +
    • +

      lomo-web: 可选, Lomorage网页程序

      +
    • +
    • +

      lomo-base: 可选, 系统工具,包括网络配置,开关控制, 磁盘加载, 蓝牙控制台

      +
    • +
    • +

      lomo-vips: 必须, lomo-backend使用的图像处理库

      +
    • +
    • +

      lomo-frame: 可选, 数码相框程序

      +
    -
    sudo apt install lomo-base lomo-vips lomo-backend lomo-web lomo-frame -y
    -
    - -

    3. 按需修改加载目录和运行用户

    - -

    如果您不是使用步骤4的usbmount来自动加载磁盘(没有加载到”/media”路径下的子目录),您需要添加Lomorage服务程序运行参数来指定加载目录。

    - -

    比如如果您使用PCManFM,那么加载的路径会是”/media/pi”。 要指定加载目录”/media/pi”, 修改”/lib/systemd/system/lomod.service”的ExecStart字段,加上 “–mount-dir”参数:

    - +

    3. 按需修改加载目录和运行用户

    +

    如果您不是使用步骤4的usbmount来自动加载磁盘(没有加载到"/media"路径下的子目录),您需要添加Lomorage服务程序运行参数来指定加载目录。

    +

    比如如果您使用PCManFM,那么加载的路径会是"/media/pi"。 要指定加载目录"/media/pi", 修改"/lib/systemd/system/lomod.service"的ExecStart字段,加上 “–mount-dir"参数:

    ExecStart=/opt/lomorage/bin/lomod -b /opt/lomorage/var --mount-dir /media/pi  --max-upload 1 --max-fetch-preview 3
    -
    - -

    如果您的用户名不是”pi”,那么需要修改”lib/systemd/system/lomod.service”文件中的用户名pi(“User=pi”)改成您的用户名。

    - +

    如果您的用户名不是"pi”,那么需要修改"lib/systemd/system/lomod.service"文件中的用户名pi(“User=pi”)改成您的用户名。

    +

    请确保您的用户有上面设置的"mount-dir"的读写权限

    4. 运行

    -

    重启Lomorage服务程序:

    -
    # 重启lomo-backend
     sudo systemctl restart lomod
     
    @@ -405,7 +351,6 @@ 

    4. 运行

    # 重启lomo-frame sudo service supervisor restart
    -
    @@ -428,7 +373,6 @@

    4. 运行

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-web/index.html b/zh/installation-web/index.html index 12eb291b..7d796ea0 100644 --- a/zh/installation-web/index.html +++ b/zh/installation-web/index.html @@ -27,7 +27,7 @@ - + @@ -192,22 +192,14 @@

    - - -

    安装Lomorage网页客户端

    - +

    安装Lomorage网页客户端

    您可以使用Lomorage网页客户端来上传电脑里面的照片和视频,并且可以使用图库来浏览已经备份的照片和视频。

    -

    如果您使用MacOS版本的Lomorage服务程序,您可以点击LomoAgent应用的“导入”菜单打开网页客户端。

    -

    如果您使用树莓派版本的Lomorage服务程序,您可以使用下面的命令来安装Lomorage网页客户端到树莓派上:

    -
    sudo apt update
     sudo apt install lomo-web
    -
    - -

    然后您可以在电脑的浏览器上访问”http://raspberrypi-lomorage.local:8001“,打开Lomorage网页客户端。

    - +

    然后您可以在电脑的浏览器上访问"http://raspberrypi-lomorage.local:8001",打开Lomorage网页客户端。

    +

    登陆用户名和密码是您用手机Lomorage APP生成的用户名和密码

    @@ -215,7 +207,6 @@

    安装Lomorage网页客户端

    -
    @@ -238,7 +229,6 @@

    安装Lomorage网页客户端

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation-win/index.html b/zh/installation-win/index.html index c6608d36..2b3706a0 100644 --- a/zh/installation-win/index.html +++ b/zh/installation-win/index.html @@ -27,7 +27,7 @@ - + @@ -192,33 +192,23 @@

    - - -

    在Windows上安装Lomorage服务程序

    - +

    在Windows上安装Lomorage服务程序

    1. 点击下面的链接安装Lomorage服务程序。

    -

    -Windows +点击下载 ==> +Windows

    - -

    如果上面链接无法访问,也可以从百度网盘下载:

    - -

    链接: https://pan.baidu.com/s/193H64Xw5lMGA90O1eDrD_A

    - -

    提取码: wsd4

    - -

    2. 双击”lomoagent.msi”开始安装。如果有Windows Defender提示未知应用,请参考如下步骤允许安装程序运行。

    - +

    如果上面链接无法访问,也可以从百度网盘下载(最近更新:2021/01/20):

    +

    链接: https://pan.baidu.com/s/11_2NG4nZymVCizWb8GPmww

    +

    提取码: r6nd

    +

    2. 双击"lomoagent.msi"开始安装。如果有Windows Defender提示未知应用,请参考如下步骤允许安装程序运行。

    - -

    3. 勾选”最终用户许可协议”后,一路完成安装步骤。

    - +

    3. 勾选"最终用户许可协议"后,一路完成安装步骤。

    @@ -226,23 +216,18 @@

    在Windows上安装Lomorage服

    -

    4. 双击桌面的LomoAgent图标,启动应用程序,如果有防火墙提示,请允许LomoAgent访问私有网络。

    -

    -

    5. 程序启动后,您需要设置数据目录才能正常使用,数据目录用来存储您的手机上传的照片视频。

    -

    - +

    -
    @@ -265,7 +250,6 @@

    在Windows上安装Lomorage服

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/installation/index.html b/zh/installation/index.html index 5eda4429..cef6a60f 100644 --- a/zh/installation/index.html +++ b/zh/installation/index.html @@ -27,7 +27,7 @@ - + @@ -192,51 +192,37 @@

    安装说明

    - - -

    安装说明

    - +

    安装说明

    1. 简介

    -

    要使用Lomorage,您需要在本地网络运行Lomorage服务程序,您可以选择在Windows,macOS或者树莓派上运行。然后您需要去应用程序商店下载手机客户端应用。在运行了Lomorage服务程序之后,手机客户端会自动发现服务,无需配置,然后您就可以开始备份照片和视频了。

    -

    2. 安装Lomorage服务程序

    -

    您可以根据自己的喜好和需求来选择不同的平台安装Lomorage服务程序。Windows或macOS上运行Lomorage服务程序可以提供比树莓派上更好的性能,上传和下载的速度会更快,但没树莓派节约能源,7x24小时运行,一年下来电费不会超过30元。

    -

    Windows   macOS   -Raspberry Pi +Raspbian   Docker +  +Armbian

    -

    3. 安装Lomorage客户端

    -

    在运行了Lomorage服务程序后,您可以下载手机客户端,当前支持iPhone或者iPad。

    -

    您也可以使用Web版本来上传电脑中已有的照片和视频,也可以在电脑上浏览已经备份的照片和视频。

    -

    Lomorage 安卓客户端 Lomorage iOS客户端   Lomorage web客户端

    -

    4. 外网访问 (可选)

    -

    Lomorage可以运行在您的私有网络中,无需互联网连接,如果您需要通过外网访问,您需要启用外网访问,当前Lomorage支持第三方隧道服务方式进行外网连接,点击这里查看具体配置。

    -

    5. 设置数码相框 (可选)

    -

    您可以将树莓派连接显示器,并作为数码相框,您也可以使用树莓派zero w来搭建多个数码相框,并远程通过WiFi来访问。点击这里查看数码相框设置。

    - -










    -

    Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY

    +










    +
    Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY
    @@ -260,7 +246,6 @@

    5. 设置数码相框 (可选)

    关于我们

    我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - diff --git a/zh/sitemap.xml b/zh/sitemap.xml index ce83bb4e..22c9fe2e 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -1,469 +1,375 @@ - + - https://lomorage.com/zh/blog/2020/07/19/mypains/ - 2020-07-19T21:04:40+00:00 - - - - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ - 2020-05-17T13:43:40+00:00 + http://lomorage.com/zh/blog/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/blog/2020/03/29/covid19/ - 2020-03-29T22:43:40+00:00 + http://lomorage.com/zh/categories/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ - 2019-12-24T13:43:40+00:00 - - - - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ - 2019-12-24T13:43:40+00:00 + http://lomorage.com/zh/tags/docker/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/external-access/ + http://lomorage.com/zh/tags/lomorage/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/install-frame/ + http://lomorage.com/zh/tags/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/installation-android/ + http://lomorage.com/zh/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/installation-ios/ + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/installation-osx/ - - + http://lomorage.com/zh/tags/%E5%AE%B9%E5%99%A8/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/installation-pi/ - - + http://lomorage.com/zh/categories/%E5%AE%B9%E5%99%A8/ + 2020-11-16T22:43:40+00:00 - https://lomorage.com/zh/installation-web/ + http://lomorage.com/zh/categories/blog/ + 2020-07-19T21:04:40+00:00 - https://lomorage.com/zh/installation-win/ - - + http://lomorage.com/zh/tags/icloud/ + 2020-07-19T21:04:40+00:00 - https://lomorage.com/zh/categories/blog/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ 2020-07-19T21:04:40+00:00 - 0 + + + + http://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ + 2020-07-19T21:04:40+00:00 + + + + http://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ + 2020-07-19T21:04:40+00:00 + + + + http://lomorage.com/zh/tags/mycloud/ + 2020-05-17T13:43:40+00:00 - https://lomorage.com/zh/blog/ - 2020-07-19T21:04:40+00:00 - 0 + http://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ + 2020-05-17T13:43:40+00:00 - https://lomorage.com/zh/categories/ - 2020-07-19T21:04:40+00:00 - 0 + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + 2020-05-17T13:43:40+00:00 - - https://lomorage.com/zh/categories/faq/ - 2019-12-24T13:43:40+00:00 - 0 + http://lomorage.com/zh/blog/2020/03/29/covid19/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/zh/tags/icloud/ - 2020-07-19T21:04:40+00:00 - 0 + http://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/zh/ - 2020-07-19T21:04:40+00:00 - 0 - - - + http://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/zh/tags/mycloud/ - 2020-05-17T13:43:40+00:00 - 0 - - + http://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ + 2020-03-29T22:43:40+00:00 - https://lomorage.com/zh/tags/ - 2020-07-19T21:04:40+00:00 - 0 + http://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ + 2020-03-29T22:43:40+00:00 + + + + http://lomorage.com/zh/categories/faq/ + 2019-12-24T13:43:40+00:00 - - https://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ + http://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/zh/tags/u%E7%9B%98/ + http://lomorage.com/zh/tags/u%E7%9B%98/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/zh/tags/windows/ + http://lomorage.com/zh/tags/windows/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/zh/compare/ + http://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ + 2019-12-24T13:43:40+00:00 + + + + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + 2019-12-24T13:43:40+00:00 - https://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + http://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ 2019-12-24T13:43:40+00:00 - 0 - https://lomorage.com/zh/installation/ + http://lomorage.com/zh/buy/ - https://lomorage.com/zh/faq/ + http://lomorage.com/zh/compare/ - https://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ - 2020-03-29T22:43:40+00:00 - 0 - - - - https://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ - 2020-03-29T22:43:40+00:00 - 0 - - - - https://lomorage.com/zh/features/ + http://lomorage.com/zh/faq/ - https://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ - 2020-07-19T21:04:40+00:00 - 0 - - - - https://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ - 2020-03-29T22:43:40+00:00 - 0 - - - - https://lomorage.com/zh/categories/%E7%9C%8B%E6%9D%BF/ - 2020-03-29T22:43:40+00:00 - 0 - - - - https://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ - 2019-12-24T13:43:40+00:00 - 0 - - - - https://lomorage.com/zh/contact/ + http://lomorage.com/zh/contact/ - https://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ - 2020-05-17T13:43:40+00:00 - 0 + http://lomorage.com/zh/survey/ - - https://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ - 2020-07-19T21:04:40+00:00 - 0 - - - \ No newline at end of file + diff --git a/zh/survey/index.html b/zh/survey/index.html new file mode 100644 index 00000000..924da145 --- /dev/null +++ b/zh/survey/index.html @@ -0,0 +1,249 @@ + + + + + + + + + + 调查问卷 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + + +
    +
    +

    点击这里查看结果。

    +
    + + +
    +
    + + +comments powered by Disqus +
    + +
    + + + +
    +
    +
    + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/zh/tags/docker/index.html b/zh/tags/docker/index.html new file mode 100644 index 00000000..24d2c138 --- /dev/null +++ b/zh/tags/docker/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Docker | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    在Windows 10 上安装Lomorage容器镜像

    +
    +

    + + + + in 容器 + + + +

    +

    + November 16, 2020 +

    +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +

    继续阅读 +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/zh/tags/docker/index.xml b/zh/tags/docker/index.xml new file mode 100644 index 00000000..6e780da7 --- /dev/null +++ b/zh/tags/docker/index.xml @@ -0,0 +1,20 @@ + + + + Docker on Lomorage + http://lomorage.com/zh/tags/docker/ + Recent content in Docker on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + + + + diff --git a/zh/tags/docker/page/1/index.html b/zh/tags/docker/page/1/index.html new file mode 100644 index 00000000..68fbad11 --- /dev/null +++ b/zh/tags/docker/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/zh/tags/docker/ \ No newline at end of file diff --git a/zh/tags/icloud/index.html b/zh/tags/icloud/index.html index 15c0a59f..ca9fd3ad 100644 --- a/zh/tags/icloud/index.html +++ b/zh/tags/icloud/index.html @@ -1,473 +1,295 @@ + + + + + + + + iCloud | Lomorage + + - - - - - - - - - - Icloud - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Icloud

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -

    - - - - in BLOG - - - -

    -

    - July 19, 2020 -

    -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/tags/icloud/index.xml b/zh/tags/icloud/index.xml index 19499d06..fe25a614 100644 --- a/zh/tags/icloud/index.xml +++ b/zh/tags/icloud/index.xml @@ -1,25 +1,21 @@ - + - Icloud on Lomorage - https://lomorage.com/zh/tags/icloud/ - Recent content in Icloud on Lomorage + iCloud on Lomorage + http://lomorage.com/zh/tags/icloud/ + Recent content in iCloud on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Sun, 19 Jul 2020 21:04:40 +0000 Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> - \ No newline at end of file + diff --git a/zh/tags/icloud/page/1/index.html b/zh/tags/icloud/page/1/index.html index 2dc26b35..676669c0 100644 --- a/zh/tags/icloud/page/1/index.html +++ b/zh/tags/icloud/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/tags/icloud/ \ No newline at end of file +http://lomorage.com/zh/tags/icloud/ \ No newline at end of file diff --git a/zh/tags/index.html b/zh/tags/index.html index 0c5ab006..a482d9cf 100644 --- a/zh/tags/index.html +++ b/zh/tags/index.html @@ -1,408 +1,21 @@ - - + + + + + + + + Tags | Lomorage + + - - - - - - - - - - Tags - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Tags

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - + - - + + + + - - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - +

    Tags

    + + + + - - diff --git a/zh/tags/index.xml b/zh/tags/index.xml index 572473fc..d5cfdfe0 100644 --- a/zh/tags/index.xml +++ b/zh/tags/index.xml @@ -1,150 +1,173 @@ - + Tags on Lomorage - https://lomorage.com/zh/tags/ + http://lomorage.com/zh/tags/ Recent content in Tags on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Mon, 16 Nov 2020 22:43:40 +0000 - Icloud - https://lomorage.com/zh/tags/icloud/ - Sun, 19 Jul 2020 21:04:40 +0000 + Docker + http://lomorage.com/zh/tags/docker/ + Mon, 16 Nov 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/icloud/ + http://lomorage.com/zh/tags/docker/ - Mycloud - https://lomorage.com/zh/tags/mycloud/ - Sun, 17 May 2020 13:43:40 +0000 + Lomorage + http://lomorage.com/zh/tags/lomorage/ + Mon, 16 Nov 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/mycloud/ + http://lomorage.com/zh/tags/lomorage/ - Usb分线器 - https://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ - Tue, 24 Dec 2019 13:43:40 +0000 + 容器 + http://lomorage.com/zh/tags/%E5%AE%B9%E5%99%A8/ + Mon, 16 Nov 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ + http://lomorage.com/zh/tags/%E5%AE%B9%E5%99%A8/ - U盘 - https://lomorage.com/zh/tags/u%E7%9B%98/ - Tue, 24 Dec 2019 13:43:40 +0000 + iCloud + http://lomorage.com/zh/tags/icloud/ + Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/tags/u%E7%9B%98/ + http://lomorage.com/zh/tags/icloud/ - Windows - https://lomorage.com/zh/tags/windows/ - Tue, 24 Dec 2019 13:43:40 +0000 + 痛点 + http://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ + Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/tags/windows/ + http://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ - 冗余备份 - https://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ - Tue, 24 Dec 2019 13:43:40 +0000 + 重复照片 + http://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ + Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + http://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ - 恢复 - https://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ - Tue, 24 Dec 2019 13:43:40 +0000 + MyCloud + http://lomorage.com/zh/tags/mycloud/ + Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ + http://lomorage.com/zh/tags/mycloud/ - 手机传电脑 - https://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ - Tue, 24 Dec 2019 13:43:40 +0000 + 迁移 + http://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ + Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ + http://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ 新冠病毒 - https://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ + http://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ + http://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ 树莓派 - https://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ + http://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ + http://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ - 痛点 - https://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ - Sun, 19 Jul 2020 21:04:40 +0000 + 看板 + http://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ + Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ + http://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ - 看板 - https://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ - Sun, 29 Mar 2020 22:43:40 +0000 + USB分线器 + http://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ + Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ + http://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ - 硬盘 - https://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ + U盘 + http://lomorage.com/zh/tags/u%E7%9B%98/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ + http://lomorage.com/zh/tags/u%E7%9B%98/ - 迁移 - https://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ - Sun, 17 May 2020 13:43:40 +0000 + Windows + http://lomorage.com/zh/tags/windows/ + Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ + http://lomorage.com/zh/tags/windows/ - 重复照片 - https://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ - Sun, 19 Jul 2020 21:04:40 +0000 + 冗余备份 + http://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + Tue, 24 Dec 2019 13:43:40 +0000 + + http://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + + + + + 恢复 + http://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ + Tue, 24 Dec 2019 13:43:40 +0000 + + http://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ + + + + + 手机传电脑 + http://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ + Tue, 24 Dec 2019 13:43:40 +0000 + + http://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ + + + + + 硬盘 + http://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ + Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ + http://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ - \ No newline at end of file + diff --git a/zh/tags/lomorage/index.html b/zh/tags/lomorage/index.html new file mode 100644 index 00000000..70a7b974 --- /dev/null +++ b/zh/tags/lomorage/index.html @@ -0,0 +1,294 @@ + + + + + + + + + + Lomorage | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    在Windows 10 上安装Lomorage容器镜像

    +
    +

    + + + + in 容器 + + + +

    +

    + November 16, 2020 +

    +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +

    继续阅读 +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git a/zh/tags/lomorage/index.xml b/zh/tags/lomorage/index.xml new file mode 100644 index 00000000..1f93389b --- /dev/null +++ b/zh/tags/lomorage/index.xml @@ -0,0 +1,20 @@ + + + + Lomorage + http://lomorage.com/zh/tags/lomorage/ + Recent content on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + + + + diff --git a/zh/tags/lomorage/page/1/index.html b/zh/tags/lomorage/page/1/index.html new file mode 100644 index 00000000..5d772911 --- /dev/null +++ b/zh/tags/lomorage/page/1/index.html @@ -0,0 +1 @@ +http://lomorage.com/zh/tags/lomorage/ \ No newline at end of file diff --git a/zh/tags/mycloud/index.html b/zh/tags/mycloud/index.html index 07ee3b99..9068da4a 100644 --- a/zh/tags/mycloud/index.html +++ b/zh/tags/mycloud/index.html @@ -1,474 +1,296 @@ + + + + + + + + MyCloud | Lomorage + + - - - - - - - - - - Mycloud - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    Mycloud

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    迁移MyCloud的数据到Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    迁移MyCloud的数据到Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +

    继续阅读 +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/tags/mycloud/index.xml b/zh/tags/mycloud/index.xml index f4f43f62..030b0a88 100644 --- a/zh/tags/mycloud/index.xml +++ b/zh/tags/mycloud/index.xml @@ -1,26 +1,22 @@ - + - Mycloud on Lomorage - https://lomorage.com/zh/tags/mycloud/ - Recent content in Mycloud on Lomorage + MyCloud on Lomorage + http://lomorage.com/zh/tags/mycloud/ + Recent content in MyCloud on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - - + Sun, 17 May 2020 13:43:40 +0000 迁移MyCloud的数据到Lomorage - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ <p><strong>曾经</strong>买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。</p> - \ No newline at end of file + diff --git a/zh/tags/mycloud/page/1/index.html b/zh/tags/mycloud/page/1/index.html index 418d5bbe..69eca7bc 100644 --- a/zh/tags/mycloud/page/1/index.html +++ b/zh/tags/mycloud/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/tags/mycloud/ \ No newline at end of file +http://lomorage.com/zh/tags/mycloud/ \ No newline at end of file diff --git "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.html" "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.html" index 29b152ce..8af8f25b 100644 --- "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.html" +++ "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.html" @@ -1,472 +1,294 @@ + + + + + + + + USB分线器 | Lomorage + + - - - - - - - - - - Usb分线器 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Usb分线器

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.xml" "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.xml" index 0e7bffc6..dba447a2 100644 --- "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.xml" +++ "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/index.xml" @@ -1,24 +1,20 @@ - + - Usb分线器 on Lomorage - https://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ - Recent content in Usb分线器 on Lomorage + USB分线器 on Lomorage + http://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ + Recent content in USB分线器 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/page/1/index.html" "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/page/1/index.html" index d9b0d09c..178d840c 100644 --- "a/zh/tags/usb\345\210\206\347\272\277\345\231\250/page/1/index.html" +++ "b/zh/tags/usb\345\210\206\347\272\277\345\231\250/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ \ No newline at end of file +http://lomorage.com/zh/tags/usb%E5%88%86%E7%BA%BF%E5%99%A8/ \ No newline at end of file diff --git "a/zh/tags/u\347\233\230/index.html" "b/zh/tags/u\347\233\230/index.html" index c38801d8..ff674eec 100644 --- "a/zh/tags/u\347\233\230/index.html" +++ "b/zh/tags/u\347\233\230/index.html" @@ -1,472 +1,294 @@ + + + + + + + + U盘 | Lomorage + + - - - - - - - - - - U盘 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    U盘

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/u\347\233\230/index.xml" "b/zh/tags/u\347\233\230/index.xml" index 8339fc42..b15464da 100644 --- "a/zh/tags/u\347\233\230/index.xml" +++ "b/zh/tags/u\347\233\230/index.xml" @@ -1,24 +1,20 @@ - + U盘 on Lomorage - https://lomorage.com/zh/tags/u%E7%9B%98/ + http://lomorage.com/zh/tags/u%E7%9B%98/ Recent content in U盘 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/u\347\233\230/page/1/index.html" "b/zh/tags/u\347\233\230/page/1/index.html" index 62f4c03e..ccaf0b90 100644 --- "a/zh/tags/u\347\233\230/page/1/index.html" +++ "b/zh/tags/u\347\233\230/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/u%E7%9B%98/ \ No newline at end of file +http://lomorage.com/zh/tags/u%E7%9B%98/ \ No newline at end of file diff --git a/zh/tags/windows/index.html b/zh/tags/windows/index.html index c9869fbc..6e3236ab 100644 --- a/zh/tags/windows/index.html +++ b/zh/tags/windows/index.html @@ -1,472 +1,294 @@ + + + + + + + + Windows | Lomorage + + - - - - - - - - - - Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    Windows

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    利用lomorage把照片和视频传到Windows

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git a/zh/tags/windows/index.xml b/zh/tags/windows/index.xml index 720f9b60..cfbcd970 100644 --- a/zh/tags/windows/index.xml +++ b/zh/tags/windows/index.xml @@ -1,24 +1,20 @@ - + Windows on Lomorage - https://lomorage.com/zh/tags/windows/ + http://lomorage.com/zh/tags/windows/ Recent content in Windows on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 利用lomorage把照片和视频传到Windows - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ <p>之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。</p> - \ No newline at end of file + diff --git a/zh/tags/windows/page/1/index.html b/zh/tags/windows/page/1/index.html index d67801d5..104e43d9 100644 --- a/zh/tags/windows/page/1/index.html +++ b/zh/tags/windows/page/1/index.html @@ -1 +1 @@ -https://lomorage.com/zh/tags/windows/ \ No newline at end of file +http://lomorage.com/zh/tags/windows/ \ No newline at end of file diff --git "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.html" "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.html" index 75cfb7b6..77d56f6a 100644 --- "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.html" +++ "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 冗余备份 | Lomorage + + - - - - - - - - - - 冗余备份 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    冗余备份

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.xml" "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.xml" index 351bbeee..9b619472 100644 --- "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.xml" +++ "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/index.xml" @@ -1,24 +1,20 @@ - + 冗余备份 on Lomorage - https://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ + http://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ Recent content in 冗余备份 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/page/1/index.html" "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/page/1/index.html" index b3dd8e9e..b18ed4b5 100644 --- "a/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/page/1/index.html" +++ "b/zh/tags/\345\206\227\344\275\231\345\244\207\344\273\275/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ \ No newline at end of file +http://lomorage.com/zh/tags/%E5%86%97%E4%BD%99%E5%A4%87%E4%BB%BD/ \ No newline at end of file diff --git "a/zh/tags/\345\256\271\345\231\250/index.html" "b/zh/tags/\345\256\271\345\231\250/index.html" new file mode 100644 index 00000000..6a9efff0 --- /dev/null +++ "b/zh/tags/\345\256\271\345\231\250/index.html" @@ -0,0 +1,294 @@ + + + + + + + + + + 容器 | Lomorage + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + + +
    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    在Windows 10 上安装Lomorage容器镜像

    +
    +

    + + + + in 容器 + + + +

    +

    + November 16, 2020 +

    +
    +

    虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请直接下载Lomorage原生安装包

    +

    继续阅读 +

    +
    +
    +
    + + + +
    + + + + + + +
    + + + + + + +
    + + + + +
    + +
    + +
    + + + + + + + + + + + + +
    + + + + + +
    + + + diff --git "a/zh/tags/\345\256\271\345\231\250/index.xml" "b/zh/tags/\345\256\271\345\231\250/index.xml" new file mode 100644 index 00000000..3c7784e1 --- /dev/null +++ "b/zh/tags/\345\256\271\345\231\250/index.xml" @@ -0,0 +1,20 @@ + + + + 容器 on Lomorage + http://lomorage.com/zh/tags/%E5%AE%B9%E5%99%A8/ + Recent content in 容器 on Lomorage + Hugo -- gohugo.io + en-us + Mon, 16 Nov 2020 22:43:40 +0000 + + 在Windows 10 上安装Lomorage容器镜像 + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + Mon, 16 Nov 2020 22:43:40 +0000 + + http://lomorage.com/zh/blog/2020/11/16/windows-docker/ + <p>虽然Lomorage已经提供了Windows原生安装包,但对于喜欢使用Docker的人来说,用Docker来配置Lomorage服务器,也是一个非常好的选择,尤其在Windows Server上可以极大的发挥HYPER-v技术,让Lomorage的服务器健步如飞。本篇适合有Docker使用经验的人员,如果您不知道Docker是啥,请<a href="https://lomorage.com/zh/installation-win/">直接下载Lomorage原生安装包</a>。</p> + + + + diff --git "a/zh/tags/\345\256\271\345\231\250/page/1/index.html" "b/zh/tags/\345\256\271\345\231\250/page/1/index.html" new file mode 100644 index 00000000..4165df9b --- /dev/null +++ "b/zh/tags/\345\256\271\345\231\250/page/1/index.html" @@ -0,0 +1 @@ +http://lomorage.com/zh/tags/%E5%AE%B9%E5%99%A8/ \ No newline at end of file diff --git "a/zh/tags/\346\201\242\345\244\215/index.html" "b/zh/tags/\346\201\242\345\244\215/index.html" index e76d9eb0..eb4c26c9 100644 --- "a/zh/tags/\346\201\242\345\244\215/index.html" +++ "b/zh/tags/\346\201\242\345\244\215/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 恢复 | Lomorage + + - - - - - - - - - - 恢复 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    恢复

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\346\201\242\345\244\215/index.xml" "b/zh/tags/\346\201\242\345\244\215/index.xml" index ead4ce08..4d1e79fd 100644 --- "a/zh/tags/\346\201\242\345\244\215/index.xml" +++ "b/zh/tags/\346\201\242\345\244\215/index.xml" @@ -1,24 +1,20 @@ - + 恢复 on Lomorage - https://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ + http://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ Recent content in 恢复 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\346\201\242\345\244\215/page/1/index.html" "b/zh/tags/\346\201\242\345\244\215/page/1/index.html" index 6a71dc9e..1b71d41f 100644 --- "a/zh/tags/\346\201\242\345\244\215/page/1/index.html" +++ "b/zh/tags/\346\201\242\345\244\215/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ \ No newline at end of file +http://lomorage.com/zh/tags/%E6%81%A2%E5%A4%8D/ \ No newline at end of file diff --git "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.html" "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.html" index e5ab82b8..a69c102f 100644 --- "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.html" +++ "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 手机传电脑 | Lomorage + + - - - - - - - - - - 手机传电脑 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    手机传电脑

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    利用lomorage把照片和视频传到Windows

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.xml" "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.xml" index 0374f6d2..b84ee024 100644 --- "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.xml" +++ "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/index.xml" @@ -1,24 +1,20 @@ - + 手机传电脑 on Lomorage - https://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ + http://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ Recent content in 手机传电脑 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 利用lomorage把照片和视频传到Windows - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/transfer2pc/ + http://lomorage.com/zh/blog/2019/12/24/transfer2pc/ <p>之前我有一个老的iPhone,里面有很多照片和视频,习惯于在Windows工作的我,花了好久都没找到一个简单好用的软件可以帮我把照片和视频传到Windows上,并且帮我按年月日自动分好类。</p> - \ No newline at end of file + diff --git "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/page/1/index.html" "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/page/1/index.html" index b9373a26..0eec1be5 100644 --- "a/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/page/1/index.html" +++ "b/zh/tags/\346\211\213\346\234\272\344\274\240\347\224\265\350\204\221/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ \ No newline at end of file +http://lomorage.com/zh/tags/%E6%89%8B%E6%9C%BA%E4%BC%A0%E7%94%B5%E8%84%91/ \ No newline at end of file diff --git "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.html" "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.html" index 84bb9cd2..66c42b00 100644 --- "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.html" +++ "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 新冠病毒 | Lomorage + + - - - - - - - - - - 新冠病毒 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    新冠病毒

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -

    - - - - in 看板 - - - -

    -

    - March 29, 2020 -

    -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.xml" "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.xml" index bda85a72..2689550d 100644 --- "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.xml" +++ "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/index.xml" @@ -1,24 +1,20 @@ - + 新冠病毒 on Lomorage - https://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ + http://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ Recent content in 新冠病毒 on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> - \ No newline at end of file + diff --git "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/page/1/index.html" "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/page/1/index.html" index c6ebad56..cc32f7fa 100644 --- "a/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/page/1/index.html" +++ "b/zh/tags/\346\226\260\345\206\240\347\227\205\346\257\222/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ \ No newline at end of file +http://lomorage.com/zh/tags/%E6%96%B0%E5%86%A0%E7%97%85%E6%AF%92/ \ No newline at end of file diff --git "a/zh/tags/\346\240\221\350\216\223\346\264\276/index.html" "b/zh/tags/\346\240\221\350\216\223\346\264\276/index.html" index b181d98c..607b6916 100644 --- "a/zh/tags/\346\240\221\350\216\223\346\264\276/index.html" +++ "b/zh/tags/\346\240\221\350\216\223\346\264\276/index.html" @@ -1,506 +1,328 @@ + + + + + + + + 树莓派 | Lomorage + + - - - - - - - - - - 树莓派 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - + + + -
    + + + + + + + + + + + + + + + + + + + + + + + -
    -
    -
    -
    -

    树莓派

    -
    -
    -
    -
    + + + -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -

    - - - - in 看板 - - - -

    -

    - March 29, 2020 -

    -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    继续阅读 -

    -
    -
    -
    - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\346\240\221\350\216\223\346\264\276/index.xml" "b/zh/tags/\346\240\221\350\216\223\346\264\276/index.xml" index 2066f064..6402a412 100644 --- "a/zh/tags/\346\240\221\350\216\223\346\264\276/index.xml" +++ "b/zh/tags/\346\240\221\350\216\223\346\264\276/index.xml" @@ -1,33 +1,29 @@ - + 树莓派 on Lomorage - https://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ + http://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ Recent content in 树莓派 on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\346\240\221\350\216\223\346\264\276/page/1/index.html" "b/zh/tags/\346\240\221\350\216\223\346\264\276/page/1/index.html" index 8e4c5271..0c2456a2 100644 --- "a/zh/tags/\346\240\221\350\216\223\346\264\276/page/1/index.html" +++ "b/zh/tags/\346\240\221\350\216\223\346\264\276/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ \ No newline at end of file +http://lomorage.com/zh/tags/%E6%A0%91%E8%8E%93%E6%B4%BE/ \ No newline at end of file diff --git "a/zh/tags/\347\227\233\347\202\271/index.html" "b/zh/tags/\347\227\233\347\202\271/index.html" index c15fba08..2ebf2cc4 100644 --- "a/zh/tags/\347\227\233\347\202\271/index.html" +++ "b/zh/tags/\347\227\233\347\202\271/index.html" @@ -1,473 +1,295 @@ + + + + + + + + 痛点 | Lomorage + + - - - - - - - - - - 痛点 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    痛点

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -

    - - - - in BLOG - - - -

    -

    - July 19, 2020 -

    -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\347\227\233\347\202\271/index.xml" "b/zh/tags/\347\227\233\347\202\271/index.xml" index dfc1d0a0..155291a6 100644 --- "a/zh/tags/\347\227\233\347\202\271/index.xml" +++ "b/zh/tags/\347\227\233\347\202\271/index.xml" @@ -1,25 +1,21 @@ - + 痛点 on Lomorage - https://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ + http://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ Recent content in 痛点 on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Sun, 19 Jul 2020 21:04:40 +0000 Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\347\227\233\347\202\271/page/1/index.html" "b/zh/tags/\347\227\233\347\202\271/page/1/index.html" index d102ee2a..d8e42d8a 100644 --- "a/zh/tags/\347\227\233\347\202\271/page/1/index.html" +++ "b/zh/tags/\347\227\233\347\202\271/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ \ No newline at end of file +http://lomorage.com/zh/tags/%E7%97%9B%E7%82%B9/ \ No newline at end of file diff --git "a/zh/tags/\347\234\213\346\235\277/index.html" "b/zh/tags/\347\234\213\346\235\277/index.html" index 6bbcd7bf..cf40d51f 100644 --- "a/zh/tags/\347\234\213\346\235\277/index.html" +++ "b/zh/tags/\347\234\213\346\235\277/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 看板 | Lomorage + + - - - - - - - - - - 看板 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    看板

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    使用树莓派制作新冠病毒电子看板

    -
    -

    - - - - in 看板 - - - -

    -

    - March 29, 2020 -

    -
    -

    新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\347\234\213\346\235\277/index.xml" "b/zh/tags/\347\234\213\346\235\277/index.xml" index a4316d8e..95400448 100644 --- "a/zh/tags/\347\234\213\346\235\277/index.xml" +++ "b/zh/tags/\347\234\213\346\235\277/index.xml" @@ -1,24 +1,20 @@ - + 看板 on Lomorage - https://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ + http://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ Recent content in 看板 on Lomorage Hugo -- gohugo.io en-us - Sun, 29 Mar 2020 22:43:40 +0000 - - - - + Sun, 29 Mar 2020 22:43:40 +0000 使用树莓派制作新冠病毒电子看板 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ Sun, 29 Mar 2020 22:43:40 +0000 - https://lomorage.com/zh/blog/2020/03/29/covid19/ + http://lomorage.com/zh/blog/2020/03/29/covid19/ <p>新冠病毒肆掠全球,虽然现在可以很容易的在手机上查看新闻和数据,但是设置一个专门的电子看板,显示新闻和统计会更加方便。下面会讲解如何一步步的在树莓派上安装和配置“新冠病毒电子看板”。</p> - \ No newline at end of file + diff --git "a/zh/tags/\347\234\213\346\235\277/page/1/index.html" "b/zh/tags/\347\234\213\346\235\277/page/1/index.html" index 638e4792..80e0a7c5 100644 --- "a/zh/tags/\347\234\213\346\235\277/page/1/index.html" +++ "b/zh/tags/\347\234\213\346\235\277/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ \ No newline at end of file +http://lomorage.com/zh/tags/%E7%9C%8B%E6%9D%BF/ \ No newline at end of file diff --git "a/zh/tags/\347\241\254\347\233\230/index.html" "b/zh/tags/\347\241\254\347\233\230/index.html" index 210e4f6d..07238591 100644 --- "a/zh/tags/\347\241\254\347\233\230/index.html" +++ "b/zh/tags/\347\241\254\347\233\230/index.html" @@ -1,472 +1,294 @@ + + + + + + + + 硬盘 | Lomorage + + - - - - - - - - - - 硬盘 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    硬盘

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    树莓派设置冗余备份

    -
    -

    - - - - in FAQ - - - -

    -

    - December 24, 2019 -

    -
    -

    珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\347\241\254\347\233\230/index.xml" "b/zh/tags/\347\241\254\347\233\230/index.xml" index 8cb5f3d9..5df08516 100644 --- "a/zh/tags/\347\241\254\347\233\230/index.xml" +++ "b/zh/tags/\347\241\254\347\233\230/index.xml" @@ -1,24 +1,20 @@ - + 硬盘 on Lomorage - https://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ + http://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ Recent content in 硬盘 on Lomorage Hugo -- gohugo.io en-us - Tue, 24 Dec 2019 13:43:40 +0000 - - - - + Tue, 24 Dec 2019 13:43:40 +0000 树莓派设置冗余备份 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ Tue, 24 Dec 2019 13:43:40 +0000 - https://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ + http://lomorage.com/zh/blog/2019/12/24/raspberrypi-hd/ <p>珍贵的照片和视频仅仅保存一份是不够的,我们至少需要保存两份,最好还能有一个远程的备份。Lomorage当前提供了冗余备份的功能。可以有下面的几种方式来设置冗余备份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\347\241\254\347\233\230/page/1/index.html" "b/zh/tags/\347\241\254\347\233\230/page/1/index.html" index 64fcc46c..b17b91d3 100644 --- "a/zh/tags/\347\241\254\347\233\230/page/1/index.html" +++ "b/zh/tags/\347\241\254\347\233\230/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ \ No newline at end of file +http://lomorage.com/zh/tags/%E7%A1%AC%E7%9B%98/ \ No newline at end of file diff --git "a/zh/tags/\350\277\201\347\247\273/index.html" "b/zh/tags/\350\277\201\347\247\273/index.html" index 992f1881..ac89e9e9 100644 --- "a/zh/tags/\350\277\201\347\247\273/index.html" +++ "b/zh/tags/\350\277\201\347\247\273/index.html" @@ -1,474 +1,296 @@ + + + + + + + + 迁移 | Lomorage + + - - - - - - - - - - 迁移 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + + + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - -
    - -
    - -
    -
    -
    -
    -
    -

    迁移

    -
    -
    -
    + - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    迁移MyCloud的数据到Lomorage

    -
    -

    - - - - in BLOG - - - -

    -

    - May 17, 2020 -

    -
    -

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, +
    + + + + + +

    +
    +
    + + +
    + + + +
    +
    +
    + +
    +
    +

    迁移MyCloud的数据到Lomorage

    +
    +

    + + + + in BLOG + + + +

    +

    + May 17, 2020 +

    +
    +

    曾经买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - +

    继续阅读 +

    +
    +
    +
    + + +
    + + + +
    - - + + +
    + + - - - - + +
    +
    - - - -
    - - - - -
    - -
    - -
    - - -
    -
    - - -
    -

    关于我们

    - - 我们相信分布式互联网是未来的发展方向,专注构建基于DWeb技术的照片私有云。 - - - - -
    - - - -
    - - - -
    - - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\350\277\201\347\247\273/index.xml" "b/zh/tags/\350\277\201\347\247\273/index.xml" index 83aea0a3..138f6d34 100644 --- "a/zh/tags/\350\277\201\347\247\273/index.xml" +++ "b/zh/tags/\350\277\201\347\247\273/index.xml" @@ -1,26 +1,22 @@ - + 迁移 on Lomorage - https://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ + http://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ Recent content in 迁移 on Lomorage Hugo -- gohugo.io en-us - Sun, 17 May 2020 13:43:40 +0000 - - - - + Sun, 17 May 2020 13:43:40 +0000 迁移MyCloud的数据到Lomorage - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ Sun, 17 May 2020 13:43:40 +0000 - https://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ + http://lomorage.com/zh/blog/2020/05/17/import_my_cloud/ <p><strong>曾经</strong>买了一个WD-西部数据的MyCloud 6T的存储,用来存照片和视频。因为它的App不好用, 所以每次都是用USB线把手机连上电脑,然后开着电脑把手机的照片拷贝到MyCloud的共享盘里。 下面我们来看看如何把MyCloud的东西迁移到Lomorage。</p> - \ No newline at end of file + diff --git "a/zh/tags/\350\277\201\347\247\273/page/1/index.html" "b/zh/tags/\350\277\201\347\247\273/page/1/index.html" index 37a47825..5f693b69 100644 --- "a/zh/tags/\350\277\201\347\247\273/page/1/index.html" +++ "b/zh/tags/\350\277\201\347\247\273/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ \ No newline at end of file +http://lomorage.com/zh/tags/%E8%BF%81%E7%A7%BB/ \ No newline at end of file diff --git "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.html" "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.html" index 37236648..c06175fd 100644 --- "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.html" +++ "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.html" @@ -1,473 +1,295 @@ + + + + + + + + 重复照片 | Lomorage + + - - - - - - - - - - 重复照片 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - -
    - -
    - - - - - - -
    - -
    -
    -
    -
    -

    重复照片

    -
    -
    -
    -
    - - -
    -
    -
    - - -
    - - - -
    -
    -
    - -
    -
    -

    Lomorage帮您解决iCloud的痛点

    -
    -

    - - - - in BLOG - - - -

    -

    - July 19, 2020 -

    -
    -

    我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。

    -

    继续阅读 -

    -
    -
    -
    - - - -
    - - - - - - -
    - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + + +
    + +
    + +
    - - - - - - - - - - - - - - - - - - - - - - - + + + + +
    - + diff --git "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.xml" "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.xml" index a7fe0404..ec89a7f1 100644 --- "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.xml" +++ "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/index.xml" @@ -1,25 +1,21 @@ - + 重复照片 on Lomorage - https://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ + http://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ Recent content in 重复照片 on Lomorage Hugo -- gohugo.io en-us - Sun, 19 Jul 2020 21:04:40 +0000 - - - - + Sun, 19 Jul 2020 21:04:40 +0000 Lomorage帮您解决iCloud的痛点 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ Sun, 19 Jul 2020 21:04:40 +0000 - https://lomorage.com/zh/blog/2020/07/19/mypains/ + http://lomorage.com/zh/blog/2020/07/19/mypains/ <p>我的照片很多,一部分放在移动硬盘里,一部分放在U盘里,无论移动硬盘和U盘,我都放两份。 - 自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> +自从手机拍照很方便以来,手机上的照片都没导出来过,我都存在苹果的icloud和百度云里,也是存两份。</p> - \ No newline at end of file + diff --git "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/page/1/index.html" "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/page/1/index.html" index 4a8844d1..0ce5d6a0 100644 --- "a/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/page/1/index.html" +++ "b/zh/tags/\351\207\215\345\244\215\347\205\247\347\211\207/page/1/index.html" @@ -1 +1 @@ -https://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ \ No newline at end of file +http://lomorage.com/zh/tags/%E9%87%8D%E5%A4%8D%E7%85%A7%E7%89%87/ \ No newline at end of file