亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

accouNT

  • Help Desk Pro has three different interfaces for all three domains of users, providing them with the

    Help Desk Pro has three different interfaces for all three domains of users, providing them with the controls required by them, to save time the application generates reports, which are dynamic as well, taking input from admin and generating results.As for the user accouNT management, the user him/herself can edit their accouNT and personal set-up and the admin can make representatives and admin.

    標(biāo)簽: three interfaces different providing

    上傳時(shí)間: 2017-07-08

    上傳用戶(hù):sevenbestfei

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member accouNT after checking your files. If you do not want to upload source code, you can join the [VIP member] to

    標(biāo)簽: sourcecodes registered documen Please

    上傳時(shí)間: 2017-09-13

    上傳用戶(hù):ljmwh2000

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member accouNT after checking your files. If you do not want to upload source code, you can join the [VIP member] to

    標(biāo)簽: sourcecodes registered documen Please

    上傳時(shí)間: 2014-01-16

    上傳用戶(hù):fandeshun

  • samba服務(wù)器實(shí)驗(yàn)指導(dǎo)

    第一節(jié)、samba是干什么的?它有什么用? Samba(SMB是其縮寫(xiě)) 是一個(gè)網(wǎng)絡(luò)服務(wù)器,它是Linux作為本地服務(wù)器最重要的一個(gè)服務(wù),用于Linux和Windows共享文件之用;Samba可以用于Windows和 Linux之間的共享文件,也一樣用于Linux和Linux之間的共享文件;不過(guò)對(duì)于Linux和Linux之間共享文件有更好的網(wǎng)絡(luò)文件系統(tǒng) NFS,NFS也是需要架設(shè)服務(wù)器的; 2、安裝及服務(wù)操作命令 安裝samba程序非常簡(jiǎn)單,使用rpm -q samba查看當(dāng)前系統(tǒng)是否已經(jīng)安裝了samba軟件。 如果沒(méi)有那就進(jìn)入光盤(pán),rpm -ivh *samba*.rpm即可。 仔細(xì)說(shuō)下安裝的包: samba-common-3.0.28-0.el5.8    //samba服務(wù)器和客戶(hù)端中的最基本文件 samba-3.0.28-0.el5.8           //samba服務(wù)器核心軟件包 system-config-samba-1.2.39-1.el5     //samba圖形配置界面 samba-client-3.0.28-0.el5.8          //samba客戶(hù)端軟件   啟動(dòng)、暫停和停止服務(wù): /etc/init.d/smb start /etc/init.d/smb stop /etc/init.d/smb restart 或 service smb start service smb stop service smb restart   第二節(jié)、由最簡(jiǎn)單的一個(gè)例子說(shuō)起,匿名用戶(hù)可讀可寫(xiě)的實(shí)現(xiàn) 第一步: 更改smb.conf 我們來(lái)實(shí)現(xiàn)一個(gè)最簡(jiǎn)單的功能,讓所有用戶(hù)可以讀寫(xiě)一個(gè)Samba 服務(wù)器共享的一個(gè)文件夾;我們要改動(dòng)一下smb.conf ;首先您要備份一下smb.conf文件; [root@localhost ~]# cd /etc/samba [root@localhost samba]# cp smb.conf smb.conf.bak [root@localhost samba]# vi smb.conf 或geidt smb.conf & 然后我們把下面這段寫(xiě)入smb.conf中:   [global] workgroup = WORKGROUP netbios name = Liukai server string = Liukai's Samba Server security = share [test]         path = /opt/test         writeable = yes         browseable = yes         guest ok = yes 注解: [global]這段是全局配置,是必段寫(xiě)的。其中有如下的幾行; workgroup 就是Windows中顯示的工作組;在這里我設(shè)置的是WORKGROUP (用大寫(xiě)); netbios name 就是在Windows中顯示出來(lái)的計(jì)算機(jī)名; server string 就是Samba服務(wù)器說(shuō)明,可以自己來(lái)定義;這個(gè)不是什么重要的; security 這是驗(yàn)證和登錄方式,這里我們用了share ;驗(yàn)證方式有好多種,這是其中一種;另外一種常用的是user的驗(yàn)證方式;如果用share呢,就是不用設(shè)置用戶(hù)和密碼了; [test] 這個(gè)在Windows中顯示出來(lái)是共享的目錄; path = 可以設(shè)置要共享的目錄放在哪里; writeable 是否可寫(xiě),這里我設(shè)置為可寫(xiě); browseable 是否可以瀏覽,可以;可以瀏覽意味著,我們?cè)诠ぷ鹘M下能看到共享文件夾。如果您不想顯示出來(lái),那就設(shè)置為 browseable=no,guest ok 匿名用戶(hù)以guest身份是登錄; 第二步:建立相應(yīng)目錄并授權(quán) [root@localhost ~]# mkdir -p /opt/test [root@localhost ~]# id nobody uid=99(nobody) gid=99(nobody) groups=99(nobody) [root@localhost ~]# chown -R nobody:nobody /opt/test 注釋?zhuān)宏P(guān)于授權(quán)nobody,我們先用id命令查看了nobody用戶(hù)的信息,發(fā)現(xiàn)他的用戶(hù)組也是nobody,我們要以這個(gè)為準(zhǔn)。有些系統(tǒng)nobody用戶(hù)組并非是nobody ; 第三步:?jiǎn)?dòng)服務(wù)器 第四步:訪問(wèn)Samba 服務(wù)器的共享; 1、在Linux 中您可以用下面的命令來(lái)訪問(wèn); [root@localhost ~]# smbclient -L //liukai或 smbclient //192.168.0.94/test Password: 注:直接按回車(chē) 2、在Windows中,您可以用下面的辦法來(lái)訪問(wèn); \\liukai  或  \\192.168.0.94 3、說(shuō)明:如果用了netbiosname,就可以用“\\主機(jī)名”來(lái)訪問(wèn),如果沒(méi)用netbiosname,就不能用主機(jī)名訪問(wèn)。   第三節(jié)、簡(jiǎn)單的密碼驗(yàn)證服務(wù)器 修改smb.conf文件: security = user guest accouNT = liukai encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd 然后,建立一個(gè)新用戶(hù) useradd liukai passwd liukai 成功后,cat /etc/passwd | mksmbpasswd.sh > /etc/samba/smbpasswd smbpasswd -a liukai 這就成功地添加了一個(gè)smb用戶(hù)。 重啟服務(wù),使用這個(gè)用戶(hù)進(jìn)行登錄即可。    

    標(biāo)簽: samba 嵌入式

    上傳時(shí)間: 2015-05-13

    上傳用戶(hù):yangkang1192

  • 文件Java排課系統(tǒng)的報(bào)告

    My JSP 'TeacherMain.jsp' starting page var $=function(id) { return document.getElementById(id); } function show_menu(num){ for(i=0;i

    標(biāo)簽: C++

    上傳時(shí)間: 2015-07-03

    上傳用戶(hù):xiyuzhu

  • altium15pjwn

    altium15安裝與破解 1.運(yùn)行AD15KeyGen,點(diǎn)擊“打開(kāi)模板”,加載license.ini,如想修改注冊(cè)名,只需修改: TransactorName=Your Name 其中Your Name用你自己的名字替換,其它參數(shù)在單機(jī)版的情況下無(wú)需修改; 2.點(diǎn)擊“生成協(xié)議”,保存生成的alf文件(文件名任意,如“jack ”),并將其放到你的安裝目錄下; 3.將patch.exe放到你的安裝目錄下,運(yùn)行patch,對(duì)安裝目錄下的dxp.exe文件補(bǔ)丁,注意運(yùn)行破解時(shí)軟件沒(méi)有運(yùn)行; 4.啟動(dòng)DXP,運(yùn)行菜單DXP->My accouNT,點(diǎn)擊Add Standalone License file,加載前面生成的license(.alf)文件后即能正常使用了。 注意: 1.局域網(wǎng)內(nèi)用同一license不再提示沖突 2.僅供學(xué)習(xí)研究使用,勿用于非法用途。

    標(biāo)簽: altium pjwn 15

    上傳時(shí)間: 2016-06-11

    上傳用戶(hù):newvision

  • Dynamic+Channel+Acquisition

    Multiuser multiple-input-multiple-output (MU- MIMO) systems are known to be hindered by dimensionality loss due to channel state information (CSI) acquisition overhead. In this paper, we investigate user-scheduling in MU-MIMO systems on accouNT of CSI acquisition overhead, where a base station dynamically acquires user channels to avoid choking the system with CSI overhead. 

    標(biāo)簽: Acquisition Dynamic Channel

    上傳時(shí)間: 2020-05-27

    上傳用戶(hù):shancjb

  • RFIC+Design+for+Cognitive+Radio+Systems

    Cognitive radios have become a vital solution that allows sharing of the scarce frequency spectrum available for wireless systems. It has been demonstrated that it can be used for future wireless systems as well as integrated into 4G/5G wireless systems. Although there is a great amount of literature in the design of cognitive radios from a system and networking point of view, there has been very limited available literature detailing the circuit implementation of such systems. Our textbook, Radio Frequency Integrated Circuit Design for Cognitive Radios, is the first book to fill a disconnect in the literature between Cognitive Radio systems and a detailed accouNT of the circuit implementation and architectures required to implement such systems. In addition, this book describes several novel concepts that advance state-of-the-art cognitive radio systems.

    標(biāo)簽: Cognitive Systems Design Radio RFIC for

    上傳時(shí)間: 2020-06-01

    上傳用戶(hù):shancjb

  • Stochastic Geometry and Wireless Networks Volume I

    Part I provides a compact survey on classical stochastic geometry models. The basic models defined in this part will be used and extended throughout the whole monograph, and in particular to SINR based models. Note however that these classical stochastic models can be used in a variety of contexts which go far beyond the modeling of wireless networks. Chapter 1 reviews the definition and basic properties of Poisson point processes in Euclidean space. We review key operations on Poisson point processes (thinning, superposition, displacement) as well as key formulas like Campbell’s formula. Chapter 2 is focused on properties of the spatial shot-noise process: its continuity properties, its Laplace transform, its moments etc. Both additive and max shot-noise processes are studied. Chapter 3 bears on coverage processes, and in particular on the Boolean model. Its basic coverage characteristics are reviewed. We also give a brief accouNT of its percolation properties. Chapter 4 studies random tessellations; the main focus is on Poisson–Voronoi tessellations and cells. We also discuss various random objects associated with bivariate point processes such as the set of points of the first point process that fall in a Voronoi cell w.r.t. the second point process.

    標(biāo)簽: Stochastic Geometry Networks Wireless Volume and

    上傳時(shí)間: 2020-06-01

    上傳用戶(hù):shancjb

  • Understanding_the_Basics_of_MIMO

    An acronym for Multiple-In, Multiple-Out, MIMO communication sends the same data as several signals simultaneously through multiple antennas, while still utilizing a single radio channel. This is a form of antenna diversity, which uses multiple antennas to improve signal quality and strength of an RF link. The data is split into multiple data streams at the transmission point and recombined on the receive side by another MIMO radio configured with the same number of antennas. The receiver is designed to take into accouNT the slight time difference between receptions of each signal, any additional noise or interference, and even lost signals.

    標(biāo)簽: Understanding_the_Basics_of_MIMO

    上傳時(shí)間: 2020-06-01

    上傳用戶(hù):shancjb

主站蜘蛛池模板: 邻水| 新邵县| 沿河| 深圳市| 台前县| 怀远县| 临潭县| 平顶山市| 东阳市| 和林格尔县| 乌拉特中旗| 新巴尔虎左旗| 敦化市| 津市市| 北川| 怀安县| 延长县| 化州市| 山阴县| 綦江县| 肇州县| 普兰县| 张掖市| 奈曼旗| 新宁县| 洪江市| 台前县| 绥化市| 探索| 两当县| 龙游县| 灌云县| 芦溪县| 永泰县| 彭水| 西乌珠穆沁旗| 江门市| 上饶市| 准格尔旗| 北海市| 绥芬河市|