$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

OneDrive Client Debian 10 Installation – Step-by-step

July 5, 2022 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Dependencies

    Then to Install Required Software
    Run:

    sudo apt install build-essential libcurl4-openssl-dev libsqlite3-dev pkg-config git unzip curl libnotify-dev

    Authenticate with the User Admin Pass.
    If Got “User is Not in Sudoers file” then see: How to Enable sudo.

  2. 3. Installing DMD Compiler

    Then to Install D Compiler
    Simply run:

    curl -fsSk https://dlang.org/install.sh | bash -s dmd

    Next, Configure the default Linker:

    sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20
    sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10
  3. 4. Activating DMD Compiler

    Now Activate D Compiler Environment
    With:

    source ~/dlang/dmd-2*/activate
  4. 5. Downloading OneDrive Client

    Download OneDrive Client for Debian GNU/Linux

    OneDrive Client Source for Debian

    Best to Clone it with Git!

  5. 6. Installing OneDrive Client

    Then to Install OneDrive Client
    In case you grab the Zip Archive then extract it with:

    unzip ~/Downloads/onedrive*.zip

    So access the Target Folder with:

    cd onedrive*

    Configure it:

    ./configure

    Again Make it:

    make clean && make

    Last to Setup play:

    sudo make install
  6. 7. Deactivating DMD Compiler

    Now Deactivate D Compiler Environment
    With:

    deactivate
  7. 8. OneDrive Client Getting-Started Guide

    Getting-Started with OneDrive Client for Debian GNU/Linux

    OneDrive Client QuickStart Guide
  8. So Now I’m truly Happy if My Guide could Help you to QuickStart with OneDrive Client on Debian 10!

Contents