How can I export books from Ubuntu to Amazon Kindle?

35

Solution 1

send them via email to your kindle account. Calibre has an option for that. If you are unfamiliar every kindle has a unique email that you can send documents to.,

Solution 2

You may try installing SendToKindle program written in python.

First install python setup tools:

sudo apt-get install python-setuptools

Then follow instructions on github repository:

https://github.com/miracle2k/sendtokindle#installation

After installation you should be able to send any file via right mouse click.

Share:
35

Related videos on Youtube

Saeed Abbaspour
Author by

Saeed Abbaspour

Updated on September 18, 2022

Comments

  • Saeed Abbaspour
    Saeed Abbaspour almost 2 years

    I am trying to append the form submit using Angular but I receive an error when I submit more than one consecutive similar values. For example if I submit "John" and then try to submit another "John" the program crashes. Can someone explain it to me? and a tip how to fix it?

    *Also can anyone tell me how to append the results in one line?

    angular.module("displayText", [])
      .controller("submitText", function($scope) {
        $scope.outputArr = [];
        $scope.print = function() {
    
          $scope.outputArr.push($scope.inputText);
          $scope.inputText = '';
        };
      });
    <html ng-app="displayText">
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.min.js"></script>
    
    <body ng-controller="submitText">
    
      <div>
    
        <form method="get">
          <input type="text" name="post" ng-model="inputText" required/>
          <button ng-click="print(inputText)">Submit</button>
        </form>
    
        <div id="page">
          <p ng-repeat="text in outputArr">{{text}}</p>
        </div>
    
      </div>
    
    </body>
    
    </html>

  • hayatoShingu
    hayatoShingu over 9 years
    i've found a post about this: stackoverflow.com/questions/16296670/…