各种坑之遇险记

how to access share folder in ubuntu virtualbox

sudo adduser [username] vboxsf

enable root and ssh root login

step 1:

   sudo passwd root

step 2:

sudo passwd -u root 

you want to work on a root console you can also use

   sudo -i

If you want to disable root account in Ubuntu you need to lock the root account by using the following command

  sudo passwd -l root

You also need to edit /etc/ssh/sshd_config, and comment out the following line:

PermitRootLogin without-password

Just below it, add the following line:

PermitRootLogin yes

Then restart SSH:

service ssh restart

npm config settings

  1. I run this command:

    npm config set strict-ssl false
  2. Then set npm to run with http, instead of https:
    npm config set registry "http://registry.npmjs.org/"
  3. Then I install packages using this syntax:
    npm --proxy http://username:[email protected]:80 install packagename
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080

d

时间: 2024-10-10 06:44:38

各种坑之遇险记的相关文章

微信的一些坑2016.3记;2017.12 更新

微信经常都更新,如果可以的话,还是应该以微信开发者平台上面的文档为准,好多东西都是一时一个样子:好比分享这个操作2017.12的时候办的一个活动,发行分享总是失败,原理是刚好改了需要80端口发布的才可以,sad -----2016.3记---- 1.获取微信支付要先获取openid 获取openid先获取code 获取code 发现有时候成功获取opendi 有时候失败 1.1 参数是否有空格 1.2 空格以后 还是不行,报40029,后来前端改掉获取code 的方式成功: 2.支付接口失败 2

记一次 jquery mobile被AJAX坑了。

简单情况是 MVC 重定向,URL不变 试了N种方式,跳来跳去,无解,服务端跳,写JS跳,生成跳转中间页跳.失败 后来一看,明明已经跳到新页了,样式什么还是原页的,有点火大了. 出去溜一圈,喝杯水,和同事东拉西扯一通. 回头一看,突然反应过来,这不是AJAX的效果么,坑我半个多小时. 为加验证,是手动调用的submit.没往AJAX上想. $("form").submit(); 但jquery mobile 内部会把submit也通过AJAX访问. 解决办法是禁用. 注意 绑定mobi

记C函数指针的“小坑”

今天遇到一个C函数指针的小坑,索性记下来. 我在a.c 文件里面,引用b.c 文件的函数声明作为指针引用 比如在a.c生命一个函数指针 typedef void (*free)(void *val) fun b.c中的有一个函数 void char_free(void* val){ if (val) LIST_FREE(val); } 但是当我编译的时候 编译器报错:‘char_free’ undeclared 我就纳闷了,一般情况下,在同一可执行程序的源文件中,只要函数不声明为static,其

【转】 NSURLProtocol和NSRunLoop的那些坑

转自:http://xiangwangfeng.com/2014/11/29/NSURLProtocol%E5%92%8CNSRunLoop%E7%9A%84%E9%82%A3%E4%BA%9B%E5%9D%91/ 参考:http://www.raywenderlich.com/59982/nsurlprotocol-tutorial 最近用AFNetworking替换掉了工程里的ASIHttpRequest,结果陆续碰到很多问题: 如何统一地添加全局的HTTP头(不仅仅是UA而已) 如何优雅地

C/C++的坑,供以后翻出来看看

<<角斗士>>有一句台词很好,"士兵,好久不练,你的剑被冻住拔不出来了!"//一,新项目开始重构老项目代码才发现这个bug    std::string s = "something";    std::string r = "some";    int n;    if( n = s.find_first_of(r) != std::string::npos )    {        s.replace(n, r.si

记一次使用Web配置eNSP防火墙的过程

环境:Windows 10 企业版LTSCeNSP版本1.3.00.100eNSP内防火墙版本V500R005C10SPC300VirtualBox版本5.2.26 r128414具体操作过程:最近在做一个关于热备防火墙的实验,按照以前的老方法试了不行.踩了不少坑,特记下来.首先在物理PC上添加一个loopback网卡,网上很多教程都是使用VirtualBox创建网卡,不推荐这种方法,具体过程如下.对于这里,因为操作系统不同的原因,每一个系统显示的名称不同,这个需要自己去发掘直接下一步就安装好了

ARM-Linux开机自启动设置-ok6410开发板

hdu 1163 Eddy's digital Roots Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two

Android React Native在Android Studio中执行bundleReleaseJsAndAssets 打包失败的解决方法

这个坑在文章记一次在Windows上搭建React Native Android环境踩过的坑中我已经提到过,当时找不到解决方法,只能开一个命令提示符终端独立执行打包.就像这样子 react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output C:\Users\Administrator\Desktop\AwesomeProject\android\app\build\

支持向量机SVM的SMO方法实现

hdu 1163 Eddy's digital Roots Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two