找到还原小图标: 在右上角的倒数第二个小图标,鼠标放在上面有提示"还原"两个字。
腾讯公司于2008年7月31日发布的基于Linux平台的即时通讯软件,QQ for Linux。主要用来清理在Linux平台上的第三方QQ。但QQ for Linux现已停止使用,官方提供了跨平台的WebQQ,很少更新,功能已经落后与其他桌面客户端。
Ubuntu中文曾发动用户给腾讯公司客服投诉,但没有实质效果。而腾讯方面也在一直封杀相关的第三方QQ软件,Linux用户已经处于用QQ极难的境界。2019年10 月 24 日晚间,腾讯突然发布了沉寂多年的QQ for Linux 新版本。目前,Linux版QQ仍为测试版阶段,版本号为2.0,支持x64(x86_64、amd64)、arm64(aarch64)、mips64(mips64el)三种架构。
用户可以通过QQ号码、电子邮箱地址登录腾讯QQ。电子邮箱账号是自QQ2007正式版加入的一种可选的登录方式,需与一个QQ号码绑定后才可使用。QQ号码由数字组成,在1999年,即QQ刚推出不久时,其长度为5位数。
截止2013年,通过免费注册的QQ号码长度已经达到10位数。QQ号码分为免费的“普通号码”、付费的“QQ靓号”和“QQ行号码”,包含某种特定寓意(如生日、手机号码)或重复数字的号码通常作为靓号在QQ号码商城出售。
像这样全部大写的一般应该是个宏定义。在mips_machine.h中:
/** Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org>
*
* This program is free software you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation.
*
*/
#ifndef __ASM_MIPS_MACHINE_H
#define __ASM_MIPS_MACHINE_H
#include <linux/init.h>
#include <linux/stddef.h>
#include <asm/bootinfo.h>
struct mips_machine {
unsigned long mach_type
const char *mach_id
const char *mach_name
void (*mach_setup)(void)
}
#define MIPS_MACHINE(_type, _id, _name, _setup) \
static const char machine_name_##_type[] __initconst \
__aligned(1) = _name \
static const char machine_id_##_type[] __initconst \
__aligned(1) = _id \
static struct mips_machine machine_##_type \
__used __section(.mips.machines.init) = \
{ \
.mach_type = _type, \
.mach_id = machine_id_##_type, \
.mach_name = machine_name_##_type, \
.mach_setup = _setup, \
}
extern long __mips_machines_start
extern long __mips_machines_end
#ifdef CONFIG_MIPS_MACHINE
int mips_machtype_setup(char *id) __init
void mips_machine_setup(void) __init
#else
static inline int mips_machtype_setup(char *id) { return 1 }
static inline void mips_machine_setup(void) { }
#endif /* CONFIG_MIPS_MACHINE */
#endif /* __ASM_MIPS_MACHINE_H */
(一)概念① 物理CPU
实际Server中插槽上的CPU个数
物理cpu数量,可以数不重复的 physical id 有几个
② 逻辑CPU
/proc/cpuinfo 用来存储cpu硬件信息的
信息内容分别列出了processor 0 –processor n 的规格。这里需要注意,n是逻辑cpu数
一般情况,我们认为一颗cpu可以有多核,加上intel的超线程技术(HT), 可以在逻辑上再分一倍数量的cpu core出来
逻辑CPU数量=物理cpu数量 x cpu cores 这个规格值 x 2(如果支持并开启ht)
备注一下:Linux下top查看的CPU也是逻辑CPU个数
③ CPU核数
一块CPU上面能处理数据的芯片组的数量、比如现在的i5 760,是双核心四线程的CPU、而 i5 2250 是四核心四线程的CPU
一般来说,物理CPU个数×每颗核数就应该等于逻辑CPU的个数,如果不相等的话,则表示服务器的CPU支持超线程技术
二 查看CPU信息
当我们 cat /proc/cpuinfo 时、
具有相同core id的CPU是同一个core的超线程
具有相同physical id的CPU是同一个CPU封装的线程或核心
三 下面举例说明
① 查看物理CPU的个数
#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l
2
② 查看逻辑CPU的个数
#cat /proc/cpuinfo |grep "processor"|wc -l
24
③ 查看CPU是几核
#cat /proc/cpuinfo |grep "cores"|uniq
6
我这里应该是2个Cpu,每个Cpu有6个core,应该是Intel的U,支持超线程,所以显示24
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)