自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Eureka

真的只是瞎逼写写,大家就当看个乐呵......

  • 博客(10)
  • 收藏
  • 关注

原创 MATLAB command line workflow

If you could not use MATLAB desktop on server, you have no other choice but to use MATLAB command line version. Here are some notes of mine:1. Running MATLAB on server without GUImatlab -nodesktop...

2018-11-26 09:49:29 466

原创 Linux cannot connect to X server

I want to use wb_view on remote server and view it from local client. However, when I use ssh user@localhost to login to the server, it reports errors as following.wb_view: cannot connect to X server...

2018-11-26 02:36:46 4013

原创 Linux: the fastest way to view images from the terminal

It is extremely easy to view images from your personal PC, however, if you are in a server without root privilege, you will need some tricks to view images. Here are the fastest way:Enter the folder...

2018-11-26 01:14:20 173

原创 docker: user namespace

One of the problem I met yesterday is that I add my user on GPU server to the docker group and run a DL docker container. Although I once firmly believed that the root in docker is virtual for the rea...

2018-11-16 05:25:44 369

原创 R lang Basic Operation

How to select certain rows with specific row names from a data frame in Rstackoverflow: https://stackoverflow.com/questions/18933187/how-to-select-some-rows-with-specific-row-names-from-a-data-frame...

2018-11-12 23:30:01 297

原创 A Record of Ubuntu apt

1. Get a list of repositories apt-get is checkinggrep -h ^deb /etc/apt/sources.list /etc/apt/sources.list.d/*2. Remove a repositoryRemove it from sources.list.If it was added by add-apt-reposito...

2018-11-08 06:06:56 214

转载 Ubuntu Files Permissions - chmod

Original Article: https://www.linux.org/threads/file-permissions-chmod.4124/Linux has inherited from UNIX the concept of ownerships and permissions for files. This is basically because it was conceiv...

2018-11-02 05:55:11 438

原创 docker: deploy a deep learning environment manually

Since currently a server is shared between numerous lab members, I usually need to run my code with non-root environment. All too often, I find it is indispensable to install new packages and polish t...

2018-11-01 06:39:57 207

原创 docker: delete operation

kill all running containersdocker kill $(docker ps -q)delete all stopped containersdocker rm $(docker ps -a -q)delete all imagesdocker rmi $(docker images -q)

2018-11-01 04:35:39 404

原创 docker: mange docker as a non-root user

When first installing docker, you will find it requires root priority for even docker run operation. So you should create a group for non-root users to run their code.https://docs.docker.com/install...

2018-11-01 04:31:59 931

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除