উবুন্টু 14.04 এর জন্য FFcast কম্পাইল করা, "libx11 প্রয়োজন"?


0

আমি এখন পর্যন্ত কি চালানো হয়েছে এখানে:

$ git clone --recursive https://github.com/lolilolicon/FFcast.git
$ ./bootstrap
$ configure --enable-xrectsel --prefix /usr --libexecdir /usr/lib --sysconfdir /etc

আউটপুট এর শেষ কমান্ড শেষ কয়েক লাইন হয়

=== configuring in src/xrectsel (/home/linus/FFcast/src/xrectsel)
configure: running /bin/bash ./configure --disable-option-checking '--prefix=/usr' '--enable-xrectsel' '--libexecdir' '/usr/lib' '--sysconfdir' '/etc' --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for library containing XOpenDisplay... no
configure: error: libx11 is required
configure: error: ./configure failed for src/xrectsel

আমি চেষ্টা করেছি apt-get install libx11-6, কিন্তু এটি আমাকে বলে যে libx11 ইতিমধ্যেই নতুন সংস্করণ।


1
প্রায়শই যদি এটি আপনাকে বলে যে আপনাকে একটি লাইব্রেরি যা ইতিমধ্যে ইনস্টল করা আছে, তাহলে এটি আপনাকে লাইব্রেরির -ডভেল সংস্করণ প্রয়োজন। এই ক্ষেত্রে, সম্ভবত libx11-devel বা libx11-6-devel।
R Schultz

উত্তর:


1

পাওয়া ffmpeg: উবুন্টু প্রদান করবে না ffmpeg 15.04 পর্যন্ত। তাই পর্যন্ত আপনি করতে হবে সঙ্কলন করা , অথবা ডাউনলোড , অথবা একটি ব্যবহার করুন পিপিএ

কম্পাইল FFcast: এখানে আপনি উৎস থেকে FFcast সংকলন করতে পারেন:

sudo apt-get install autoconf automake build-essential checkinstall git libx11-dev x11-utils
git clone --recursive https://github.com/lolilolicon/FFcast.git
cd FFcast
./bootstrap
./configure --prefix=/usr/local --enable-xrectsel
make
sudo checkinstall --pkgname ffcast --pkgversion "1:2.4.1+git$(git rev-parse --short HEAD)" --fstrans=no --default

কম্পাইল নির্দেশাবলী FFcast হোমপেজে আর্কি লিনাক্সের দিকে লক্ষ্য করা যেখানে ইনস্টল করা হয় /usr/local PKGBUILD মাধ্যমে হয় সুপারিশ করা হয় না , কিন্তু উবুন্টু ব্যবহারকারীদের সাধারণত অনুসরণ করার জন্য উত্সাহ দেওয়া হয় ফাইল সিস্টেম হায়ারারকি স্ট্যান্ডার্ড এবং স্ব-সংকলিত প্যাকেজ ইনস্টল করুন /usr/local। কেন আমি পরিবর্তিত --prefix

উদাহরণ কমান্ড

এটি আপনাকে আপনার মাউস দিয়ে একটি এলাকা নির্বাচন করার জন্য প্রম্পট করবে output.mkv:

ffcast -s rec output.mkv

আনইনস্টল করতে

আপনি ব্যবহার করার পরে এই সহজ checkinstall তাই এটি প্যাকেজ পরিচালনার সিস্টেমের সাথে কাজ করে:

sudo apt-get remove ffcast

উল্লেখযোগ্য এবং সংশোধন করা হয়েছে।
JakeGould

1

X11 এর জন্য আপনাকে ডেভেলপমেন্ট প্যাকেজ ইনস্টল করতে হবে। তাই করতে, নিম্নলিখিত টাইপ করুন।

sudo apt-get install libx11-dev

আপনি যদি কখনো অনুরূপ পরিস্থিতি জুড়ে দৌড়েন তবে আপনি নীচের মতো একটি কমান্ড টাইপ করে একটি ডেভেলপমেন্ট প্যাকেজ দেখতে পাচ্ছেন কিনা তা পরীক্ষা করতে পারেন।

apt-cache search libx11 | grep dev

একবার এটি একটি তালিকা সরবরাহ করে, আপনি যা খুঁজছেন তা মিলে এমন একটি চয়ন করুন। দুর্ভাগ্যবশত, তারা এই হিসাবে খুঁজে পাওয়া সবসময় সহজ নয়।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.