
Linux
文章平均质量分 50
agaoq
这个作者很懒,什么都没留下…
展开
-
Linux 安装搜狗输入法
系统版本 16.04 打开网址 linux怎么安装搜狗输入法,根据网址中的步骤安装即可。搜狗输入法for linux 安装过程遇到的问题:1. Ubuntu software不可用,表现为转圈。解决方法:在终端输入:sudo apt-get updatesudo apt-get dist-updatesudp apt-get install --rei...原创 2018-10-08 21:06:14 · 294 阅读 · 0 评论 -
ubuntu 16.04 配置python2, 3 jupyter
转自https://blog.youkuaiyun.com/weixin_41760827/article/details/81092964作者:大白豆13 1. 本人在ubuntu上有原生的python2.7 和python3.52. 对应的也安装了相应版本的jupyter2.1. 安装pythonsudo apt-get install python python3 pytho...转载 2018-10-09 21:39:08 · 908 阅读 · 0 评论 -
win7+ubuntu双系统开机无法进入windows的解决办法
转载博客:https://blog.youkuaiyun.com/jyqxerxes/article/details/80355343问题介绍:用u盘启动盘在win7上安装ubuntu18.10, 安装完成后,未出现选择进入哪个系统的界面,直接进入ubuntu,无法进入win。解决办法:原因多种多样,适用于我的情况:安装linux后,它的grub文件中没有windows的启动路径,所...原创 2018-12-13 08:13:34 · 6701 阅读 · 2 评论 -
Linux命令 wc
wc (word count)wc [options] filenamewc -l : Prints the number of lines in a file.wc -w : prints the number of words in a file.wc -c : Displays the count of bytes in a file.wc -m : prints the coun...原创 2019-08-27 13:41:21 · 203 阅读 · 0 评论 -
在hadoop中查找字段所在行并将其写入文件
方法1: shell for循环for file in `hadoop fs -ls file_dir|awk '{print $NF}'`echo $filehadoop fs -text $file|grep -5 regular_exp --color >> savefiledone方法2:直接用hadoop命令hadoop fs -text ...原创 2019-08-28 17:32:11 · 583 阅读 · 0 评论 -
gdb学习笔记
1. 简介gdb是一个开源的debug工具,适用于c语言、c++等。2. 使用流程2.1 启动gdb对C/C++程序的调试,需要在编译前加上-g选项:假设现有名为hello.cpp的源文件,编译时执行g++ hello.cpp -o hello -g注:编译后的文件名要和源文件名相同,这样gdb可以找到它。调试可执行文件g++ hello执行此命令后,进入gdb交互式...原创 2019-09-01 14:00:40 · 233 阅读 · 0 评论