How do I uninstall? 1. Remove/Applications/Wireshark.app 2. Remove/Library/Application Support/Wireshark 3. Remove the wrapper scripts from/usr/local/ ...
分类:
其他好文 时间:
2020-02-19 20:50:10
阅读次数:
335
远程桌面协议RDP(Remove Desktop Protocol) 通过mstsc客户端远程连接计算机,并对其进行管理等操作。 与TELNET的区别在于,TELNET显示的是远程计算机的命令行窗口,而RDP为该计算机的图形界面,这样显得更加直观。 RDP=TCP+3389端口。 在运行界面输入ms ...
分类:
其他好文 时间:
2020-02-19 18:44:02
阅读次数:
63
Linux的两种安装方式 首先,介绍一下Linux的安装方式,可以是yum安装,也可以是源码包安装。 yum安装:简单方便,不易出错。 源码包安装:有点繁琐,但是服务性能好。 yum 安装 1. 安装 Nginx yum 安装nginx非常简单,就输入一条命令即可。 $ sudo yum -y in ...
分类:
系统相关 时间:
2020-02-19 16:56:18
阅读次数:
114
Repeatedly remove all adjacent, repeated characters in a given string from left to right. No adjacent characters should be identified in the final str ...
分类:
其他好文 时间:
2020-02-19 13:15:33
阅读次数:
57
一、包含与删除两种方法解析 1.boolean contains(Object o);判断集合中是否包含某个元素。 package com.bjpowernode.java_learning; import java.util.*; ? public class D85_1_ContainsMeth ...
分类:
编程语言 时间:
2020-02-19 05:43:29
阅读次数:
75
1,文件重命名 os 模块中的 rename()可以完成对文件的重命名操作 rename( 需要修改的文件名,新的文件名 ) import os os.rename('新闻稿1.doc','新闻稿2.doc') 2,删除文件 os模块中的remove()可以完成对文件的删除操作 remove ( 待 ...
分类:
其他好文 时间:
2020-02-18 18:13:52
阅读次数:
68
jQuery 选择器 $(this).hide() 演示 jQuery 的 hide() 函数,隐藏当前的 HTML 元素。 $("p").hide() 演示 jQuery 的 hide() 函数,隐藏所有 <p> 元素。 $(".test").hide() 演示 jQuery 的 hide() 函 ...
分类:
Web程序 时间:
2020-02-18 16:43:31
阅读次数:
95
1、卸载旧docker sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engi ...
分类:
其他好文 时间:
2020-02-18 11:29:09
阅读次数:
174
原题链接在这里:https://leetcode.com/problems/elimination-game/ 题目: There is a list of sorted integers from 1 to n. Starting from left to right, remove the fi ...
分类:
其他好文 时间:
2020-02-18 09:56:29
阅读次数:
79
原题链接在这里:https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string-ii/ 题目: Given a string s, a k duplicate removal consists of choosing k ...
分类:
其他好文 时间:
2020-02-18 09:50:48
阅读次数:
75