Tumgik
#ScientificLinux
amrselim · 4 years
Video
youtube
تاكد انك مشترك في القناة 💯 ومفعل الجرس عشان يوصلك كل جديد 🔔 وما تنساش تعمل لايك للفيديو 👍 https://bit.ly/36nGo0L شير مشاركة #BIMarabia اشترك في القناة لمتابعة الشروحات الجديدة videos https://www.youtube.com/channel/UCZYaOLTtPmOQX1fgtDFW52Q?sub_confirmation=1 بيم ارابيا https://bit.ly/1TSqEbr Places to find me! https://bit.ly/OcqQ6x https://bit.ly/2nqASDv Wordpress: https://bit.ly/SsszPw Instagram: https://bit.ly/2JY3wZP Twitter: https://twitter.com/omarselm #4 4mLinux #9 9Front #A AbsoluteLinux AcademiX AirSlax AlpineLinux ALT Linux Anarchy Linux Android-x86 Antergos Antivirus Live CD antiX Linux Aptosid Arabbix ArchBang ArchLabs Archlinux Archman ArchStrike ArcoLinux ArtixLinux AryaLinux Astra Linux Austrumi AV Linux #B BackBoxLinux Bee free BigLinux Bio-Linux BlackArch BlackBox Linux BlackLab BlackPantherOS BlackSlash blag BlankOn Bluestar Bodhi BOSS Linux BunsenLabs ByzantineOS #C CAELinux Caine Caixa Magica Calculate Linux Calculate Linux Desktop Canaima CentOS Chakra ChaletOS ChameleonOS ClearOS Clonezilla CommodoreOS Condres OS ConnochaetOS CRUX Cucumber #D Damn Small Linux Damn Small Linux Not Dapper Linux Daylight Linux Debian Debian facile Debian-FAI DebianEdu deepin DEFT Devil-Linux Devuan DragonFly BSD Dragora DuZeru Dyne:bolic #E EasyOS Edubuntu elementaryOS Elive Linux Emmabuntüs Emmi OS EndeavourOS Endless OS EnsoOS EpiLinux Escuelas Linux Estobuntu Estrellaroja Exe GNU Linux ExTiX #F Fatdog64 Fedora Atomic Fedora Server Fedora Silverblue Ostree Fedora Spins Fedora Workstation FerenOS Finnix FreeBSD FreeDOS FreeNAS Frenzy Frugalware Funtoo FuryBSD #G G4L GeckoLinux Gentoo GhostBSD GNewSense GoboLinux Gparted GreenieLinux GRML GuixSD #H Haiku hamOS Hannah Montana Linux HardenedBSD Heads Huayra Hyperbola #I io GNU Linux #K Kali Linux Kanotix KaOS KDE neon Knoppix Kodachi KolibriOS Korora Kubuntu Kubuntu Focus Kwort #L Linux Lite Linux Mint LinuxConsole Linuxfx LiveRaizo LMDE Lubuntu LuninuxOS LXLE OS #M Macpup Mageia MakuluLinux Manjaro Matriux MauiLinux MenuetOS MidnightBSD MilagrOS MinerOS Minimal Linux MiniNo MINIX Modicia Musix Muslimbuntu MX Linux #N Nanolinux Nas4Free Neptune NetBSD NethServer Netrunner Nitrux NixOs Nova NST NuTyX #O obarun Omni OS OpenBSD openEuler OpenIndiana OpenMandriva openSUSE OPNsense OracleLinux OS108 OSGeo live OviOS #P Parabola CLI Parabola LXDE Pardus Parrot Parrot Home Parrot Security Parrot Studio Parrot Variant Parsix Parted Magic PCLinuxOS PeachOSI PearOS Pentoo Peppermint PeppermintOS Pinguy PinguyOS Pisi Linux Plamo Linux Plasma Mobile PLD Linux plopLinux PNPI-OS PointLinux Pop!_OS PORTEUS PrimTux Puppy Linux PureOS #Q Q4OS QubesOS Quirky #R Raspberry Pi Desktop ReactOS Reborn OS Red Star OS Redcore redox Refracta Regolith Linux Rescatux RevengeOS RoboLinux Rockstor ROSA FRESH Runtu #S Sabayon Sabily SalentOS Salix ScientificLinux SELKS SemiCode OS Septor Siduction Simplicity Linux SimplyMEPIS Slackel Slackware Slax SliTaz Snallinux Solus SolydK SolydX SparkyLinux Springdale Stresslinux SubgraphOS SuperGamer susOS SwagArch SystemRescueCd #T Tails Tanglu TempleOS Tiny Core Trident Trisquel TROM-Jaro TrueOS Tsurugi Linux TurnKey Linux Tux N Vape #U Ubuntu Ubuntu Budgie Ubuntu Cinnamon Ubuntu Mate Ubuntu Server Ubuntu Studio Ubuntu Unity Remix UbuntuDDE UbuntuKylin Ufficio Zero Ultimate Edition Ultimate Linux Uruk #V VectorLinux Venom Linux VineLinux VoidLinux Voyager VyOS #W WattOs #X Xubuntu #Z Zentyal Zenwalk Zevenet
0 notes
Text
https://rpmfusion.org/ScientificLinux
#[]
0 notes
for-the-user · 7 years
Text
vagrant vboxguestadditions prob-lame-os
$ vagrant up . . [bambam] GuestAdditions versions on your host (4.3.28) and guest (4.3.30) do not match. . . No package kernel-devel-2.6.32-573.7.1.el6.x86_64 available. . . Building the main Guest Additions module [FAILED] (Look at /var/log/vboxadd-install.log to find out what went wrong) . . . ==> bambam: Mounting shared folders... bambam: /vagrant => /Users/bambam/Vagrant/bambam/ Vagrant was unable to mount VirtualBox shared folders. This is usually because the filesystem "vboxsf" is not available. This filesystem is made available via the VirtualBox Guest Additions and kernel module. Please verify that these guest additions are properly installed in the guest. This is not a bug in Vagrant and is usually caused by a faulty Vagrant box. For context, the command attempted was: mount -t vboxsf -o uid=500,gid=500 vagrant /vagrant The error output from the command was:
...so lame...
Well once I tried this and it worked.
$ vagrant plugin install vagrant-vbguest Installing the 'vagrant-vbguest' plugin. This can take a few minutes... Installed the plugin 'vagrant-vbguest (0.13.0)'!
Not this time, so I had to log into the box and check the guest additions symlink was in the right place.
$ vagrant ssh [vagrant@bambam ~]$ sudo ln -s /opt/VBoxGuestAdditions-4.3.28/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions [vagrant@bambam ~]# ls -l /usr/lib/VBoxGuestAdditions lrwxrwxrwx 1 root root 53 Apr 9 17:09 /usr/lib/VBoxGuestAdditions -> /opt/VBoxGuestAdditions-4.3.28/lib/VBoxGuestAdditions
Worked once before, but unfortunately not this time :( Some guy on stack overflow recommended turning off the auto update by adding this to the Vagrantfile:
config.vbguest.auto_update = false
...Didn't work. I went over the original output about the failure,,,
No package kernel-devel-2.6.32-573.7.1.el6.x86_64 available.
I check the kernel
[vagrant@bambam ~]$ uname -r 2.6.32-642.6.1.el6.x86_64 [vagrant@bambam ~]$ ls -l /usr/src/kernels/ total 4 drwxr-xr-x. 22 root root 4096 Oct 23 08:24 2.6.32-642.6.1.el6.x86_64
Hmmm...
[vagrant@bambam ~]$ sudo yum list available | grep kernel-devel kernel-devel.x86_64 2.6.32-696.el6 base
Hmmmmmmmmm.........
[vagrant@bambam ~]$ curl 'ftp://mirror.switch.ch/pool/4/mirror/scientificlinux/6.7/x86_64/updates/fastbugs/kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm' -o kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 9.9M 100 9.9M 0 0 2844k 0 0:00:03 0:00:03 --:--:-- 4032k [vagrant@bambam ~]$ sudo yum install kernel-devel-2.6.32-573.7.1.el6.x86_64.rpm [vagrant@bambam ~]$ sudo echo $KERN_DIR /usr/src/kernels/2.6.32-696.el6.x86_64 [vagrant@bambam ~]$ uname -r 2.6.32-573.7.1.el6.x86_64 [vagrant@bambam ~]$ ls -l /usr/src/kernels/ total 12 drwxr-xr-x 22 root root 4096 Apr 9 18:04 2.6.32-573.7.1.el6.x86_64 drwxr-xr-x. 22 root root 4096 Oct 23 08:24 2.6.32-642.6.1.el6.x86_64 [vagrant@bambam ~]$ echo export KERN_DIR=/usr/src/kernels/2.6.32-573.7.1.el6.x86_64 >> ~/.bashrc [vagrant@bambam ~]$ source ~/.bashrc [vagrant@bambam ~]$ sudo echo $KERN_DIR /usr/src/kernels/2.6.32-573.7.1.el6.x86_64
Hhhhhmmmmmmmmmmmmmmmmmm..........
$ vagrant reload . . [bambam] GuestAdditions 4.3.28 running --- OK. ==> bambam: Mounting shared folders... bambam: /vagrant => /Users/bambam/Vagrant/bambam bambam: /var/www/bambam => /Users/bambam/Vagrant/bambam
HHHHMMMMMMMMMMM!!!!!
On ubuntu/trusty64 shit box
$ vagrant plugin install vagrant-vbguest $ vagrant ssh $ sudo apt-get install -y virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11 $ sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual $ sudo apt-get autoremove $ vagrant reload ==> pewpew: Machine booted and ready! [pewpew] GuestAdditions versions on your host (5.1.6) and guest (4.3.36) do not match. virtualbox-guest-utils: unrecognized service rmmod: ERROR: Module vboxsf is not currently loaded rmmod: ERROR: Module vboxguest is not currently loaded Reading package lists... Building dependency tree... Reading state information... Package 'virtualbox-guest-dkms' is not installed, so not removed Package 'virtualbox-guest-utils' is not installed, so not removed Package 'virtualbox-guest-x11' is not installed, so not removed 0 upgraded, 0 newly installed, 0 to remove and 146 not upgraded. Reading package lists... Done Building dependency tree Reading state information... Done dkms is already the newest version. dkms set to manually installed. linux-headers-3.13.0-98-generic is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 146 not upgraded. Copy iso file /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso mount: block device /tmp/VBoxGuestAdditions.iso is write-protected, mounting read-only Installing Virtualbox Guest Additions 5.1.6 - guest version is 4.3.36 Verifying archive integrity... All good. Uncompressing VirtualBox 5.1.6 Guest Additions for Linux........... VirtualBox Guest Additions installer Copying additional installer modules ... Installing additional modules ... vboxadd.sh: Building Guest Additions kernel modules. vboxadd.sh: Starting the VirtualBox Guest Additions. Could not find the X.Org or XFree86 Window System, skipping. vboxadd.sh: Starting the VirtualBox Guest Additions. Could not find the X.Org or XFree86 Window System, skipping. Got different reports about installed GuestAdditions version: Virtualbox on your host claims: 4.3.36 VBoxService inside the vm claims: 5.1.6 Going on, assuming VBoxService is correct... Got different reports about installed GuestAdditions version: Virtualbox on your host claims: 4.3.36 VBoxService inside the vm claims: 5.1.6 Going on, assuming VBoxService is correct... ==> pewpew: Setting hostname...
0 notes
neilad-blog · 11 years
Text
Install Java and Scala SL6.x
# http://www.oracle.com/technetwork/java/javase/downloads/index.html
sudo rpm -Uvh jdk-7u51-linux-x64.rpm
# scala
# http://www.scala-lang.org/download # http://lancegatlin.org/tech/centos-6-install-scala
wget http://www.scala-lang.org/files/archive/scala-2.10.3.tgz
wget http://www.scala-lang.org/downloads/distrib/files/scala-2.10.1.tgz tar xvf scala-2.10.1.tgz sudo mv scala-2.10.1 /usr/lib sudo ln -s /usr/lib/scala-2.10.1 /usr/lib/scala
nano /etc/profile.d/scala.sh export PATH=$PATH:/usr/lib/scala/bin
nano ~/.bash_profile
#type java
# export JAVA_HOME=/usr/java/default
source ~/.bash_profile
0 notes
dummdida · 11 years
Text
Binary diff between libc from ScientificLinux and CentOS
In our IRC channel the question arose how we can see the difference between binaries build on different systems (SL and CentOS in this case).
Our initial test binary was created using this snippet:
yum install vala glib2-devel echo 'print("Hello");' > a.vala valac a.vala && objdump -D a
We came then up with this small script to automate the diff creation:
dump() { TMPFILE=$(mktemp) objdump -D $1 > $TMPFILE cat $TMPFILE | sed "s/^[[:space:]]\+[0-9a-f]\+//" rm $TMPFILE } cmp_dump() { dump $1 > dump_a dump $2 > dump_b diff -u dump_a dump_b rm dump_a dump_b } # Usage: cmp_dump first-binary second-binary $@
So to compare two binaries and return the diff between their obj dump output (without addresses) you run:
bash cmp_dump.sh libc-sl libc-centos
This lead us to this result for libc from CentOS and ScientificLinux:
--- dump_a 2013-09-11 12:39:30.799452944 +0200 +++ dump_b 2013-09-11 12:39:32.061467634 +0200 @@ -1,5 +1,5 @@ -libc-2.12.so-centos6: file format elf64-x86-64 +libc-2.12.so-sl6: file format elf64-x86-64 Disassembly of section .note.gnu.build-id: @@ -13,13 +13,18 @@ : 00 00 add %al,(%rax) : 47 rex.RXB : 4e 55 rex.WRX push %rbp -: 00 34 95 f7 bc a6 d9 add %dh,-0x26594309(,%rdx,4) -: 9e sahf -: 30 1d 7c 9f 95 9a xor %bl,-0x656a6084(%rip) # ffffffff9a95a209 <_end+0xffffffff9a5c7961> -: 87 0f xchg %ecx,(%rdi) -: 8e 77 c0 mov -0x40(%rdi),%? -: f0 lock -: b7 .byte 0xb7 +: 00 9a df 3d a2 9c add %bl,-0x635dc221(%rdx) +: 0c 20 or $0x20,%al +: 70 7f jo 308 <data.10540+0x2a8> +: ed in (%dx),%eax +: 6d insl (%dx),%es:(%rdi) +: 49 9a rex.WB (bad) +: 2b 20 sub (%rax),%esp +: 0e (bad) +: 67 addr32 +: 6b .byte 0x6b +: 68 .byte 0x68 +: b1 .byte 0xb1 Disassembly of section .note.ABI-tag: @@ -486756,6 +486761,5 @@ : 62 (bad) : 75 67 jne 79 <data.10540+0x19> : 00 00 add %al,(%rax) -: c7 (bad) -: fc cld -: 87 37 xchg %esi,(%rdi) +: da 38 fidivrl (%rax) +: 73 e0 jae fffffffffffffff8 <_end+0xffffffffffc6d750>
This ain't a big difference for a 2M+ file, is it?
So is this a valuable way to compare binaries?
At the end there is the question: Can this be used to compare if binaries from an RPM were really created from the sources of it's SRPM?
0 notes
amrselim · 4 years
Video
youtube
تاكد انك مشترك في القناة 💯 ومفعل الجرس عشان يوصلك كل جديد 🔔 وما تنساش تعمل لايك للفيديو 👍 https://bit.ly/36nGo0L شير مشاركة #BIMarabia اشترك في القناة لمتابعة الشروحات الجديدة videos https://www.youtube.com/channel/UCZYaOLTtPmOQX1fgtDFW52Q?sub_confirmation=1 بيم ارابيا https://bit.ly/1TSqEbr Places to find me! https://bit.ly/OcqQ6x https://bit.ly/2nqASDv Wordpress: https://bit.ly/SsszPw Instagram: https://bit.ly/2JY3wZP Twitter: https://twitter.com/omarselm #4 4mLinux #9 9Front #A AbsoluteLinux AcademiX AirSlax AlpineLinux ALT Linux Anarchy Linux Android-x86 Antergos Antivirus Live CD antiX Linux Aptosid Arabbix ArchBang ArchLabs Archlinux Archman ArchStrike ArcoLinux ArtixLinux AryaLinux Astra Linux Austrumi AV Linux #B BackBoxLinux Bee free BigLinux Bio-Linux BlackArch BlackBox Linux BlackLab BlackPantherOS BlackSlash blag BlankOn Bluestar Bodhi BOSS Linux BunsenLabs ByzantineOS #C CAELinux Caine Caixa Magica Calculate Linux Calculate Linux Desktop Canaima CentOS Chakra ChaletOS ChameleonOS ClearOS Clonezilla CommodoreOS Condres OS ConnochaetOS CRUX Cucumber #D Damn Small Linux Damn Small Linux Not Dapper Linux Daylight Linux Debian Debian facile Debian-FAI DebianEdu deepin DEFT Devil-Linux Devuan DragonFly BSD Dragora DuZeru Dyne:bolic #E EasyOS Edubuntu elementaryOS Elive Linux Emmabuntüs Emmi OS EndeavourOS Endless OS EnsoOS EpiLinux Escuelas Linux Estobuntu Estrellaroja Exe GNU Linux ExTiX #F Fatdog64 Fedora Atomic Fedora Server Fedora Silverblue Ostree Fedora Spins Fedora Workstation FerenOS Finnix FreeBSD FreeDOS FreeNAS Frenzy Frugalware Funtoo FuryBSD #G G4L GeckoLinux Gentoo GhostBSD GNewSense GoboLinux Gparted GreenieLinux GRML GuixSD #H Haiku hamOS Hannah Montana Linux HardenedBSD Heads Huayra Hyperbola #I io GNU Linux #K Kali Linux Kanotix KaOS KDE neon Knoppix Kodachi KolibriOS Korora Kubuntu Kubuntu Focus Kwort #L Linux Lite Linux Mint LinuxConsole Linuxfx LiveRaizo LMDE Lubuntu LuninuxOS LXLE OS #M Macpup Mageia MakuluLinux Manjaro Matriux MauiLinux MenuetOS MidnightBSD MilagrOS MinerOS Minimal Linux MiniNo MINIX Modicia Musix Muslimbuntu MX Linux #N Nanolinux Nas4Free Neptune NetBSD NethServer Netrunner Nitrux NixOs Nova NST NuTyX #O obarun Omni OS OpenBSD openEuler OpenIndiana OpenMandriva openSUSE OPNsense OracleLinux OS108 OSGeo live OviOS #P Parabola CLI Parabola LXDE Pardus Parrot Parrot Home Parrot Security Parrot Studio Parrot Variant Parsix Parted Magic PCLinuxOS PeachOSI PearOS Pentoo Peppermint PeppermintOS Pinguy PinguyOS Pisi Linux Plamo Linux Plasma Mobile PLD Linux plopLinux PNPI-OS PointLinux Pop!_OS PORTEUS PrimTux Puppy Linux PureOS #Q Q4OS QubesOS Quirky #R Raspberry Pi Desktop ReactOS Reborn OS Red Star OS Redcore redox Refracta Regolith Linux Rescatux RevengeOS RoboLinux Rockstor ROSA FRESH Runtu #S Sabayon Sabily SalentOS Salix ScientificLinux SELKS SemiCode OS Septor Siduction Simplicity Linux SimplyMEPIS Slackel Slackware Slax SliTaz Snallinux Solus SolydK SolydX SparkyLinux Springdale Stresslinux SubgraphOS SuperGamer susOS SwagArch SystemRescueCd #T Tails Tanglu TempleOS Tiny Core Trident Trisquel TROM-Jaro TrueOS Tsurugi Linux TurnKey Linux Tux N Vape #U Ubuntu Ubuntu Budgie Ubuntu Cinnamon Ubuntu Mate Ubuntu Server Ubuntu Studio Ubuntu Unity Remix UbuntuDDE UbuntuKylin Ufficio Zero Ultimate Edition Ultimate Linux Uruk #V VectorLinux Venom Linux VineLinux VoidLinux Voyager VyOS #W WattOs #X Xubuntu #Z Zentyal Zenwalk Zevenet by BIMarabia
1 note · View note
amrselim · 4 years
Video
youtube
جرب لينكس اونلاين دون تنصيب تاكد انك مشترك في القناة 💯 ومفعل الجرس عشان يوصلك كل جديد 🔔 وما تنساش تعمل لايك للفيديو 👍 https://bit.ly/36nGo0L شير مشاركة #BIMarabia اشترك في القناة لمتابعة الشروحات الجديدة videos https://www.youtube.com/channel/UCZYaOLTtPmOQX1fgtDFW52Q?sub_confirmation=1 بيم ارابيا https://bit.ly/1TSqEbr Places to find me! https://bit.ly/OcqQ6x https://bit.ly/2nqASDv Wordpress: https://bit.ly/SsszPw Instagram: https://bit.ly/2JY3wZP Twitter: https://twitter.com/omarselm #4 4mLinux #9 9Front #A AbsoluteLinux AcademiX AirSlax AlpineLinux ALT Linux Anarchy Linux Android-x86 Antergos Antivirus Live CD antiX Linux Aptosid Arabbix ArchBang ArchLabs Archlinux Archman ArchStrike ArcoLinux ArtixLinux AryaLinux Astra Linux Austrumi AV Linux #B BackBoxLinux Bee free BigLinux Bio-Linux BlackArch BlackBox Linux BlackLab BlackPantherOS BlackSlash blag BlankOn Bluestar Bodhi BOSS Linux BunsenLabs ByzantineOS #C CAELinux Caine Caixa Magica Calculate Linux Calculate Linux Desktop Canaima CentOS Chakra ChaletOS ChameleonOS ClearOS Clonezilla CommodoreOS Condres OS ConnochaetOS CRUX Cucumber #D Damn Small Linux Damn Small Linux Not Dapper Linux Daylight Linux Debian Debian facile Debian-FAI DebianEdu deepin DEFT Devil-Linux Devuan DragonFly BSD Dragora DuZeru Dyne:bolic #E EasyOS Edubuntu elementaryOS Elive Linux Emmabuntüs Emmi OS EndeavourOS Endless OS EnsoOS EpiLinux Escuelas Linux Estobuntu Estrellaroja Exe GNU Linux ExTiX #F Fatdog64 Fedora Atomic Fedora Server Fedora Silverblue Ostree Fedora Spins Fedora Workstation FerenOS Finnix FreeBSD FreeDOS FreeNAS Frenzy Frugalware Funtoo FuryBSD #G G4L GeckoLinux Gentoo GhostBSD GNewSense GoboLinux Gparted GreenieLinux GRML GuixSD #H Haiku hamOS Hannah Montana Linux HardenedBSD Heads Huayra Hyperbola #I io GNU Linux #K Kali Linux Kanotix KaOS KDE neon Knoppix Kodachi KolibriOS Korora Kubuntu Kubuntu Focus Kwort #L Linux Lite Linux Mint LinuxConsole Linuxfx LiveRaizo LMDE Lubuntu LuninuxOS LXLE OS #M Macpup Mageia MakuluLinux Manjaro Matriux MauiLinux MenuetOS MidnightBSD MilagrOS MinerOS Minimal Linux MiniNo MINIX Modicia Musix Muslimbuntu MX Linux #N Nanolinux Nas4Free Neptune NetBSD NethServer Netrunner Nitrux NixOs Nova NST NuTyX #O obarun Omni OS OpenBSD openEuler OpenIndiana OpenMandriva openSUSE OPNsense OracleLinux OS108 OSGeo live OviOS #P Parabola CLI Parabola LXDE Pardus Parrot Parrot Home Parrot Security Parrot Studio Parrot Variant Parsix Parted Magic PCLinuxOS PeachOSI PearOS Pentoo Peppermint PeppermintOS Pinguy PinguyOS Pisi Linux Plamo Linux Plasma Mobile PLD Linux plopLinux PNPI-OS PointLinux Pop!_OS PORTEUS PrimTux Puppy Linux PureOS #Q Q4OS QubesOS Quirky #R Raspberry Pi Desktop ReactOS Reborn OS Red Star OS Redcore redox Refracta Regolith Linux Rescatux RevengeOS RoboLinux Rockstor ROSA FRESH Runtu #S Sabayon Sabily SalentOS Salix ScientificLinux SELKS SemiCode OS Septor Siduction Simplicity Linux SimplyMEPIS Slackel Slackware Slax SliTaz Snallinux Solus SolydK SolydX SparkyLinux Springdale Stresslinux SubgraphOS SuperGamer susOS SwagArch SystemRescueCd #T Tails Tanglu TempleOS Tiny Core Trident Trisquel TROM-Jaro TrueOS Tsurugi Linux TurnKey Linux Tux N Vape #U Ubuntu Ubuntu Budgie Ubuntu Cinnamon Ubuntu Mate Ubuntu Server Ubuntu Studio Ubuntu Unity Remix UbuntuDDE UbuntuKylin Ufficio Zero Ultimate Edition Ultimate Linux Uruk #V VectorLinux Venom Linux VineLinux VoidLinux Voyager VyOS #W WattOs #X Xubuntu #Z Zentyal Zenwalk Zevenet May 22, 2020 at 03:40PM by BIMarabia
0 notes
neilad-blog · 11 years
Text
Compiling PyOpenCL 2013 on Scientific Linux 6.x
# pre
sudo easy_install pip
yum install tkinter python-imaging python-imaging-tk
git clone http://git.tiker.net/trees/pyopencl.git
cd pyopencl
git submodule init
git submodule update
python configure.py --cl-enable-gl \
  --cl-inc-dir=/usr/local/cuda-5.5/include \
  --cl-lib-dir=/usr/local/cuda-5.5/lib64 \
0 notes
neilad-blog · 11 years
Text
Cuda 5.5 on Scientic Linux 6.x
# from fresh install of SL6
su
visudo  # add self to the users
sudo yum -y install openssh-server openssh-clients
sudo chkconfig sshd on
sudo service sshd start
sudo yum install python-pip.noarch PyOpenGL.noarch \
elrepo-release \
python-devel boost mesa-libGL-devel mesa-libGLU-devel libXi-devel libXmu-devel freeglut-devel
# # # cuda pre-install
#edit /etc/grub.conf, add
rdblacklist=nouveau 3
# reboot
sudo yum install elrepo-release
sudo yum install kmod-nvidia nvidia-x11-drv
# then run sh cuda_5.x_linux.run as su
don't install driver!
# set gcc LD path (x64) to library files
# add /usr/local/cuda-5.5/bin to path
# Compile samples
0 notes