P-touch editor alternative for Ubuntu 18.10 (install 2430PC…)
The credits go to Dominic Radermacher, who created the git.
I managed to get my Brother P-touch label printer working with Dominic's solution running Ubuntu 18.10.
It may work with other linux distros as well, there is a PKGBUILD for Arch/AUR on the site too.
It even has bidirectional communication with the label printer, so it detects the inserted label casette size to scale the font.
Install instructions:
Connect the P-touch printer via USB and power on.
Cups service will detect and install the cups driver.
The printer is installed and detected via CUPs, but this makes no sense, because it can't print labels from any program.
Therefore we need further installs:
USB-detection step (open terminal and paste these commands - hit enter after each command)
sudo apt-get install autopoint libusb-1.0-0-dev libgd-dev
Compile-step (skip git-all install if already done)
sudo apt-get install git-all
sudo git clone https://mockmoon-cybernetics.ch/cgi/cgit/ptouch-print.git
cd ptouch-print/
sudo apt install autoconf
autoreconf -i
sudo ./autogen.sh
./configure --prefix=/usr
sudo make install
./install.sh
Usage - print labels:
1 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "ABCD"
2 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "AB" "CD"
3 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "CD"
4 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "C" "D"
Image print label:
sudo ./ptouch-print --image backspacelogo.png
help command:
./ptouch-print --help
For 24mm labels here the maximum font size options:
1 row 24mm:
--fontsize "120"
2 row 24mm:
--fontsize "60"
3 row 24mm:
--fontsize "38"
4 row 24mm:
--fontsize "30"
Please provide feedback for this install tutorial, maybe it works with easier steps. Other instructions didn't work.
Like this one:
http://xn--von-thlen-v9a.de/doku.php/wiki/linux/druckerundscanner#ptouch-print
Anybody knows why i need additional steps to install?
Does anybody know how to create a small GUI to enter text & rows to avoid printing via terminal?
Can anybody try this solution with a Brother 1230PC Label printer too?
pappl
printing compiling git
add a comment |
The credits go to Dominic Radermacher, who created the git.
I managed to get my Brother P-touch label printer working with Dominic's solution running Ubuntu 18.10.
It may work with other linux distros as well, there is a PKGBUILD for Arch/AUR on the site too.
It even has bidirectional communication with the label printer, so it detects the inserted label casette size to scale the font.
Install instructions:
Connect the P-touch printer via USB and power on.
Cups service will detect and install the cups driver.
The printer is installed and detected via CUPs, but this makes no sense, because it can't print labels from any program.
Therefore we need further installs:
USB-detection step (open terminal and paste these commands - hit enter after each command)
sudo apt-get install autopoint libusb-1.0-0-dev libgd-dev
Compile-step (skip git-all install if already done)
sudo apt-get install git-all
sudo git clone https://mockmoon-cybernetics.ch/cgi/cgit/ptouch-print.git
cd ptouch-print/
sudo apt install autoconf
autoreconf -i
sudo ./autogen.sh
./configure --prefix=/usr
sudo make install
./install.sh
Usage - print labels:
1 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "ABCD"
2 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "AB" "CD"
3 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "CD"
4 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "C" "D"
Image print label:
sudo ./ptouch-print --image backspacelogo.png
help command:
./ptouch-print --help
For 24mm labels here the maximum font size options:
1 row 24mm:
--fontsize "120"
2 row 24mm:
--fontsize "60"
3 row 24mm:
--fontsize "38"
4 row 24mm:
--fontsize "30"
Please provide feedback for this install tutorial, maybe it works with easier steps. Other instructions didn't work.
Like this one:
http://xn--von-thlen-v9a.de/doku.php/wiki/linux/druckerundscanner#ptouch-print
Anybody knows why i need additional steps to install?
Does anybody know how to create a small GUI to enter text & rows to avoid printing via terminal?
Can anybody try this solution with a Brother 1230PC Label printer too?
pappl
printing compiling git
add a comment |
The credits go to Dominic Radermacher, who created the git.
I managed to get my Brother P-touch label printer working with Dominic's solution running Ubuntu 18.10.
It may work with other linux distros as well, there is a PKGBUILD for Arch/AUR on the site too.
It even has bidirectional communication with the label printer, so it detects the inserted label casette size to scale the font.
Install instructions:
Connect the P-touch printer via USB and power on.
Cups service will detect and install the cups driver.
The printer is installed and detected via CUPs, but this makes no sense, because it can't print labels from any program.
Therefore we need further installs:
USB-detection step (open terminal and paste these commands - hit enter after each command)
sudo apt-get install autopoint libusb-1.0-0-dev libgd-dev
Compile-step (skip git-all install if already done)
sudo apt-get install git-all
sudo git clone https://mockmoon-cybernetics.ch/cgi/cgit/ptouch-print.git
cd ptouch-print/
sudo apt install autoconf
autoreconf -i
sudo ./autogen.sh
./configure --prefix=/usr
sudo make install
./install.sh
Usage - print labels:
1 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "ABCD"
2 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "AB" "CD"
3 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "CD"
4 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "C" "D"
Image print label:
sudo ./ptouch-print --image backspacelogo.png
help command:
./ptouch-print --help
For 24mm labels here the maximum font size options:
1 row 24mm:
--fontsize "120"
2 row 24mm:
--fontsize "60"
3 row 24mm:
--fontsize "38"
4 row 24mm:
--fontsize "30"
Please provide feedback for this install tutorial, maybe it works with easier steps. Other instructions didn't work.
Like this one:
http://xn--von-thlen-v9a.de/doku.php/wiki/linux/druckerundscanner#ptouch-print
Anybody knows why i need additional steps to install?
Does anybody know how to create a small GUI to enter text & rows to avoid printing via terminal?
Can anybody try this solution with a Brother 1230PC Label printer too?
pappl
printing compiling git
The credits go to Dominic Radermacher, who created the git.
I managed to get my Brother P-touch label printer working with Dominic's solution running Ubuntu 18.10.
It may work with other linux distros as well, there is a PKGBUILD for Arch/AUR on the site too.
It even has bidirectional communication with the label printer, so it detects the inserted label casette size to scale the font.
Install instructions:
Connect the P-touch printer via USB and power on.
Cups service will detect and install the cups driver.
The printer is installed and detected via CUPs, but this makes no sense, because it can't print labels from any program.
Therefore we need further installs:
USB-detection step (open terminal and paste these commands - hit enter after each command)
sudo apt-get install autopoint libusb-1.0-0-dev libgd-dev
Compile-step (skip git-all install if already done)
sudo apt-get install git-all
sudo git clone https://mockmoon-cybernetics.ch/cgi/cgit/ptouch-print.git
cd ptouch-print/
sudo apt install autoconf
autoreconf -i
sudo ./autogen.sh
./configure --prefix=/usr
sudo make install
./install.sh
Usage - print labels:
1 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "ABCD"
2 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "AB" "CD"
3 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "CD"
4 row label:
sudo ./ptouch-print --font "Comic Sans MS:bold" --text "A" "B" "C" "D"
Image print label:
sudo ./ptouch-print --image backspacelogo.png
help command:
./ptouch-print --help
For 24mm labels here the maximum font size options:
1 row 24mm:
--fontsize "120"
2 row 24mm:
--fontsize "60"
3 row 24mm:
--fontsize "38"
4 row 24mm:
--fontsize "30"
Please provide feedback for this install tutorial, maybe it works with easier steps. Other instructions didn't work.
Like this one:
http://xn--von-thlen-v9a.de/doku.php/wiki/linux/druckerundscanner#ptouch-print
Anybody knows why i need additional steps to install?
Does anybody know how to create a small GUI to enter text & rows to avoid printing via terminal?
Can anybody try this solution with a Brother 1230PC Label printer too?
pappl
printing compiling git
printing compiling git
edited 16 hours ago
PAPPL
asked Jan 20 at 18:19
PAPPLPAPPL
267
267
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111439%2fp-touch-editor-alternative-for-ubuntu-18-10-install-2430pc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111439%2fp-touch-editor-alternative-for-ubuntu-18-10-install-2430pc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown