您现在的位置是:主页 > news > 如何做一个网站赚钱/识图搜索在线 照片识别

如何做一个网站赚钱/识图搜索在线 照片识别

admin2025/6/18 10:21:24news

简介如何做一个网站赚钱,识图搜索在线 照片识别,做网站排名seo,收藏网站的链接怎么做kali最新版解决GNOME桌面root用户登录问题 首先安装kali一个gnome桌面最新版 然后启动使用 首先普通用户登录 然后修改root密码sudo passwd root 1 切换用户su root 1 2.然后修改两个配置文件vim /etc/pam.d/gdm-autologin 将配置文件找到这一行: auth required pam…

如何做一个网站赚钱,识图搜索在线 照片识别,做网站排名seo,收藏网站的链接怎么做kali最新版解决GNOME桌面root用户登录问题 首先安装kali一个gnome桌面最新版 然后启动使用 首先普通用户登录 然后修改root密码sudo passwd root 1 切换用户su root 1 2.然后修改两个配置文件vim /etc/pam.d/gdm-autologin 将配置文件找到这一行: auth required pam…
kali最新版解决GNOME桌面root用户登录问题
首先安装kali一个gnome桌面最新版
然后启动使用
首先普通用户登录
然后修改root密码sudo passwd root
1
切换用户su root
1
2.然后修改两个配置文件vim /etc/pam.d/gdm-autologin
将配置文件找到这一行:
auth required pam_succeed_if.so user != root quiet_success
然后给它添加注释变成:
#auth required pam_succeed_if.so user != root quiet_success3.第二个配置文件vim /etc/pam.d/gdm-password找到这一行:
auth required pam_succeed_if.so user != root quiet_success
然后给它添加注释变成:
#auth required pam_succeed_if.so user != root quiet_succes4.reboot
重启登录
OK
成功至入sourceCRT连接ssh,试了很多方法终于搞定:
vim /etc/ssh/sshd_config
以下都开启状态,特别最后两行:
Port 22
ListenAddress 0.0.0.0PermitRootLogin yesPubkeyAuthentication yesChallengeResponseAuthentication noUsePAM yesX11Forwarding yes
PermitTTY yes
PrintMotd noAcceptEnv LANG LC_*Subsystem       sftp    /usr/lib/openssh/sftp-serverHostKeyAlgorithms=+ssh-rsa,ssh-dssKexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,curve25519-sha256@libssh.org----------------------------------------------------------
解决vi打开后不能粘贴到kali linux文件中的问题:
方法一这种方法每次打开文件都要
进入vim命令行模式,输入:
:set mouse=c   #进入Command-line 模式
然后就可以正常粘贴复制了。第二种方法永久的在root下新建立个文件:
root@kali:~# vi .vimrc" Vim config file." Global Settings: {{{
syntax on                           " highlight syntax
filetype plugin indent on           " auto detect file typeset nocompatible                    " out of Vi compatible mode
"set number                          " show line number
set numberwidth=3                   " minimal culumns for line numbers
set textwidth=0                     " do not wrap words (insert)
set nowrap                          " do not wrap words (view)
set showcmd                         " show (partial) command in status line
set ruler                           " line and column number of the cursor position
set wildmenu                        " enhanced command completion
set wildmode=list:longest,full      " command completion mode
set laststatus=2                    " always show the status line
set mouse=                         " use mouse in all mode
set foldenable                      " fold lines
set foldmethod=marker               " fold as marker 
set noerrorbells                    " do not use error bell
set novisualbell                    " do not use visual bell
set t_vb=                           " do not use terminal bellset wildignore=.svn,.git,*.swp,*.bak,*~,*.o,*.a
set autowrite                       " auto save before commands like :next and :make
set cursorline
set hidden                          " enable multiple modified buffers
set history=1000                     " record recent used command history
set autoread                        " auto read file that has been changed on disk
set backspace=indent,eol,start      " backspace can delete everything
set completeopt=menuone,longest     " complete options (insert)
set pumheight=10                    " complete popup height
set scrolloff=5                     " minimal number of screen lines to keep beyond the cursor
set autoindent                      " automatically indent new line
set cinoptions=:0,l1,g0,t0,(0,(s    " C kind language indent options
set clipboard+=unnamed              " shared clipboard
set noexpandtab                     " do not use spaces instead of tabsset tabstop=4                       " number of spaces in a tab
set softtabstop=4                   " insert and delete space of <tab>
set shiftwidth=4                    " number of spaces for indent
set expandtab                       " expand tabs into spaces
set incsearch                       " incremental search
set hlsearch                        " highlight search match
set ignorecase                      " do case insensitive matching
set smartcase                       " do not ignore if search pattern has CAPS
set nobackup                        " do not create backup file
"set noswapfile                      " do not create swap file
set backupcopy=yes                  " overwrite the original fileset encoding=utf-8
set termencoding=utf-8
set fileencoding=utf-8
set fileencodings=gb2312,utf-8,gbk,gb18030
set fileformat=unixset background=dark
"colorscheme SolarizedDark_modified 
"colorscheme wombat_modified
" gui settings
if has("gui_running")set guioptions-=T " no toolbarset guioptions-=r " no right-hand scrollbarset guioptions-=R " no right-hand vertically scrollbarset guioptions-=l " no left-hand scrollbarset guioptions-=L " no left-hand vertically scrollbarautocmd GUIEnter * simalt ~x " window width and heightlanguage messages zh_CN.utf-8 " use chinese messages if has
endif" Restore the last quit position when open file.
autocmd BufReadPost *\ if line("'\"") > 0 && line("'\"") <= line("$") |\     exe "normal g'\"" |\ endif
"}}}" Key Bindings: {{{
let mapleader = ","
let maplocalleader = "\\"" map : -> <space>
map <Space> :" move between windows
nmap <C-h> <C-w>h
nmap <C-j> <C-w>j
nmap <C-k> <C-w>k
nmap <C-l> <C-w>l" Don't use Ex mode, use Q for formatting
map Q gq"make Y consistent with C and D
nnoremap Y y$" toggle highlight trailing whitespace
nmap <silent> <leader>l :set nolist!<CR>" Ctrl-E to switch between 2 last buffers
nmap <C-E> :b#<CR>" ,e to fast finding files. just type beginning of a name and hit TAB
nmap <leader>e :e **/" Make shift-insert work like in Xterm
map <S-Insert> <MiddleMouse>
map! <S-Insert> <MiddleMouse>" ,n to get the next location (compilation errors, grep etc)
nmap <leader>n :cn<CR>
nmap <leader>p :cp<CR>" Ctrl-N to disable search match highlight
nmap <silent> <C-N> :silent noh<CR>" center display after searching
nnoremap n   nzz
nnoremap N   Nzz
nnoremap *   *zz
nnoremap #   #zz
nnoremap g*  g*zz
nnoremap g#  g#z
"}}}" mru
let MRU_Window_Height = 10
nmap <Leader>r :MRU<cr>" taglist
let g:Tlist_WinWidth = 25
let g:Tlist_Use_Right_Window = 0
let g:Tlist_Auto_Update = 1
let g:Tlist_Process_File_Always = 1
let g:Tlist_Exit_OnlyWindow = 1
let g:Tlist_Show_One_File = 1
let g:Tlist_Enable_Fold_Column = 0
let g:Tlist_Auto_Highlight_Tag = 1
let g:Tlist_GainFocus_On_ToggleOpen = 1
nmap <Leader>t :TlistToggle<cr>" nerdtree
let g:NERDTreeWinPos = "right"
let g:NERDTreeWinSize = 30
let g:NERDTreeShowLineNumbers = 1
let g:NERDTreeQuitOnOpen = 1
nmap <Leader>f :NERDTreeToggle<CR>
nmap <Leader>F :NERDTreeFind<CR>"paste
vmap <C-c> "+y
nmap <C-v> "+p
set pastetoggle=<F12>"C,C++ Java Compile and run by F5
map <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()exec "w"if &filetype == 'c'exec "!g++ % -o %<"exec "! ./%<"elseif &filetype == 'cpp'exec "!g++ % -o %<"exec "! ./%<"elseif &filetype == 'java' exec "!javac %" exec "!java %<"elseif &filetype == 'sh':!./%endif
endfunc"C,C++ debug
map <F8> :call Rungdb()<CR>
func! Rungdb()exec "w"exec "!g++ % -g -o %<"exec "!gdb ./%<"
endfunc