ScreenFetch is a System Information Tool designed primarily for Bash Shell but function with other shell environment as well. The tool is smart enough to auto-detect the Linux distribution you are using and generate the ASCII logo of the distribution with certain valuable information to the right of logo.
Let's see my ScreenFetch:
tutorials, tips, tricks, commands, programming, linux, windows, database, sql, python, programming language, Fedora, drawing, painting, tutorial, tutorials
Friday, March 3, 2017
Fedora: telnet game - BatMUD.
This is a good game if you have a telnet and internet connection.
Just open your terminal, run the telnet command and type o to open this: batmud.bat.org 23.
The game has an official website.
The team tells us about this game:
What is BatMUD - scratching the surface
The java interface with my account, see:
Just open your terminal, run the telnet command and type o to open this: batmud.bat.org 23.
The game has an official website.
The team tells us about this game:
What is BatMUD - scratching the surface
One could go on and rant for hours and hours about the Game. If you're not familiar with BatMUD, don't worry - you won't even be after the first week of playing. The game's not easy, it was never intended to be. The first eyeful can be deceiving, especially as we live in the fully graphical world of commercially produced, hundred-million dollar budget behemoths. Our game, it's nothing like that; even though we tend to boast that it is more, and trust us - it is. A problem with the modern day games is that, eventually they become very dull or simply uninspiring. However, BatMUD's text-based approach it is different, somewhat to as reading a good book - it's all about your imagination. Hundreds of volunteer developers through the Decades have brought a special uniqueness to the Game, and new ones continue the Legacy to this day. We cater to almost everyone: the available options and playstyles are basically endless. It's Your Realm.
The java interface with my account, see:
Saturday, February 25, 2017
Install Adobe Flash Player 24 on Fedora 25
Is very simple , I use this commands today:
[root@localhost mythcat]
# rpm -ivh http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm
Retrieving http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm
warning: /var/tmp/rpm-tmp.yTBgjV: Header V3 DSA/SHA1 Signature, key ID xxxxxxx: NOKEY
Preparing... ################################# [100%]
Updating / installing...
1:adobe-release-x86_64-1.0-1 ################################# [100%]
[root@localhost mythcat]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
[root@localhost mythcat]# dnf install flash-plugin alsa-plugins-pulseaudio libcurl
Adobe Systems Incorporated 11 kB/s | 2.0 kB 00:00
Package alsa-plugins-pulseaudio-1.1.1-1.fc25.x86_64 is already installed, skipping.
Package libcurl-7.51.0-4.fc25.x86_64 is already installed, skipping.
Dependencies resolved.
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
flash-plugin x86_64 24.0.0.221-release adobe-linux-x86_64 9.2 M
Transaction Summary
================================================================================
Install 1 Package
Total download size: 9.2 M
Installed size: 22 M
Is this ok [y/N]: y
Downloading Packages:
flash-player-npapi-24.0.0.221-release.x86_64.rp 1.2 MB/s | 9.2 MB 00:07
--------------------------------------------------------------------------------
Total 1.2 MB/s | 9.2 MB 00:07
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Installing : flash-plugin-24.0.0.221-release.x86_64 1/1
Verifying : flash-plugin-24.0.0.221-release.x86_64 1/1
Installed:
flash-plugin.x86_64 24.0.0.221-release
Complete!
[root@localhost mythcat]#
Tuesday, February 21, 2017
Fedora 25: The perf linux tool.
If you want a good tool to test your performance under Fedora 25 distro or linux then the perf tool is great.
You can read a full tutorial from perf wiki and that will give a good impression on this utility.
The main problem come when you need to understand why we have to use this utility in linux.
Intro A trivial use the top command will show you the necessary information about your Linux.
If you look closely you will notice that :
The three numbers represent averages over progressively longer periods of time (one, five, and fifteen minute averages). This means for us: that lower numbers are better and the higher numbers represent a problem or an overloaded machine. Now about multicore and multiprocessor the rule is simple: the total number of cores is what matters, regardless of how many physical processors those cores are spread across. Let's use this command: First I will record some data about my CPU:
The result of this command: You can use the full list events by using this command:
You can read a full tutorial from perf wiki and that will give a good impression on this utility.
The main problem come when you need to understand why we have to use this utility in linux.
Intro A trivial use the top command will show you the necessary information about your Linux.
If you look closely you will notice that :
load average: 0.09, 0.05, 0.01
The three numbers represent averages over progressively longer periods of time (one, five, and fifteen minute averages). This means for us: that lower numbers are better and the higher numbers represent a problem or an overloaded machine. Now about multicore and multiprocessor the rule is simple: the total number of cores is what matters, regardless of how many physical processors those cores are spread across. Let's use this command: First I will record some data about my CPU:
[mythcat@localhost ~]$ perf record -e cpu-clock -ag
Error:
You may not have permission to collect system-wide stats.
Consider tweaking /proc/sys/kernel/perf_event_paranoid,
which controls use of the performance events system by
unprivileged users (without CAP_SYS_ADMIN).
The current value is 2:
-1: Allow use of (almost) all events by all users
>= 0: Disallow raw tracepoint access by users without CAP_IOC_LOCK
>= 1: Disallow CPU event access by users without CAP_SYS_ADMIN
>= 2: Disallow kernel profiling by users without CAP_SYS_ADMIN
[mythcat@localhost ~]$ su
Password:
[root@localhost mythcat]# perf record -e cpu-clock -ag
^C[ perf record: Woken up 17 times to write data ]
[ perf record: Captured and wrote 5.409 MB perf.data (38518 samples) ]
[root@localhost mythcat]# ls -l perf.data
-rw-------. 1 mythcat mythcat 5683180 Feb 21 13:24 perf.data
You can see the perf tool working with root account and result is owned by deafult user.
Let's show this data using the default user - mythcat and perf tool:[mythcat@localhost ~]$ perf report
The result of this command: You can use the full list events by using this command:
[mythcat@localhost ~]$ perf list
List of pre-defined events (to be used in -e):
branch-instructions OR branches [Hardware event]
branch-misses [Hardware event]
bus-cycles [Hardware event]
cache-misses [Hardware event]
cache-references [Hardware event]
cpu-cycles OR cycles [Hardware event]
instructions [Hardware event]
ref-cycles [Hardware event]
alignment-faults [Software event]
bpf-output [Software event]
context-switches OR cs [Software event]
cpu-clock [Software event]
cpu-migrations OR migrations [Software event]
dummy [Software event]
emulation-faults [Software event]
major-faults [Software event]
minor-faults [Software event]
page-faults OR faults [Software event]
task-clock [Software event]
Let's see one event from this list and that will told us how Fedora working:
[root@localhost mythcat]# perf top -e minor-faults -ns comm
Is use the comm (keys are available: pid, comm, dso, symbol, parent, cpu, socket, srcline,
weight, local_weight) and the -ns args see the manual of perf command.
The result of this command is:
This is most simple way to see how is start and close some pids and how they interact in real-time with the operating system.
Another way to deal with the perf command is how to analyze most scheduler properties from within 'perf sched'
alone using the perf sched with the five sub-commands currently:
perf sched record # low-overhead recording of arbitrary workloads
perf sched latency # output per task latency metrics
perf sched map # show summary/map of context-switching
perf sched trace # output finegrained trace
perf sched replay # replay a captured workload using simlated threads
Try this example to see the to capture a trace and then to check
latencies (which analyzes the trace in perf.data record file).
perf sched record sleep 10 # record full system activity for 10 seconds
perf sched latency --sort max # report latencies sorted by max
You can also make a map of map of scheduling events by using this command:
[root@localhost mythcat]# perf sched record
This tutorial show you just only 1% of ways of using the perf command.
Posted by
Cătălin George Feștilă
Labels:
2017,
Fedora,
Fedora 25,
linux,
linux tools,
perf,
tutorial,
tutorials
Sunday, February 19, 2017
Fedora 25: running Geekbench.
You can test your CPU with this software and will see report online.
The official website told us about this tool:
Geekbench 4 measures your system's power and tells you whether your computer is ready to roar. How strong is your mobile device or desktop computer? How will it perform when push comes to crunch? These are the questions that Geekbench can answer.
You can use free or buy a license for this software and you can get it from here.
Let's see how is working and what is tested:
The official website told us about this tool:
Geekbench 4 measures your system's power and tells you whether your computer is ready to roar. How strong is your mobile device or desktop computer? How will it perform when push comes to crunch? These are the questions that Geekbench can answer.
You can use free or buy a license for this software and you can get it from here.
Let's see how is working and what is tested:
[mythcat@localhost Geekbench-4.0.4-Linux]$ ls
geekbench4 geekbench.plar geekbench_x86_32 geekbench_x86_64
[mythcat@localhost Geekbench-4.0.4-Linux]$ ./geekbench4
[0219/140337:INFO:src/base/archive_file.cpp(43)] Found archive at
/home/mythcat/build.pulse/dist/Geekbench-4.0.4-Linux/geekbench.plar
Geekbench 4.0.4 Tryout : http://www.geekbench.com/
Geekbench 4 is in tryout mode.
Geekbench 4 requires an active Internet connection when in tryout mode, and
automatically uploads test results to the Geekbench Browser. Other features
are unavailable in tryout mode.
Buy a Geekbench 4 license to enable offline use and remove the limitations of
tryout mode.
If you would like to purchase Geekbench you can do so online:
https://store.primatelabs.com/v4
If you have already purchased Geekbench, enter your email address and license
key from your email receipt with the following command line:
./geekbench4 -r email address="" license key=""
Running Gathering system information
System Information
Operating System Linux 4.9.9-200.fc25.x86_64 x86_64
Model Gigabyte Technology Co., Ltd. B85-HD3
Motherboard Gigabyte Technology Co., Ltd. B85-HD3
Processor Intel Core i5-4460 @ 3.40 GHz
1 Processor, 4 Cores, 4 Threads
Processor ID GenuineIntel Family 6 Model 60 Stepping 3
L1 Instruction Cache 32.0 KB x 2
L1 Data Cache 32.0 KB x 2
L2 Cache 256 KB x 2
L3 Cache 6.00 MB
Memory 7.26 GB
BIOS American Megatrends Inc. F2
Compiler Clang 3.8.0 (tags/RELEASE_380/final)
Single-Core
Running AES
Running LZMA
Running JPEG
Running Canny
Running Lua
Running Dijkstra
Running SQLite
Running HTML5 Parse
Running HTML5 DOM
Running Histogram Equalization
Running PDF Rendering
Running LLVM
Running Camera
Running SGEMM
Running SFFT
Running N-Body Physics
Running Ray Tracing
Running Rigid Body Physics
Running HDR
Running Gaussian Blur
Running Speech Recognition
Running Face Detection
Running Memory Copy
Running Memory Latency
Running Memory Bandwidth
Multi-Core
Running AES
Running LZMA
Running JPEG
Running Canny
Running Lua
Running Dijkstra
Running SQLite
Running HTML5 Parse
Running HTML5 DOM
Running Histogram Equalization
Running PDF Rendering
Running LLVM
Running Camera
Running SGEMM
Running SFFT
Running N-Body Physics
Running Ray Tracing
Running Rigid Body Physics
Running HDR
Running Gaussian Blur
Running Speech Recognition
Running Face Detection
Running Memory Copy
Running Memory Latency
Running Memory Bandwidth
Uploading results to the Geekbench Browser. This could take a minute or two
depending on the speed of your internet connection.
Upload succeeded. Visit the following link and view your results online:
Posted by
Cătălin George Feștilă
Labels:
2017,
benchmark,
Fedora,
Fedora 25,
linux,
linux tools,
tutorial
Friday, February 17, 2017
News: OpenSSL Security Advisory [16 Feb 2017]
According to this website: www.openssl.org/news
OpenSSL Security Advisory [16 Feb 2017] ======================================== Encrypt-Then-Mac renegotiation crash (CVE-2017-3733) ==================================================== Severity: High During a renegotiation handshake if the Encrypt-Then-Mac extension is negotiated where it was not in the original handshake (or vice-versa) then this can cause OpenSSL to crash (dependent on ciphersuite). Both clients and servers are affected. OpenSSL 1.1.0 users should upgrade to 1.1.0e This issue does not affect OpenSSL version 1.0.2. This issue was reported to OpenSSL on 31st January 2017 by Joe Orton (Red Hat). The fix was developed by Matt Caswell of the OpenSSL development team. Note ==== Support for version 1.0.1 ended on 31st December 2016. Support for versions 0.9.8 and 1.0.0 ended on 31st December 2015. Those versions are no longer receiving security updates. References ========== URL for this Security Advisory: https://www.openssl.org/news/secadv/20170216.txt Note: the online version of the advisory may be updated with additional details over time. For details of OpenSSL severity classifications please see: https://www.openssl.org/policies/secpolicy.html
Wednesday, February 15, 2017
Install old Skype package into Fedora 25.
This is old package of skype and can be download from this link: skype Fedora 16 - 32 bit.
The install process of skype using the dnf command:
To run the skype just use the command skype under linux shell:
The install process of skype using the dnf command:
[root@localhost Downloads]# dnf install skype-4.3.0.37-fedora.i586.rpm
Last metadata expiration check: 2:47:29 ago on Wed Feb 15 12:56:31 2017.
Dependencies resolved.
================================================================================
Package Arch Version Repository
Size
================================================================================
Installing:
alsa-lib i686 1.1.1-2.fc25 fedora 411 k
alsa-plugins-pulseaudio
i686 1.1.1-1.fc25 fedora 45 k
bzip2-libs i686 1.0.6-21.fc25 updates 44 k
cairo i686 1.14.8-1.fc25 updates 750 k
...
xz-libs i686 5.2.2-2.fc24 fedora 98 k
zlib i686 1.2.8-10.fc24 fedora 98 k
Transaction Summary
================================================================================
Install 104 Packages
Total size: 90 M
Total download size: 71 M
Installed size: 264 M
Is this ok [y/N]: y
...
sni-qt.i686 0.2.6-7.fc24
sqlite-libs.i686 3.14.2-1.fc25
systemd-libs.i686 231-12.fc25
tcp_wrappers-libs.i686 7.6-83.fc25
xz-libs.i686 5.2.2-2.fc24
zlib.i686 1.2.8-10.fc24
Complete!
To run the skype just use the command skype under linux shell:
Posted by
Cătălin George Feștilă
Labels:
2017,
Fedora,
Fedora 25,
linux,
linux tools,
skype,
software,
tutorial,
tutorials
Thursday, February 9, 2017
Dealing with Mono under Fedora 25.
As you know the new Fedora come with dnf tool options you can use to define a DNF repository ( see link ).
This can be a problem for new users if want to install the mono development tools because they can get this error:
To fix that error you just need to use this commands:
Now you can start the monodevelop with this command:
I make a simple mono GTK# window into few steps:
The result of project come with this files:
This can be a problem for new users if want to install the mono development tools because they can get this error:
...
warning: /var/cache/dnf/download.mono-project.com_repo_centos-beta_-36cf85be8e79dffc/packages/mono-devel-4.8.0.483-0.xamarin.1.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID d3d831ef: NOKEY
The downloaded packages were saved in cache until the next successful transaction.
You can remove cached packages by executing 'dnf clean packages'.
Error: Public key for mono-devel-4.8.0.483-0.xamarin.1.x86_64.rpm is not installed
To fix that error you just need to use this commands:
[root@localhost mythcat]# rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
[root@localhost fedora25_test001]# dnf config-manager --add-repo http://jenkins.mono-project.com/repo/centos/
Adding repo from: http://jenkins.mono-project.com/repo/centos/
[root@localhost fedora25_test001]# dnf update
[root@localhost mythcat]# dnf install mono-devel
...
[root@localhost mythcat]#
dnf install monodevelop
Now you can start the monodevelop with this command:
[mythcat@localhost ~]$ monodevelop
I make a simple mono GTK# window into few steps:
The result of project come with this files:
[mythcat@localhost ~]$ cd fedora25_test001/
[mythcat@localhost fedora25_test001]$ ll
total 100408
-rw-rw-r--. 1 mythcat mythcat 4163 Feb 5 23:17 Assembly-CSharp.csproj
-rw-rw-r--. 1 mythcat mythcat 4163 Feb 5 23:17 Assembly-CSharp-vs.csproj
drwxr-xr-x. 2 mythcat mythcat 228 Feb 5 23:17 Assets
-rw-rw-r--. 1 mythcat mythcat 1452 Feb 5 23:17 fedora25_test001-csharp.sln
-rw-rw-r--. 1 mythcat mythcat 1448 Feb 5 23:17 fedora25_test001.sln
drwxr-xr-x. 4 mythcat mythcat 4096 Feb 5 23:39 Library
drwxr-xr-x. 2 mythcat mythcat 4096 Feb 5 23:39 ProjectSettings
drwxrwxr-x. 6 mythcat mythcat 143 Feb 5 23:18 test_Data
-rwxr-xr-x. 1 mythcat mythcat 49128408 Feb 5 23:18 test.x86
-rwxr-xr-x. 1 mythcat mythcat 53652633 Feb 5 23:18 test.x86_64
Posted by
Cătălin George Feștilă
Labels:
2017,
development,
Fedora,
Fedora 25,
linux tools,
mono,
tutorial,
tutorials
Sunday, February 5, 2017
Testing Unity 3D with Fedora 25 start with some bugs.
Today I will tested the Unity 3D with Fedora 25.
The hardware I used is:
video:
cpu:
The install can be used into root account:
First start of Unity come with this error:
I need to remove libgpg-error.so.0 file the from this folder:
rm /home/mythcat/Downloads/unity-editor-5.1.0f3/Editor/Data/Tools
After that the Unity Editor start well but another error come into default Unity scene.
Errors and problems I found:
- the new material cannot be added to the 3D object by drag and drop;
- the skybox come with a pink color without the sky I know from Windows OS (maybe some problems come from video: Shader compiler: internal error compiling shader snippet type=1 platform=0: Error reading external process - read 0 bytes and this Shader compiler: internal error compiling shader snippet type=1 platform=0: Error reading external process - read 0 bytes);
- the open C# script not work;
I make a Unity application - default scene and worked well.
I make a bug report here.
You can download the Unity sh file from here.
The hardware I used is:
video:
# lspci -v | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller])
cpu:
# lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 4
On-line CPU(s) list: 0-3
Thread(s) per core: 1
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 60
Model name: Intel(R) Core(TM) i5-4460 CPU @ 3.20GHz
Stepping: 3
CPU MHz: 2943.750
CPU max MHz: 3400.0000
CPU min MHz: 800.0000
BogoMIPS: 6385.65
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 6144K
NUMA node0 CPU(s): 0-3
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt dtherm ida arat pln pts
The install can be used into root account:
[mythcat@localhost Downloads]$ sh unity-editor-installer-5.1.0f3+2015082501.sh
This installer must be run as root.
[mythcat@localhost Downloads]$ su
Password:
[root@localhost Downloads]# sh unity-editor-installer-5.1.0f3+2015082501.sh
Installer for Unity 5.1.0f3
Press Enter to begin extracting to ./unity-editor-5.1.0f3
Unpacking Unity 5.1.0f3 ...
Extraction complete. Run ./unity-editor-5.1.0f3/Editor/Unity to begin
First start of Unity come with this error:
$ ./unity-editor-5.1.0f3/Editor/Unity
./unity-editor-5.1.0f3/Editor/Unity: /home/mythcat/Downloads/unity-editor-5.1.0f3/Editor/Data/Tools/libgpg-error.so.0: no version information available (required by /lib64/libgcrypt.so.20)
./unity-editor-5.1.0f3/Editor/Unity: relocation error: /lib64/libgcrypt.so.20: symbol gpg_err_set_errno, version GPG_ERROR_1.0 not defined in file libgpg-error.so.0 with link time reference
I need to remove libgpg-error.so.0 file the from this folder:
rm /home/mythcat/Downloads/unity-editor-5.1.0f3/Editor/Data/Tools
After that the Unity Editor start well but another error come into default Unity scene.
Errors and problems I found:
- the new material cannot be added to the 3D object by drag and drop;
- the skybox come with a pink color without the sky I know from Windows OS (maybe some problems come from video: Shader compiler: internal error compiling shader snippet type=1 platform=0: Error reading external process - read 0 bytes and this Shader compiler: internal error compiling shader snippet type=1 platform=0: Error reading external process - read 0 bytes);
- the open C# script not work;
I make a Unity application - default scene and worked well.
I make a bug report here.
You can download the Unity sh file from here.
Posted by
Cătălin George Feștilă
Labels:
2017,
error,
Fedora,
Fedora 25,
linux,
linux tools,
Unity 3D
Saturday, February 4, 2017
Blender 3D and LuxRender under Fedora 25 distro.
You need to run this commands for instaltion of Blender 3D:
You can run the Blender 3D software now. If you want to install the LuxRender then you need to use this command:
NOTE: The LuxRender will work with Blender 3D only if you start under root or super user shell.
Use the super user shell or root to activate Blender 3D addon for LuxRender.
If you don't do that the you will got one error.
This is the output of the Blender 3D and LuxRender install softwares under Fedora 25 distro. Let's start:
The install of LuxRender with all Fedora packages.
dnf install blender.x86_64
You can run the Blender 3D software now. If you want to install the LuxRender then you need to use this command:
dnf install LuxRender-blender.x86_64
NOTE: The LuxRender will work with Blender 3D only if you start under root or super user shell.
Use the super user shell or root to activate Blender 3D addon for LuxRender.
If you don't do that the you will got one error.
This is the output of the Blender 3D and LuxRender install softwares under Fedora 25 distro. Let's start:
[root@localhost mythcat]# dnf install blender.x86_64
Last metadata expiration check: 2:23:08 ago on Sat Feb 4 17:33:50 2017.
Dependencies resolved.
================================================================================
Package Arch Version Repository
Size
================================================================================
Installing:
Field3D x86_64 1.7.2-3.fc25 fedora 517 k
OpenColorIO x86_64 1.0.9-11.fc24 fedora 439 k
OpenEXR-libs x86_64 2.2.0-5.fc24 fedora 630 k
OpenImageIO x86_64 1.6.16-1.fc25 fedora 1.7 M
SuperLU x86_64 5.2.0-1.fc25 fedora 183 k
armadillo x86_64 7.600.2-1.fc25 updates 28 k
arpack x86_64 3.3.0-2.b0f7a60git.fc24 fedora 106 k
blas x86_64 3.6.1-2.fc25 fedora 400 k
blender x86_64 1:2.78a-4.fc25 updates 39 M
blender-fonts noarch 1:2.78a-4.fc25 updates 4.7 M
boost-atomic x86_64 1.60.0-10.fc25 updates 47 k
boost-chrono x86_64 1.60.0-10.fc25 updates 53 k
boost-locale x86_64 1.60.0-10.fc25 updates 278 k
boost-program-options x86_64 1.60.0-10.fc25 updates 165 k
boost-regex x86_64 1.60.0-10.fc25 updates 298 k
cfitsio x86_64 3.370-6.fc24 fedora 534 k
freexl x86_64 1.0.2-3.fc24 fedora 37 k
gdal-libs x86_64 2.1.2-5.fc25 updates 5.7 M
geos x86_64 3.5.0-3.fc25 fedora 553 k
google-droid-sans-fonts noarch 20120715-10.fc24 fedora 2.5 M
hdf5 x86_64 1.8.17-2.fc25 updates 1.7 M
ilmbase x86_64 2.2.0-5.fc24 fedora 105 k
jemalloc x86_64 4.4.0-2.fc25 updates 186 k
lapack x86_64 3.6.1-2.fc25 fedora 5.9 M
leptonica x86_64 1.74.1-1.fc25 updates 1.0 M
libdap x86_64 3.17.2-2.fc25 fedora 615 k
libgeotiff x86_64 1.4.0-7.fc24 fedora 712 k
libgta x86_64 1.0.7-3.fc24 fedora 38 k
libkml x86_64 1.3.0-3.fc25 fedora 332 k
libspatialite x86_64 4.3.0a-2.fc24 fedora 2.5 M
libspnav x86_64 0.2.3-3.fc24 fedora 17 k
libucil x86_64 0.9.10-12.fc24 fedora 73 k
libunicap x86_64 0.9.12-17.fc24 fedora 122 k
mariadb-common x86_64 3:10.1.20-1.fc25 updates 67 k
mariadb-config x86_64 3:10.1.20-1.fc25 updates 30 k
mariadb-libs x86_64 3:10.1.20-1.fc25 updates 655 k
netcdf x86_64 4.4.1.1-1.fc25 updates 740 k
ogdi x86_64 3.2.0-0.26.beta2.fc24 fedora 251 k
openal-soft x86_64 1.17.2-2.fc24 fedora 337 k
openblas-openmp x86_64 0.2.19-4.fc25 updates 4.2 M
opencv-contrib x86_64 3.1.0-8.fc25 fedora 3.4 M
opencv-core x86_64 3.1.0-8.fc25 fedora 3.4 M
openjpeg-libs x86_64 1.5.1-16.fc24 fedora 88 k
postgresql-libs x86_64 9.5.5-1.fc25 updates 246 k
proj x86_64 4.9.2-2.fc24 fedora 208 k
protobuf x86_64 2.6.1-5.fc25 fedora 355 k
pugixml x86_64 1.8-1.fc25 updates 92 k
tesseract x86_64 3.04.01-2.fc25 fedora 11 M
tinyxml x86_64 2.6.2-11.fc24 fedora 54 k
unixODBC x86_64 2.3.4-3.fc25 fedora 425 k
uriparser x86_64 0.8.4-3.fc25 fedora 54 k
yaml-cpp03 x86_64 0.3.0-9.fc24 fedora 151 k
Transaction Summary
================================================================================
Install 52 Packages
Total download size: 97 M
Installed size: 344 M
Is this ok [y/N]: y
Downloading Packages:
(1/52): OpenColorIO-1.0.9-11.fc24.x86_64.rpm 995 kB/s | 439 kB 00:00
(2/52): OpenEXR-libs-2.2.0-5.fc24.x86_64.rpm 3.1 MB/s | 630 kB 00:00
(3/52): OpenImageIO-1.6.16-1.fc25.x86_64.rpm 4.0 MB/s | 1.7 MB 00:00
(4/52): google-droid-sans-fonts-20120715-10.fc2 4.1 MB/s | 2.5 MB 00:00
(5/52): ilmbase-2.2.0-5.fc24.x86_64.rpm 1.1 MB/s | 105 kB 00:00
(6/52): libspnav-0.2.3-3.fc24.x86_64.rpm 216 kB/s | 17 kB 00:00
(7/52): openal-soft-1.17.2-2.fc24.x86_64.rpm 1.6 MB/s | 337 kB 00:00
(8/52): openjpeg-libs-1.5.1-16.fc24.x86_64.rpm 633 kB/s | 88 kB 00:00
(9/52): tinyxml-2.6.2-11.fc24.x86_64.rpm 632 kB/s | 54 kB 00:00
(10/52): yaml-cpp03-0.3.0-9.fc24.x86_64.rpm 285 kB/s | 151 kB 00:00
(11/52): Field3D-1.7.2-3.fc25.x86_64.rpm 1.0 MB/s | 517 kB 00:00
(12/52): opencv-core-3.1.0-8.fc25.x86_64.rpm 3.0 MB/s | 3.4 MB 00:01
(13/52): libucil-0.9.10-12.fc24.x86_64.rpm 865 kB/s | 73 kB 00:00
(14/52): libunicap-0.9.12-17.fc24.x86_64.rpm 1.3 MB/s | 122 kB 00:00
(15/52): blender-fonts-2.78a-4.fc25.noarch.rpm 1.0 MB/s | 4.7 MB 00:04
(16/52): protobuf-2.6.1-5.fc25.x86_64.rpm 846 kB/s | 355 kB 00:00
(17/52): opencv-contrib-3.1.0-8.fc25.x86_64.rpm 1.7 MB/s | 3.4 MB 00:02
(18/52): boost-locale-1.60.0-10.fc25.x86_64.rpm 699 kB/s | 278 kB 00:00
(19/52): boost-chrono-1.60.0-10.fc25.x86_64.rpm 605 kB/s | 53 kB 00:00
(20/52): tesseract-3.04.01-2.fc25.x86_64.rpm 3.4 MB/s | 11 MB 00:03
(21/52): leptonica-1.74.1-1.fc25.x86_64.rpm 867 kB/s | 1.0 MB 00:01
(22/52): cfitsio-3.370-6.fc24.x86_64.rpm 716 kB/s | 534 kB 00:00
(23/52): freexl-1.0.2-3.fc24.x86_64.rpm 468 kB/s | 37 kB 00:00
(24/52): geos-3.5.0-3.fc25.x86_64.rpm 723 kB/s | 553 kB 00:00
(25/52): libdap-3.17.2-2.fc25.x86_64.rpm 816 kB/s | 615 kB 00:00
(26/52): libgeotiff-1.4.0-7.fc24.x86_64.rpm 836 kB/s | 712 kB 00:00
(27/52): libgta-1.0.7-3.fc24.x86_64.rpm 399 kB/s | 38 kB 00:00
(28/52): libkml-1.3.0-3.fc25.x86_64.rpm 878 kB/s | 332 kB 00:00
(29/52): libspatialite-4.3.0a-2.fc24.x86_64.rpm 1.0 MB/s | 2.5 MB 00:02
(30/52): gdal-libs-2.1.2-5.fc25.x86_64.rpm 923 kB/s | 5.7 MB 00:06
(31/52): unixODBC-2.3.4-3.fc25.x86_64.rpm 1.5 MB/s | 425 kB 00:00
(32/52): ogdi-3.2.0-0.26.beta2.fc24.x86_64.rpm 669 kB/s | 251 kB 00:00
(33/52): proj-4.9.2-2.fc24.x86_64.rpm 1.2 MB/s | 208 kB 00:00
(34/52): uriparser-0.8.4-3.fc25.x86_64.rpm 390 kB/s | 54 kB 00:00
(35/52): boost-atomic-1.60.0-10.fc25.x86_64.rpm 310 kB/s | 47 kB 00:00
(36/52): boost-regex-1.60.0-10.fc25.x86_64.rpm 644 kB/s | 298 kB 00:00
(37/52): pugixml-1.8-1.fc25.x86_64.rpm 311 kB/s | 92 kB 00:00
(38/52): boost-program-options-1.60.0-10.fc25.x 566 kB/s | 165 kB 00:00
(39/52): armadillo-7.600.2-1.fc25.x86_64.rpm 275 kB/s | 28 kB 00:00
(40/52): SuperLU-5.2.0-1.fc25.x86_64.rpm 575 kB/s | 183 kB 00:00
(41/52): arpack-3.3.0-2.b0f7a60git.fc24.x86_64. 573 kB/s | 106 kB 00:00
(42/52): hdf5-1.8.17-2.fc25.x86_64.rpm 798 kB/s | 1.7 MB 00:02
(43/52): blas-3.6.1-2.fc25.x86_64.rpm 1.5 MB/s | 400 kB 00:00
(44/52): mariadb-libs-10.1.20-1.fc25.x86_64.rpm 570 kB/s | 655 kB 00:01
(45/52): mariadb-common-10.1.20-1.fc25.x86_64.r 450 kB/s | 67 kB 00:00
(46/52): netcdf-4.4.1.1-1.fc25.x86_64.rpm 772 kB/s | 740 kB 00:00
(47/52): postgresql-libs-9.5.5-1.fc25.x86_64.rp 686 kB/s | 246 kB 00:00
(48/52): jemalloc-4.4.0-2.fc25.x86_64.rpm 721 kB/s | 186 kB 00:00
(49/52): lapack-3.6.1-2.fc25.x86_64.rpm 870 kB/s | 5.9 MB 00:06
(50/52): mariadb-config-10.1.20-1.fc25.x86_64.r 168 kB/s | 30 kB 00:00
(51/52): openblas-openmp-0.2.19-4.fc25.x86_64.r 806 kB/s | 4.2 MB 00:05
(52/52): blender-2.78a-4.fc25.x86_64.rpm 980 kB/s | 39 MB 00:40
--------------------------------------------------------------------------------
Total 2.0 MB/s | 97 MB 00:48
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Installing : hdf5-1.8.17-2.fc25.x86_64 1/52
Installing : ilmbase-2.2.0-5.fc24.x86_64 2/52
Installing : boost-chrono-1.60.0-10.fc25.x86_64 3/52
Installing : OpenEXR-libs-2.2.0-5.fc24.x86_64 4/52
Installing : boost-regex-1.60.0-10.fc25.x86_64 5/52
Installing : boost-atomic-1.60.0-10.fc25.x86_64 6/52
Installing : proj-4.9.2-2.fc24.x86_64 7/52
Installing : geos-3.5.0-3.fc25.x86_64 8/52
Installing : freexl-1.0.2-3.fc24.x86_64 9/52
Installing : libunicap-0.9.12-17.fc24.x86_64 10/52
Installing : libucil-0.9.10-12.fc24.x86_64 11/52
Installing : libspatialite-4.3.0a-2.fc24.x86_64 12/52
Installing : libgeotiff-1.4.0-7.fc24.x86_64 13/52
Installing : ogdi-3.2.0-0.26.beta2.fc24.x86_64 14/52
Installing : boost-locale-1.60.0-10.fc25.x86_64 15/52
Installing : netcdf-4.4.1.1-1.fc25.x86_64 16/52
Installing : mariadb-config-3:10.1.20-1.fc25.x86_64 17/52
Installing : mariadb-common-3:10.1.20-1.fc25.x86_64 18/52
Installing : mariadb-libs-3:10.1.20-1.fc25.x86_64 19/52
Installing : openblas-openmp-0.2.19-4.fc25.x86_64 20/52
Installing : jemalloc-4.4.0-2.fc25.x86_64 21/52
Installing : postgresql-libs-9.5.5-1.fc25.x86_64 22/52
Installing : blas-3.6.1-2.fc25.x86_64 23/52
Installing : lapack-3.6.1-2.fc25.x86_64 24/52
Installing : arpack-3.3.0-2.b0f7a60git.fc24.x86_64 25/52
Installing : SuperLU-5.2.0-1.fc25.x86_64 26/52
Installing : armadillo-7.600.2-1.fc25.x86_64 27/52
Installing : boost-program-options-1.60.0-10.fc25.x86_64 28/52
Installing : Field3D-1.7.2-3.fc25.x86_64 29/52
Installing : pugixml-1.8-1.fc25.x86_64 30/52
Installing : uriparser-0.8.4-3.fc25.x86_64 31/52
Installing : libkml-1.3.0-3.fc25.x86_64 32/52
Installing : unixODBC-2.3.4-3.fc25.x86_64 33/52
Installing : libgta-1.0.7-3.fc24.x86_64 34/52
Installing : libdap-3.17.2-2.fc25.x86_64 35/52
Installing : cfitsio-3.370-6.fc24.x86_64 36/52
Installing : gdal-libs-2.1.2-5.fc25.x86_64 37/52
Installing : leptonica-1.74.1-1.fc25.x86_64 38/52
Installing : tesseract-3.04.01-2.fc25.x86_64 39/52
Installing : protobuf-2.6.1-5.fc25.x86_64 40/52
Installing : opencv-contrib-3.1.0-8.fc25.x86_64 41/52
Installing : opencv-core-3.1.0-8.fc25.x86_64 42/52
Installing : yaml-cpp03-0.3.0-9.fc24.x86_64 43/52
Installing : tinyxml-2.6.2-11.fc24.x86_64 44/52
Installing : OpenColorIO-1.0.9-11.fc24.x86_64 45/52
Installing : OpenImageIO-1.6.16-1.fc25.x86_64 46/52
Installing : openjpeg-libs-1.5.1-16.fc24.x86_64 47/52
Installing : openal-soft-1.17.2-2.fc24.x86_64 48/52
Installing : libspnav-0.2.3-3.fc24.x86_64 49/52
Installing : google-droid-sans-fonts-20120715-10.fc24.noarch 50/52
Installing : blender-fonts-1:2.78a-4.fc25.noarch 51/52
Installing : blender-1:2.78a-4.fc25.x86_64 52/52
Verifying : blender-1:2.78a-4.fc25.x86_64 1/52
Verifying : blender-fonts-1:2.78a-4.fc25.noarch 2/52
Verifying : OpenColorIO-1.0.9-11.fc24.x86_64 3/52
Verifying : OpenEXR-libs-2.2.0-5.fc24.x86_64 4/52
Verifying : OpenImageIO-1.6.16-1.fc25.x86_64 5/52
Verifying : google-droid-sans-fonts-20120715-10.fc24.noarch 6/52
Verifying : ilmbase-2.2.0-5.fc24.x86_64 7/52
Verifying : libspnav-0.2.3-3.fc24.x86_64 8/52
Verifying : openal-soft-1.17.2-2.fc24.x86_64 9/52
Verifying : openjpeg-libs-1.5.1-16.fc24.x86_64 10/52
Verifying : tinyxml-2.6.2-11.fc24.x86_64 11/52
Verifying : yaml-cpp03-0.3.0-9.fc24.x86_64 12/52
Verifying : Field3D-1.7.2-3.fc25.x86_64 13/52
Verifying : opencv-core-3.1.0-8.fc25.x86_64 14/52
Verifying : libucil-0.9.10-12.fc24.x86_64 15/52
Verifying : libunicap-0.9.12-17.fc24.x86_64 16/52
Verifying : opencv-contrib-3.1.0-8.fc25.x86_64 17/52
Verifying : protobuf-2.6.1-5.fc25.x86_64 18/52
Verifying : tesseract-3.04.01-2.fc25.x86_64 19/52
Verifying : boost-locale-1.60.0-10.fc25.x86_64 20/52
Verifying : boost-chrono-1.60.0-10.fc25.x86_64 21/52
Verifying : leptonica-1.74.1-1.fc25.x86_64 22/52
Verifying : gdal-libs-2.1.2-5.fc25.x86_64 23/52
Verifying : cfitsio-3.370-6.fc24.x86_64 24/52
Verifying : freexl-1.0.2-3.fc24.x86_64 25/52
Verifying : geos-3.5.0-3.fc25.x86_64 26/52
Verifying : libdap-3.17.2-2.fc25.x86_64 27/52
Verifying : libgeotiff-1.4.0-7.fc24.x86_64 28/52
Verifying : libgta-1.0.7-3.fc24.x86_64 29/52
Verifying : libkml-1.3.0-3.fc25.x86_64 30/52
Verifying : libspatialite-4.3.0a-2.fc24.x86_64 31/52
Verifying : ogdi-3.2.0-0.26.beta2.fc24.x86_64 32/52
Verifying : unixODBC-2.3.4-3.fc25.x86_64 33/52
Verifying : proj-4.9.2-2.fc24.x86_64 34/52
Verifying : uriparser-0.8.4-3.fc25.x86_64 35/52
Verifying : hdf5-1.8.17-2.fc25.x86_64 36/52
Verifying : boost-atomic-1.60.0-10.fc25.x86_64 37/52
Verifying : boost-regex-1.60.0-10.fc25.x86_64 38/52
Verifying : pugixml-1.8-1.fc25.x86_64 39/52
Verifying : boost-program-options-1.60.0-10.fc25.x86_64 40/52
Verifying : armadillo-7.600.2-1.fc25.x86_64 41/52
Verifying : SuperLU-5.2.0-1.fc25.x86_64 42/52
Verifying : arpack-3.3.0-2.b0f7a60git.fc24.x86_64 43/52
Verifying : lapack-3.6.1-2.fc25.x86_64 44/52
Verifying : blas-3.6.1-2.fc25.x86_64 45/52
Verifying : mariadb-libs-3:10.1.20-1.fc25.x86_64 46/52
Verifying : mariadb-common-3:10.1.20-1.fc25.x86_64 47/52
Verifying : netcdf-4.4.1.1-1.fc25.x86_64 48/52
Verifying : postgresql-libs-9.5.5-1.fc25.x86_64 49/52
Verifying : jemalloc-4.4.0-2.fc25.x86_64 50/52
Verifying : openblas-openmp-0.2.19-4.fc25.x86_64 51/52
Verifying : mariadb-config-3:10.1.20-1.fc25.x86_64 52/52
Installed:
Field3D.x86_64 1.7.2-3.fc25
OpenColorIO.x86_64 1.0.9-11.fc24
OpenEXR-libs.x86_64 2.2.0-5.fc24
OpenImageIO.x86_64 1.6.16-1.fc25
SuperLU.x86_64 5.2.0-1.fc25
armadillo.x86_64 7.600.2-1.fc25
arpack.x86_64 3.3.0-2.b0f7a60git.fc24
blas.x86_64 3.6.1-2.fc25
blender.x86_64 1:2.78a-4.fc25
blender-fonts.noarch 1:2.78a-4.fc25
boost-atomic.x86_64 1.60.0-10.fc25
boost-chrono.x86_64 1.60.0-10.fc25
boost-locale.x86_64 1.60.0-10.fc25
boost-program-options.x86_64 1.60.0-10.fc25
boost-regex.x86_64 1.60.0-10.fc25
cfitsio.x86_64 3.370-6.fc24
freexl.x86_64 1.0.2-3.fc24
gdal-libs.x86_64 2.1.2-5.fc25
geos.x86_64 3.5.0-3.fc25
google-droid-sans-fonts.noarch 20120715-10.fc24
hdf5.x86_64 1.8.17-2.fc25
ilmbase.x86_64 2.2.0-5.fc24
jemalloc.x86_64 4.4.0-2.fc25
lapack.x86_64 3.6.1-2.fc25
leptonica.x86_64 1.74.1-1.fc25
libdap.x86_64 3.17.2-2.fc25
libgeotiff.x86_64 1.4.0-7.fc24
libgta.x86_64 1.0.7-3.fc24
libkml.x86_64 1.3.0-3.fc25
libspatialite.x86_64 4.3.0a-2.fc24
libspnav.x86_64 0.2.3-3.fc24
libucil.x86_64 0.9.10-12.fc24
libunicap.x86_64 0.9.12-17.fc24
mariadb-common.x86_64 3:10.1.20-1.fc25
mariadb-config.x86_64 3:10.1.20-1.fc25
mariadb-libs.x86_64 3:10.1.20-1.fc25
netcdf.x86_64 4.4.1.1-1.fc25
ogdi.x86_64 3.2.0-0.26.beta2.fc24
openal-soft.x86_64 1.17.2-2.fc24
openblas-openmp.x86_64 0.2.19-4.fc25
opencv-contrib.x86_64 3.1.0-8.fc25
opencv-core.x86_64 3.1.0-8.fc25
openjpeg-libs.x86_64 1.5.1-16.fc24
postgresql-libs.x86_64 9.5.5-1.fc25
proj.x86_64 4.9.2-2.fc24
protobuf.x86_64 2.6.1-5.fc25
pugixml.x86_64 1.8-1.fc25
tesseract.x86_64 3.04.01-2.fc25
tinyxml.x86_64 2.6.2-11.fc24
unixODBC.x86_64 2.3.4-3.fc25
uriparser.x86_64 0.8.4-3.fc25
yaml-cpp03.x86_64 0.3.0-9.fc24
Complete!
The install of LuxRender with all Fedora packages.
[root@localhost mythcat]# dnf install LuxRender-blender.x86_64
Last metadata expiration check: 2:26:05 ago on Sat Feb 4 17:33:50 2017.
Dependencies resolved.
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
LuxRender x86_64 1.6-4.fc25 updates 671 k
LuxRender-blender x86_64 1.6-4.fc25 updates 281 k
LuxRender-core x86_64 1.6-4.fc25 updates 131 k
LuxRender-lib x86_64 1.6-4.fc25 updates 5.2 M
boost-serialization x86_64 1.60.0-10.fc25 updates 149 k
embree x86_64 2.13.0-2.fc25 updates 3.3 M
tbb x86_64 2017-7.20161128.fc25 updates 135 k
Transaction Summary
================================================================================
Install 7 Packages
Total download size: 9.9 M
Installed size: 33 M
Is this ok [y/N]: y
Downloading Packages:
(1/7): LuxRender-core-1.6-4.fc25.x86_64.rpm 427 kB/s | 131 kB 00:00
(2/7): LuxRender-blender-1.6-4.fc25.x86_64.rpm 687 kB/s | 281 kB 00:00
(3/7): boost-serialization-1.60.0-10.fc25.x86_6 1.4 MB/s | 149 kB 00:00
(4/7): LuxRender-1.6-4.fc25.x86_64.rpm 456 kB/s | 671 kB 00:01
(5/7): tbb-2017-7.20161128.fc25.x86_64.rpm 531 kB/s | 135 kB 00:00
(6/7): embree-2.13.0-2.fc25.x86_64.rpm 1.1 MB/s | 3.3 MB 00:02
(7/7): LuxRender-lib-1.6-4.fc25.x86_64.rpm 1.3 MB/s | 5.2 MB 00:04
--------------------------------------------------------------------------------
Total 1.2 MB/s | 9.9 MB 00:08
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Installing : boost-serialization-1.60.0-10.fc25.x86_64 1/7
Installing : tbb-2017-7.20161128.fc25.x86_64 2/7
Installing : embree-2.13.0-2.fc25.x86_64 3/7
Installing : LuxRender-lib-1.6-4.fc25.x86_64 4/7
Installing : LuxRender-core-1.6-4.fc25.x86_64 5/7
Installing : LuxRender-1.6-4.fc25.x86_64 6/7
Installing : LuxRender-blender-1.6-4.fc25.x86_64 7/7
Verifying : LuxRender-blender-1.6-4.fc25.x86_64 1/7
Verifying : LuxRender-1.6-4.fc25.x86_64 2/7
Verifying : LuxRender-core-1.6-4.fc25.x86_64 3/7
Verifying : LuxRender-lib-1.6-4.fc25.x86_64 4/7
Verifying : boost-serialization-1.60.0-10.fc25.x86_64 5/7
Verifying : embree-2.13.0-2.fc25.x86_64 6/7
Verifying : tbb-2017-7.20161128.fc25.x86_64 7/7
Installed:
LuxRender.x86_64 1.6-4.fc25 LuxRender-blender.x86_64 1.6-4.fc25
LuxRender-core.x86_64 1.6-4.fc25 LuxRender-lib.x86_64 1.6-4.fc25
boost-serialization.x86_64 1.60.0-10.fc25 embree.x86_64 2.13.0-2.fc25
tbb.x86_64 2017-7.20161128.fc25
Complete!
Subscribe to:
Posts (Atom)