Linux
Yunhe_Feng
这个作者很懒,什么都没留下…
展开
-
reset TP-Link
reset the router by pressing the behind deep hole for 10 seconds restart the router go toTrying to configure the Router? | TP-Linkin Firefox (must be Firefox) go tohttp://192.168.0.1and input username and password as admin原创 2021-09-23 07:57:10 · 141 阅读 · 0 评论 -
Install CUDA and Nvidia-docker on Ubuntu 18.04 GTX2080Ti
Install GPU driverhttps://linuxconfig.org/how-to-install-the-nvidia-drivers-on-ubuntu-18-04-bionic-beaver-linuxhttps://linuxconfig.org/how-to-install-the-nvidia-drivers-on-ubuntu-18-04-bionic-beaver-linuxInstall Dockerhttps://medium.com/@linhlinhle99原创 2021-09-17 04:35:21 · 194 阅读 · 0 评论 -
Fix ‘Clearing orphaned inodes’ on Ubuntu
Run in terminalsudo apt-get -f updatesudo apt autoremove原创 2021-07-24 09:16:49 · 1158 阅读 · 0 评论 -
firefox 双击关闭tab
安装插件doubel click closes tab原创 2012-05-31 09:34:17 · 1245 阅读 · 0 评论 -
查看大文件的行数(windows 和 Ubuntu)
Windows在Windows平台上,我们可以使用很多工具来打开文件,查看其行数,最常用的就是MS Office Word、记事本等。在MS-DOS下,我们还可以使用edit模式来打开文件,但其最多能打开65280行数据。这里推荐一个工具notepad++,这个工具能打开并显示更多行的数据,并且自动显示行号。Ubuntu在Ubuntu平台上,我们可以使用 wc 命令在不原创 2015-07-08 23:04:50 · 9830 阅读 · 0 评论 -
转变思维--使用Python生成Shell命令,批量执行程序
近日经常遇到在Linux shell中批量执行相似命令的情况。比如执行如下命令:gifsicle --delay=100 gif/App_1_hour_*_down.gif > combine_gif/App_1_hour_down.gifgifsicle --delay=100 gif/App_1_hour_*_up.gif > combine_gif/App_1_hour_up.gif原创 2015-06-13 10:35:59 · 4405 阅读 · 0 评论 -
tips for configuring your .vimrc
If the .vimrc file already exist under your home directory, then open it. If not, new a file named .vimrc on your home directory and then open it. Paste the following lines into the .vimrc file and sa原创 2015-10-26 12:38:54 · 674 阅读 · 0 评论 -
CloudLab "server refused our key"
sudo chmod 0700 ~/.sshsudo chmod 0644 ~/.ssh/authorized_key原创 2016-05-20 04:52:05 · 492 阅读 · 0 评论 -
使用notepad++删除^M字符
^M字符是由于Windows和Unix对于end-of-line的符号使用不一致引起的。在Windows中,使用return/newline两个符号开始新的一行;在Unix中,使用newline即可开始新的一行。使用notepad++可以很方便的删除^M字符。Edit menu -> EOL Conversion -> Windows即可。原创 2016-05-21 08:24:37 · 11725 阅读 · 0 评论 -
linux下阅读.caj文件
折腾了半天终于搞定了,在此记下。1、安装wineapt-get install wine2、下载CAJViewer6.0绿色精简版本,大小为8M 左右(7.X版本的都不能正常显示,6.0非精简版本安装文件为.msi,尝试使用wine msiexec安装后失败)3、解压已下载得6.0绿色精简版本,使用unrar命令。如果没有安装unrar,则执行apt-get install unr原创 2012-06-07 16:04:27 · 22123 阅读 · 10 评论 -
setting Putty' color like an Ubuntu terminal (continuously updated)
Category: Window > ColoursANSI Blue: Red:74 Green:74 Blue:255ANSI Blue Bold: Red:140: Green:140 Blue:255Background: RGB 48 10 36原创 2015-04-09 03:55:18 · 870 阅读 · 0 评论 -
ubuntu初始化修改root密码
ubuntu修改初始root密码sudo passwd root原创 2012-03-14 15:36:56 · 806 阅读 · 0 评论 -
linux安装飞鸽
I've uploaded a PPA containing G2ipmsg - thus you don't need to install any additional development libraries to use this application.to installsudo add-apt-repository ppa:fossfreedom/g2ipmsgsudo转载 2012-03-14 17:54:00 · 670 阅读 · 0 评论 -
学习linux得多观察多思考
linux下的一个scp命令与ssh命令的关系和联系。并不是先登录ssh才可以进行传送。原创 2012-03-15 15:54:37 · 575 阅读 · 0 评论 -
ubuntu gedit中文乱码解决办法
在终端输入: sudo apt-get install dconf-tools --安装dconf-editor 按下Alt-F2,打开“运行应用程序”对话框,输入dconf-editor+回车,打开dconf-editor 在org---转载 2012-03-23 15:09:14 · 621 阅读 · 0 评论 -
linux中的软件也遵循普通的软件规则
寻找软件的共同点,约定熟成的特征。terminal~原创 2012-03-23 15:36:56 · 935 阅读 · 0 评论 -
ubuntu安装显卡驱动
这方法安装的显卡驱动,在更新内核的时候会需要重新安装显卡驱动。加PPA源安装吧。sudo add-apt-repository ppa:ubuntu-x-swat/x-updatessudo apt-get updatesudo apt-get install nvidia-current nvidia-settings转载 2012-05-31 09:26:08 · 741 阅读 · 0 评论 -
(转)Linux下不同颜色文件的类型
蓝色表示目录;绿色表示可执行文件;红色表示压缩文件;浅蓝色表示链接文件;灰色表示其它文件;红色闪烁表示链接的文件有问题了;黄色是设备文件,包括block, char, fifo。用dircolors -p看到缺省的颜色设置,包括各种颜色和“粗体”,下划线,闪烁等定义。 在环境变量$LS_COLORS上修改就行转载 2014-10-29 22:59:15 · 2046 阅读 · 0 评论 -
ubuntu右键以root权限打开文件(文件夹)方法分享
执行:sudo apt-get install nautilus-gksu转载 2012-03-23 14:03:20 · 1362 阅读 · 0 评论