LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 05-19-2014, 11:03 PM   #1
Randymanme
Member
 
Registered: Jul 2009
Location: Columbus, OH, USA
Distribution: Ubuntu 12.04; Knoppix 7
Posts: 134

Rep: Reputation: 16
How do I install libfribidi-bin in Ubuntu 12.04?


I want to use UCK, the Ubuntu Customization Kit while using Ubuntu 12.04. But the tutorial, Roll Your Own Customized Ubuntu With UCK , at http://www.linux.com/learn/tutorials...buntu-with-uck says,

A very important prequisite is to install libfribidi-bin. It is a required dependency that is not present in the uck package. If you don't install it your custom build will fail, when it is almost finished, with a "Failed to build gfxboot theme" error. This is is a bug going back to 12.04 or earlier, so sigh and deal with it.

After much googling, I don't see how to install that package in Precise Pangolin. Sysnaptic, however, does install UCK. Does it work anyway, without libfribidi-bin?

As usual, any help will be appreciated. Thank you.

P.S.: My hardware won't support Unity beyond 12.04.
 
Old 05-20-2014, 03:24 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Ubuntu 13.04, 13.10, 14.04 :
"libfribidi-bin" : Free Implementation of the Unicode BiDi algorithm.
Provides /usr/bin/fribidi , nothing else.

Ubuntu 12.04 precise : ``/usr/bin/fribidi´´ is provided by "libfribidi0".

Solution : $ sudo apt-get install libfribidi0

Ref.
. http://packages.ubuntu.com/search?ke...searchon=names
. http://packages.ubuntu.com/raring/libfribidi-bin
http://packages.ubuntu.com/raring/am...i-bin/filelist
. http://packages.ubuntu.com/precise/libfribidi0
http://packages.ubuntu.com/precise/i...bidi0/filelist

-
 
1 members found this post helpful.
Old 05-20-2014, 11:18 PM   #3
Randymanme
Member
 
Registered: Jul 2009
Location: Columbus, OH, USA
Distribution: Ubuntu 12.04; Knoppix 7
Posts: 134

Original Poster
Rep: Reputation: 16
Thank you for your help and references.

randyman@randyman-E-4000:~$ sudo apt-get install libfribidi0
[sudo] password for randyman:
Reading package lists... Done
Building dependency tree
Reading state information... Done
libfribidi0 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

randyman@randyman-E-4000:~$ sudo apt-get install libc6
Reading package lists... Done
Building dependency tree
Reading state information... Done
libc6 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

randyman@randyman-E-4000:~$ sudo apt-get install libfribidi-bin
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libfribidi-bin
randyman@randyman-E-4000:~$
 
Old 05-21-2014, 03:48 AM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 3 .

Read post #2.
The "libfribidi-bin file" is included in libfribidi0,
.. which you already have installed.


Here is a valid link to Carla Schroder's `Roll Your Own Customized Ubuntu With UCK´
http://www.linux.com/learn/tutorials...buntu-with-uck
.. I guess she didn't take into account the information you can get
from the links in post #2.

She may have been thinking Ubuntu 13.04 only :
"13.04" was the only version with a separate //bin/fribidi at that time,
19 September 2013 !

Besides that : Don't believe everything written on the Internet / in a Magazine.

-
 
Old 05-22-2014, 02:55 AM   #5
Randymanme
Member
 
Registered: Jul 2009
Location: Columbus, OH, USA
Distribution: Ubuntu 12.04; Knoppix 7
Posts: 134

Original Poster
Rep: Reputation: 16
Smile

Thank you very much for your time and attention.

As I read http://packages.ubuntu.com/raring/libfribidi-bin, libfribidi0 (>= 0.19.2) is one of libfribidi-bin (0.19.5-1)'s dependecies; which (I suppose) would explain why even though I have libfribidi0 installed, terminal says:

randyman@randyman-E-4000:~$ sudo apt-get install libfribidi-bin
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libfribidi-bin
randyman@randyman-E-4000:~$

In the mean time, however (and forgive me for saying so), I still don't have libfribidi-bin.

All help given me is much apprecriated. Thanks.
 
Old 05-22-2014, 03:01 AM   #6
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 5 .
Quote:
I still don't have libfribidi-bin.
Yes you have : libfribidi-bin is one file = /usr/bin/fribidi

Which you already have from the installed libfribidi0
http://packages.ubuntu.com/precise/i...bidi0/filelist

Please read posts #2 and #4.

-
 
Old 05-22-2014, 09:22 AM   #7
Randymanme
Member
 
Registered: Jul 2009
Location: Columbus, OH, USA
Distribution: Ubuntu 12.04; Knoppix 7
Posts: 134

Original Poster
Rep: Reputation: 16
Question

Do I have this right(?): I go to /usr/bin and when I find an empty folder (file?) fribidi, that's it?
 
Old 05-22-2014, 10:02 AM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 7 .

'fribidi' is an executable file, in /usr/bin/ .

* /usr/bin/ is in your PATH, so applications that can use 'fribidi',
will find it automatically.

Conclusion : Do nothing.

-
 
1 members found this post helpful.
Old 05-22-2014, 02:18 PM   #9
Randymanme
Member
 
Registered: Jul 2009
Location: Columbus, OH, USA
Distribution: Ubuntu 12.04; Knoppix 7
Posts: 134

Original Poster
Rep: Reputation: 16
Cool

Thank you very much! Not just for the help, but also for your patience with a noob.






1
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
/usr/bin/pecl install fileinfo... Failed for horde webmail on Ubuntu 11.04 nqk28703 Linux - Software 6 01-23-2012 01:18 PM
.bin file install failed on Ubuntu 10.04LTS but worked on Ubuntu 11.10 wh33t Linux - Software 8 01-18-2012 01:51 PM
Install from a .bin file in Ubuntu 11.10? wh33t Linux - Software 2 01-09-2012 10:14 PM
Can I install rpm.bin or .bin files on Fedora 11 ?? berndtoro Linux - Newbie 8 08-30-2009 01:22 PM
tetex-bin install error: No alternatives for oxdvi.bin. Aleora Linux - Software 0 11-28-2008 07:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 11:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration