七牛云qshell工具批量操作

为了方便管理七牛云,官方放出了一个工具-qshell qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。 使用qshell可以方便的进行批量操作,包括批量上传、批量下载、批量删除等等…… 首先,从https://u18418398.pipipan.com/fs/18418398-314035000下载官方提供的qshell,里面包含多个平台。 qshell_linux_386 Linux 32位系统 qshell_linux_amd64 Linux 64位系统 qshell_linux_arm Linux ARM CPU qshell_windows_386.exe Windows 32位系统 qshell_windows_amd64.exe Windows 64位系统 qshell_darwin_386 Mac 32位系统,这种系统很老了 qshell_darwin_amd64 Mac 64位系统,主流的系统 解压后,将对应的版本软件放到自定义目录 在此以windows版实例操作 帐号设置 使用qshell前,需要进行帐号验证,可以通过qshell account ak sk格式来进行验证,其中ak和sk对应个人面板->密匙管理中的AccessKey/SecretKey qshell account yW!DRel0y8ERbjw%so^?X8 6pfC4OlL$TZtjpNuR4bLxRsD 设置完成后,可以通过qshell account来查看已设置帐号详情 qshell account AccessKey:yW!DRel0y8ERbjw%so^?X8 SecretKey:6pfC4OlL$TZtjpNuR4bLxRsD 设置完帐号后,我们就可以使用qshell对帐号对应的空间进行操作 列出当前帐号下所有空间 qshell buckets cname cname为空间名 列出空间中所有文件 qshell listbucket cname cname.list.txt cname为空间名,cname.list.txt为结果输出文件。 批量上传 qshell qupload up.cfg up.cfg上传操作配置文件,如下: { "src_dir" : "D:\\abc", "bucket" : "cname" } src_dir为本地文件夹,Wdinwos下必须使用如上格式 ...

二月 12, 2017 · jqx

黑莓9630使用中国电信4G卡

准备工作 Alt + Shift + H进入帮帮我界面 进入后,不要退出,注意以下三个信息 应用程序版本 7.1.0.649 (1886) PIN 3045e17c 正常运行时间 173秒 注意!注意!注意 一定不要退出以上界面,因为运行时间会变动,如果退出了,重新进入查看运行时间 计算解锁码 使用软件工具或者网页版工具计算,网址在这里 http://www.kealin.net/Escreen/Index.html 按照提示,输入PIN、OS Version、Uptime 底下会出现响应时长的解锁码,有1day到30days 一般我们就用一下下,选择一天解锁码,如果你需要长时间使用,可以选择较长时间的解锁码 解锁码也可以使用软件来获取,可以使用BBctrl、BerryBox,请自行搜索。 进入工程模式(Engineering Screen Contents) 注意,前面的帮帮我没有退出,在该界面下输入你所获得的解锁码 如果退出了,重新进入查看运行时间,按照新的时间重新获取解锁码 输入正确后,即可进入工程模式(engineering screen contents) 设置 在工程模式下按以下顺序来操作 Radio Engineering Screens(MULTI) -> 3GPP Radio Engineering Screens -> GCF -> SIM Electrical Test Mode On 点击最后一个菜单后手机自动重启,然后启动完即可使用4G手机卡。

一月 2, 2017 · jqx

Debian下安装Zbook14无线网卡驱动

首先查看无线网卡型号 alair@zb14:~$ lspci|grep less 02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73) 搜索Inter相关固件 ​ alair@zb14:~$ apt-cache search iwlwifi firmware-iwlwifi - Binary firmware for Intel Wireless cards 安装之 ​ alair@zb14:~$ apt-get install firmware-iwlwifi 重启完事儿!

八月 17, 2016 · jqx

HSTS域名更换实例

新入手了its0k.com,原来的alair.cn还继续使用 在这里需要将alair.cn重定向到its0k.com 第一次只是将nginx配置文件中的alair.cn全部替换为its0k.com,通过its0k.com浏览新站完全没问题 但是试着从alair.cn跳转浏览新站,浏览器出现了证书安全告警,告警具体原因为证书未包含alair.cn域名,我才想起来旧域名alair.cn已经添加进了HSTS列表,因此不能简单的只为新域名签名,而是需要证书签名时包含新旧两个域名。 重新签名了证书,包含以下四个域名 its0k.com www.its0k.com alair.cn www.alair.cn 以下为更改完成后的nginx配置文件,请注意名相关的部分 server { listen 443 ssl http2; ssl_certificate /root/ssls/its0k.crt; ssl_certificate_key /root/ssls/its0k.key; ssl_session_timeout 60m; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:RC4-SHA:!aNULL:!eNULL:!EXPORT:!DES:!3DES:!MD5:!DSS:!PKS; ssl_prefer_server_ciphers on; ssl_session_cache builtin:1000 shared:SSL:10m; ssl_dhparam /etc/ssl/certs/dhparam.pem; add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; add_header X-Frame-Options "DENY"; ssl_stapling on; ssl_stapling_verify on; resolver 8.8.8.8 8.8.4.4 valid=300s; resolver_timeout 5s; server_name its0k.com www.its0k.com alair.cn www.alair.cn; access_log off; index index.html index.htm; include /usr/local/nginx/conf/rewrite/ps.conf; root /data/wwwroot/its0k.com/compiled; error_page 403 404 500 503 505 = https://its0k.com/404; if ($host != its0k.com) { rewrite ^/(.*)$ $scheme://its0k.com/$1 permanent; } location ~ .*\.(gif|svg|jpg|jpeg|png|bmp|swf|flv|ico)$ { expires 30d; access_log off; } location ~ .*\.(js|css)?$ { expires 7d; access_log off; } } server { listen 80; server_name www.its0k.com its0k.com alair.cn www.alair.cn; add_header Strict-Transport-Security "max-age=63072000; includeSubdomains; preload"; rewrite ^/(.*) https://its0k.com/$1 permanent; } 至此域名替换完成! ...

七月 1, 2016 · jqx

ubuntu修改grub引导菜单

先运行update-grub命令生成一次grub配置,顺便查看一下识别出来的引导菜单内容 root@alairpc:~# update-grub Generating grub configuration file ... Found linux image: /boot/vmlinuz-4.4.0-21-generic Found initrd image: /boot/initrd.img-4.4.0-21-generic Found memtest86+ image: /boot/memtest86+.elf Found memtest86+ image: /boot/memtest86+.bin Found Windows 7 (loader) on /dev/sda1 done root@alairpc:~# 注意看,以上共有5个菜单项,最后一个是windows7 接下来我们来看看gurb配置文件/etc/default/grub root@alairpc:~# cat /etc/default/grub # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=4 #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=3 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="locale=zh_CN" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" 其中GRUB_DEFAULT就是默认引导项,这里设置为4,对应的为windows7,说明一下,这个引导序列号是从0开始排的,所以第五项window7的序列号应为为4 ...

六月 27, 2016 · jqx