Linux系统下 -bash: apt-get: command not found和apt-get: command not found

  • Post author:
  • Post category:linux

apt-get: command not found,这个的出现是因为系统的原因。 Linux系统分为两种: 1.RedHat系列:Redhat、Centos、Fedora等 2.Debian系列:Debian、Ubuntu等 RedHat系列的包管理工具是yum Debian系列的包管理工具是apt-get 查看系统版本: cat /proc/version 可以看出我的系统是Red hat 所…

继续阅读 Linux系统下 -bash: apt-get: command not found和apt-get: command not found

linux常用命令 top命令的使用和介绍

  • Post author:
  • Post category:linux

1.简介 1.top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器。 2.top显示系统当前的进程和其他状况,是一个动态显示过程,即可以通过用户按键来不断刷新当前状态.如果在前台执行该命令, 它将独占前台,直到用户终止该程序为止. 比较准确的说,top命令提供了实时的对系统处理器的状态监视.它将显示系统中 交互式命令或者在个人定制文…

继续阅读 linux常用命令 top命令的使用和介绍

多重对数函数快速理解-算法导论

  • Post author:
  • Post category:其他

定义:lg*n = min{i >= 0: lg(i)n <= 1} lg*a = n    2^2^... = a    lg (i) n = 1 lg*2 = 1    2^1 = 2        lg(1)2 = lg2 = 1 lg*4 = 2    2^2 = 4        lg(2)4 = lg( lg(1)4 ) = lg(lg4) = lg2 = 1 lg*16 …

继续阅读 多重对数函数快速理解-算法导论

【BZOJ 1044】木棍分割

  • Post author:
  • Post category:其他

1. 题目链接 。首先第一问,由于木棍的长度都是非负数,所以前缀和单调不减,这样直接二分这个maxLen就可以得到答案。然后第二问,设dp[i][j]表示把对于前i个,切了j刀满足要求的方案数。这样,dp[i][j]的转移其实很好推: 然后,这里开始优化: (1)首先是空间优化,可以看到,j之和j-1有关,那么滚动一下空间O(n). (2).时间优化,虽然dp方程的k每次都是从1开始枚举的,但是实…

继续阅读 【BZOJ 1044】木棍分割

layui通过本地存储数据,实现在其他页面的数据回显,附了解window.localStorae

  • Post author:
  • Post category:其他

在使用前我们先简单了解下window.localStorae. localStorage 和 sessionStorage 属性允许在浏览器中存储 key/value 即键值对的形式的数据。 localStorage 会永久保存整个网站的数据,保存的数据不会过期,直到手动去删除,即使关闭页面也会存在。 提示: 如果你只想将数据保存在当前会话中,可以使用 sessionStorage 属性, 该数据…

继续阅读 layui通过本地存储数据,实现在其他页面的数据回显,附了解window.localStorae

docker the input device is not a TTY. If you are using mintty, try prefixing the command with ‘winp

  • Post author:
  • Post category:其他

docker the input device is not a TTY. If you are using mintty, try prefixing the command with 'winp 解决方法 执行命令报错 docker exec -it 8ea8a375e686 /bin/bash the input device is not a TTY. If you are using m…

继续阅读 docker the input device is not a TTY. If you are using mintty, try prefixing the command with ‘winp

Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a

  • Post author:
  • Post category:其他

Server Error in ' / ' Application. -------------------------------------------------------------------------------- Runtime Error Description: An application error occurred on the server. The current …

继续阅读 Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a

springboot的常用注解教程(半个小时让你全部通透)

  • Post author:
  • Post category:其他

1.@value 该注解用于读取application.properties文件中的值,而application.properties文件一般是用来存放配置参数的,那么实际上@value就是读取application.properties文件中的配置信息: 2.@ConfigurationProperties 该注解和上面的@Value类似,只不过@Value只能读取1个属性,而@Configur…

继续阅读 springboot的常用注解教程(半个小时让你全部通透)

UIFI U盘系统制作

  • Post author:
  • Post category:其他

软碟通 新版电脑 软碟通 已经不行。 Rufus 工具下载地址 https://rufus.ie/ github地址 https://github.com/pbatard/rufus 系统下载地址 https://msdn.itellyou.cn/ 版权声明:本文为mhw828原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.c…

继续阅读 UIFI U盘系统制作

微服务超时时间的设定hystrix、ribbon、okhttp的优先级

  • Post author:
  • Post category:其他

优先级:hystrix > ribbon > okhttp ,Feign是基于ribbon 实现的,所以hystrix>feign>okhttp 当openFeign开启Hystrix   超时时间两个都配置 版权声明:本文为qq_24985171原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.csdn…

继续阅读 微服务超时时间的设定hystrix、ribbon、okhttp的优先级