Advertisement
Guest User

cpuinfo

a guest
Nov 11th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.10 KB | None | 0 0
  1. [user@gate ~]$ uname -a
  2. Linux gate 4.4.30-1-lts #1 SMP Tue Nov 1 22:09:20 CET 2016 x86_64 GNU/Linux
  3. [user@gate ~]$ free -m
  4. total used free shared buff/cache available
  5. Mem: 2005 89 1658 89 257 1701
  6. Swap: 8191 387 7804
  7. [user@gate ~]$ cat /proc/cpuinfo
  8. processor : 0
  9. vendor_id : GenuineIntel
  10. cpu family : 6
  11. model : 26
  12. model name : Intel Core i7 9xx (Nehalem Class Core i7)
  13. stepping : 3
  14. microcode : 0x1
  15. cpu MHz : 2494.332
  16. cache size : 4096 KB
  17. physical id : 0
  18. siblings : 1
  19. core id : 0
  20. cpu cores : 1
  21. apicid : 0
  22. initial apicid : 0
  23. fpu : yes
  24. fpu_exception : yes
  25. cpuid level : 7
  26. wp : yes
  27. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer hypervisor lahf_lm fsgsbase smep erms
  28. bugs :
  29. bogomips : 4988.66
  30. clflush size : 64
  31. cache_alignment : 64
  32. address sizes : 36 bits physical, 48 bits virtual
  33. power management:
  34.  
  35. processor : 1
  36. vendor_id : GenuineIntel
  37. cpu family : 6
  38. model : 26
  39. model name : Intel Core i7 9xx (Nehalem Class Core i7)
  40. stepping : 3
  41. microcode : 0x1
  42. cpu MHz : 2494.332
  43. cache size : 4096 KB
  44. physical id : 1
  45. siblings : 1
  46. core id : 0
  47. cpu cores : 1
  48. apicid : 1
  49. initial apicid : 1
  50. fpu : yes
  51. fpu_exception : yes
  52. cpuid level : 7
  53. wp : yes
  54. flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer hypervisor lahf_lm fsgsbase smep erms
  55. bugs :
  56. bogomips : 4988.66
  57. clflush size : 64
  58. cache_alignment : 64
  59. address sizes : 36 bits physical, 48 bits virtual
  60. power management:
  61. [user@gate ~]$ cat /etc/makepkg.conf
  62. #
  63. # /etc/makepkg.conf
  64. #
  65.  
  66. #########################################################################
  67. # SOURCE ACQUISITION
  68. #########################################################################
  69. #
  70. #-- The download utilities that makepkg should use to acquire sources
  71. # Format: 'protocol::agent'
  72. DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
  73. 'http::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
  74. 'https::/usr/bin/curl -fLC - --retry 3 --retry-delay 3 -o %o %u'
  75. 'rsync::/usr/bin/rsync --no-motd -z %u %o'
  76. 'scp::/usr/bin/scp -C %u %o')
  77.  
  78. # Other common tools:
  79. # /usr/bin/snarf
  80. # /usr/bin/lftpget -c
  81. # /usr/bin/wget
  82.  
  83. #-- The package required by makepkg to download VCS sources
  84. # Format: 'protocol::package'
  85. VCSCLIENTS=('bzr::bzr'
  86. 'git::git'
  87. 'hg::mercurial'
  88. 'svn::subversion')
  89.  
  90. #########################################################################
  91. # ARCHITECTURE, COMPILE FLAGS
  92. #########################################################################
  93. #
  94. CARCH="x86_64"
  95. CHOST="x86_64-pc-linux-gnu"
  96.  
  97. #-- Compiler and Linker Flags
  98. # -march (or -mcpu) builds exclusively for an architecture
  99. # -mtune optimizes for an architecture, but builds for whole processor family
  100. CPPFLAGS="-D_FORTIFY_SOURCE=2"
  101. CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
  102. CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
  103. LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
  104. #-- Make Flags: change this for DistCC/SMP systems
  105. MAKEFLAGS="-j2"
  106. #-- Debugging flags
  107. DEBUG_CFLAGS="-g -fvar-tracking-assignments"
  108. DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
  109.  
  110. #########################################################################
  111. # BUILD ENVIRONMENT
  112. #########################################################################
  113. #
  114. # Defaults: BUILDENV=(!distcc color !ccache check !sign)
  115. # A negated environment option will do the opposite of the comments below.
  116. #
  117. #-- distcc: Use the Distributed C/C++/ObjC compiler
  118. #-- color: Colorize output messages
  119. #-- ccache: Use ccache to cache compilation
  120. #-- check: Run the check() function if present in the PKGBUILD
  121. #-- sign: Generate PGP signature file
  122. #
  123. BUILDENV=(!distcc color ccache check !sign)
  124. #
  125. #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
  126. #-- specify a space-delimited list of hosts running in the DistCC cluster.
  127. #DISTCC_HOSTS=""
  128. #
  129. #-- Specify a directory for package building.
  130. BUILDDIR=/tmp/makepkg
  131.  
  132. #########################################################################
  133. # GLOBAL PACKAGE OPTIONS
  134. # These are default values for the options=() settings
  135. #########################################################################
  136. #
  137. # Default: OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !optipng !upx !debug)
  138. # A negated option will do the opposite of the comments below.
  139. #
  140. #-- strip: Strip symbols from binaries/libraries
  141. #-- docs: Save doc directories specified by DOC_DIRS
  142. #-- libtool: Leave libtool (.la) files in packages
  143. #-- staticlibs: Leave static library (.a) files in packages
  144. #-- emptydirs: Leave empty directories in packages
  145. #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
  146. #-- purge: Remove files specified by PURGE_TARGETS
  147. #-- upx: Compress binary executable files using UPX
  148. #-- optipng: Optimize PNG images with optipng
  149. #-- debug: Add debugging flags as specified in DEBUG_* variables
  150. #
  151. OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !optipng !upx !debug)
  152.  
  153. #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
  154. INTEGRITY_CHECK=(md5)
  155. #-- Options to be used when stripping binaries. See `man strip' for details.
  156. STRIP_BINARIES="--strip-all"
  157. #-- Options to be used when stripping shared libraries. See `man strip' for details.
  158. STRIP_SHARED="--strip-unneeded"
  159. #-- Options to be used when stripping static libraries. See `man strip' for details.
  160. STRIP_STATIC="--strip-debug"
  161. #-- Manual (man and info) directories to compress (if zipman is specified)
  162. MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
  163. #-- Doc directories to remove (if !docs is specified)
  164. DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
  165. #-- Files to be removed from all packages (if purge is specified)
  166. PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
  167.  
  168. #########################################################################
  169. # PACKAGE OUTPUT
  170. #########################################################################
  171. #
  172. # Default: put built package and cached source in build directory
  173. #
  174. #-- Destination: specify a fixed directory where all packages will be placed
  175. PKGDEST=/home/user/packages
  176. #-- Source cache: specify a fixed directory where source files will be cached
  177. SRCDEST=/home/user/sources
  178. #-- Source packages: specify a fixed directory where all src packages will be placed
  179. SRCPKGDEST=/home/user/srcpackages
  180. #-- Log files: specify a fixed directory where all log files will be placed
  181. LOGDEST=/home/user/makepkglogs
  182. #-- Packager: name/email of the person or organization building packages
  183. #PACKAGER="John Doe <john@doe.com>"
  184. #-- Specify a key to use for package signing
  185. #GPGKEY=""
  186.  
  187. #########################################################################
  188. # COMPRESSION DEFAULTS
  189. #########################################################################
  190. #
  191. COMPRESSGZ=(gzip -c -f -n)
  192. COMPRESSBZ2=(bzip2 -c -f)
  193. COMPRESSXZ=(xz -c -z -)
  194. COMPRESSLRZ=(lrzip -q)
  195. COMPRESSLZO=(lzop -q)
  196. COMPRESSZ=(compress -c -f)
  197.  
  198. #########################################################################
  199. # EXTENSION DEFAULTS
  200. #########################################################################
  201. #
  202. # WARNING: Do NOT modify these variables unless you know what you are
  203. # doing.
  204. #
  205. PKGEXT='.pkg.tar.xz'
  206. SRCEXT='.src.tar.gz'
  207.  
  208. # vim: set ft=sh ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement