Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
sonic-pi /
server /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
clear-logs.rb
717
B
-rw-r--r--
compile-extensions.rb
2.93
KB
-rwxr-xr-x
doc.rb
940
B
-rwxr-xr-x
exit-script.rb
847
B
-rw-r--r--
i18n-tool.rb
7.08
KB
-rwxr-xr-x
init-script.rb
863
B
-rw-r--r--
launch-gce
3.58
KB
-rwxr-xr-x
port-discovery.rb
1.95
KB
-rw-r--r--
qt-doc.rb
9.47
KB
-rwxr-xr-x
sonic-pi-server.rb
15.23
KB
-rwxr-xr-x
task-clear.rb
3.1
KB
-rw-r--r--
task-register.rb
1.02
KB
-rw-r--r--
test.rb
4.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : compile-extensions.rb
#!/usr/bin/env ruby #-- # This file is part of Sonic Pi: http://sonic-pi.net # Full project source: https://github.com/samaaron/sonic-pi # License: https://github.com/samaaron/sonic-pi/blob/master/LICENSE.md # # Copyright 2013, 2014, 2015, 2016 by Sam Aaron (http://sam.aaron.name). # All rights reserved. # # Permission is granted for use, copying, modification, and # distribution of modified versions of this work as long as this # notice is included. #++ # This file will build all native dependencies required by the vendored # libraries. Ensure you execute this file with the specific version of # Ruby you intend to package with Sonic Pi. require 'fileutils' require 'rbconfig' ruby_api = RbConfig::CONFIG['ruby_version'] os = case RUBY_PLATFORM when /.*arm.*-linux.*/ :raspberry when /.*linux.*/ :linux when /.*darwin.*/ :osx when /.*mingw.*/ :windows else RUBY_PLATFORM end native_dir = File.dirname(__FILE__) + "/../rb-native/#{ruby_api}" puts "Clearing #{native_dir}" FileUtils.rm_rf native_dir puts "Creating #{native_dir}" FileUtils.mkdir_p native_dir # Rugged is used for storing the user's ruby music scripts in Git # FFI is used for MIDI lib support native_ext_dirs = [ File.expand_path(File.dirname(__FILE__) + '/../vendor/rugged-0.26.0/ext/rugged'), File.expand_path(File.dirname(__FILE__) + '/../vendor/ffi-1.9.17/ext/ffi_c/'), File.expand_path(File.dirname(__FILE__) + '/../vendor/atomic/ext'), File.expand_path(File.dirname(__FILE__) + '/../vendor/ruby-prof-0.15.8/ext/ruby_prof/'), File.expand_path(File.dirname(__FILE__) + '/../vendor/interception/ext/'), File.expand_path(File.dirname(__FILE__) + '/../vendor/fast_osc-0.0.12/ext/fast_osc'), [File.expand_path(File.dirname(__FILE__) + '/../vendor/did_you_mean-0.10.0/ext/did_you_mean'), "did_you_mean"] ] if os == :osx native_ext_dirs += [ File.expand_path(File.dirname(__FILE__) + '/../vendor/narray-0.6.1.1/'), File.expand_path(File.dirname(__FILE__) + '/../vendor/ruby-coreaudio-0.0.12/ext/coreaudio/') ] end native_ext_dirs.each do |ext_dir| if ext_dir.is_a? Array ext_dir, tgt_dir = *ext_dir else tgt_dir = "" end puts "Compiling native extension in #{ext_dir}" Dir.chdir(ext_dir) do os = case RUBY_PLATFORM when /.*arm.*-linux.*/ :raspberry when /.*linux.*/ :linux when /.*darwin.*/ :osx when /.*mingw.*/ :windows else RUBY_PLATFORM end `#{RbConfig.ruby} extconf.rb` `make clean` `make` end libs = [] case os when :raspberry libs = Dir[ext_dir + '/*.{so}'] when :linux libs = Dir[ext_dir + '/*.{so}'] when :osx libs = Dir[ext_dir + '/*.{bundle}'] when :windows libs = Dir[ext_dir + '/*.{so}'] end libs.each do |f| tgt = "#{native_dir}/#{tgt_dir}" FileUtils.mkdir_p tgt puts "Copying #{f} to #{tgt}" FileUtils.cp f, tgt end end
Close