个人工具

“UbuntuHelp:BookSmart”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(创建新页面为 '{{From|https://help.ubuntu.com/community/BookSmart}} {{Languages|UbuntuHelp:BookSmart}} Parent: Software == Introduction == BookSmart is a bookmaking app...')
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/BookSmart}}
 
{{From|https://help.ubuntu.com/community/BookSmart}}
 
{{Languages|UbuntuHelp:BookSmart}}
 
{{Languages|UbuntuHelp:BookSmart}}
Parent: [[UbuntuHelp:Software|Software]]
 
 
== Introduction ==
 
== Introduction ==
 
BookSmart is a bookmaking application developed by Blurb, Inc. It allows users to design and publish books.
 
BookSmart is a bookmaking application developed by Blurb, Inc. It allows users to design and publish books.
第8行: 第7行:
 
== Installation Instructions ==
 
== Installation Instructions ==
 
These instructions are heavily based on the hard work done by Blurb forum member [http://www.blurb.com/user/clecuret Cedric Lecuret]. His original instructions are [http://sites.google.com/site/leucblog/Home/booksmart--linux here].
 
These instructions are heavily based on the hard work done by Blurb forum member [http://www.blurb.com/user/clecuret Cedric Lecuret]. His original instructions are [http://sites.google.com/site/leucblog/Home/booksmart--linux here].
Firstly, download the latest version of BookSmart from [http://www.blurb.com/ here]. Make sure you get the Mac version, not the Windows version. Alternatively, download it from the commandline:
+
=== Download and mount install disc ===
<code><nowiki>wget http://downloads.blurb.com/booksmart/BookSmart_1.9.9.dmg</nowiki></code>
+
Firstly, download the latest version of BookSmart from [http://www.blurb.com/ here]. Make sure you get the Mac version, not the Windows version. Alternatively, download it from the command line. The following will get v2.5.1, which may not be the latest version so check first:
 +
<code><nowiki>wget http://downloads.blurb.com/booksmart/BookSmart_2.5.1.dmg</nowiki></code> Updated 2009-10-2
 
Now install some software to convert the DMG file into something that Linux can mount, such as dmg2img. Follow these [[UbuntuHelp:DMG2IMG|DMG2IMG]] instructions. Then, convert the file using:
 
Now install some software to convert the DMG file into something that Linux can mount, such as dmg2img. Follow these [[UbuntuHelp:DMG2IMG|DMG2IMG]] instructions. Then, convert the file using:
<code><nowiki>dmg2img BookSmart_1.9.9.dmg</nowiki></code>
+
<code><nowiki>dmg2img BookSmart_2.0.2.dmg</nowiki></code>
 
Next mount the disc image:
 
Next mount the disc image:
 
<pre><nowiki>
 
<pre><nowiki>
sudo mkdir -p /macbooksmart
+
sudo mkdir /macbooksmart
 
sudo modprobe hfsplus
 
sudo modprobe hfsplus
sudo mount -t hfsplus -o loop BookSmart_1.9.9.img /macbooksmart
+
sudo mount -t hfsplus -o loop BookSmart_2.0.2.img /macbooksmart
 
</nowiki></pre>
 
</nowiki></pre>
And install the BookSmart files:
+
=== Install files ===
 +
Install the BookSmart files:
 
<pre><nowiki>
 
<pre><nowiki>
 
sudo mkdir /usr/lib/booksmart/
 
sudo mkdir /usr/lib/booksmart/
第26行: 第27行:
 
The 1.9.9 Mac version of BookSmart will only run under Java 1.5, so make sure that is installed:
 
The 1.9.9 Mac version of BookSmart will only run under Java 1.5, so make sure that is installed:
 
<code><nowiki>sudo apt-get install sun-java5-jre</nowiki></code>
 
<code><nowiki>sudo apt-get install sun-java5-jre</nowiki></code>
Now, create a script that can start BookSmart:
+
=== Create startup script ===
 +
Create a script that can start BookSmart:
 
<pre><nowiki>
 
<pre><nowiki>
 
sudo echo '#! /bin/sh
 
sudo echo '#! /bin/sh
第41行: 第43行:
  
 
exit $?
 
exit $?
' > /usr/lib/booksmart/booksmart.sh
+
' > $HOME/booksmart.sh
 +
sudo mv $HOME/booksmart.sh /usr/lib/booksmart/booksmart.sh
 
sudo chmod a+x /usr/lib/booksmart/booksmart.sh
 
sudo chmod a+x /usr/lib/booksmart/booksmart.sh
 
</nowiki></pre>
 
</nowiki></pre>
 +
=== Set up menu ===
 
Finally, create a menu item to run BookSmart. Right-click on the Applications menu and select Edit Menu. Add a new entry under the Graphics menu called BookSmart which runs the following command:
 
Finally, create a menu item to run BookSmart. Right-click on the Applications menu and select Edit Menu. Add a new entry under the Graphics menu called BookSmart which runs the following command:
 
<code><nowiki>/usr/lib/booksmart/booksmart.sh</nowiki></code>
 
<code><nowiki>/usr/lib/booksmart/booksmart.sh</nowiki></code>
 +
=== Tidying up ===
 +
You can now tidy up the files used during installation:
 +
<pre><nowiki>
 +
sudo umount /macbooksmart
 +
sudo rmdir /macbooksmart
 +
rm BookSmart_2.0.2.*
 +
</nowiki></pre>
 
== Getting Started With BookSmart ==
 
== Getting Started With BookSmart ==
 
You can now run BookSmart by selecting Applications > Graphics > BookSmart from the menu.
 
You can now run BookSmart by selecting Applications > Graphics > BookSmart from the menu.

2009年11月17日 (二) 18:40的版本

Introduction

BookSmart is a bookmaking application developed by Blurb, Inc. It allows users to design and publish books. Although Blurb do not offer or support a Linux version of BookSmart, it is a Java application which will run on Linux with a bit of fiddling. Website: http://www.blurb.com/

Installation Instructions

These instructions are heavily based on the hard work done by Blurb forum member Cedric Lecuret. His original instructions are here.

Download and mount install disc

Firstly, download the latest version of BookSmart from here. Make sure you get the Mac version, not the Windows version. Alternatively, download it from the command line. The following will get v2.5.1, which may not be the latest version so check first: wget http://downloads.blurb.com/booksmart/BookSmart_2.5.1.dmg Updated 2009-10-2 Now install some software to convert the DMG file into something that Linux can mount, such as dmg2img. Follow these DMG2IMG instructions. Then, convert the file using: dmg2img BookSmart_2.0.2.dmg Next mount the disc image:

sudo mkdir /macbooksmart
sudo modprobe hfsplus
sudo mount -t hfsplus -o loop BookSmart_2.0.2.img /macbooksmart

Install files

Install the BookSmart files:

sudo mkdir /usr/lib/booksmart/
sudo cp -r /macbooksmart/BookSmart.app/Contents/Resources/Java/lib/ /usr/lib/booksmart/
sudo cp -r /macbooksmart/BookSmart.app/Contents/Resources/Java/resources/ /usr/lib/booksmart/ 

The 1.9.9 Mac version of BookSmart will only run under Java 1.5, so make sure that is installed: sudo apt-get install sun-java5-jre

Create startup script

Create a script that can start BookSmart:

sudo echo '#! /bin/sh
cd /usr/lib/booksmart
classpath=""

# Build classpath with all jars in the lib directory
for jar in lib/*.jar
do
classpath=$classpath:$jar
done

/usr/lib/jvm/java-1.5.0-sun/jre/bin/java -Xincgc -ea -Xms256m -Xmx1024m -classpath $classpath com.blurb.booksmart.application.BookSmart

exit $?
' > $HOME/booksmart.sh
sudo mv $HOME/booksmart.sh /usr/lib/booksmart/booksmart.sh
sudo chmod a+x /usr/lib/booksmart/booksmart.sh

Set up menu

Finally, create a menu item to run BookSmart. Right-click on the Applications menu and select Edit Menu. Add a new entry under the Graphics menu called BookSmart which runs the following command: /usr/lib/booksmart/booksmart.sh

Tidying up

You can now tidy up the files used during installation:

sudo umount /macbooksmart
sudo rmdir /macbooksmart
rm BookSmart_2.0.2.*

Getting Started With BookSmart

You can now run BookSmart by selecting Applications > Graphics > BookSmart from the menu.

Known Issues

The thumbnails for themes for the New Book wizard are missing/misnamed.