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

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

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.

    標簽: three interfaces different providing

    上傳時間: 2017-07-08

    上傳用戶: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

    標簽: sourcecodes registered documen Please

    上傳時間: 2017-09-13

    上傳用戶: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

    標簽: sourcecodes registered documen Please

    上傳時間: 2014-01-16

    上傳用戶:fandeshun

  • samba服務器實驗指導

    第一節、samba是干什么的?它有什么用? Samba(SMB是其縮寫) 是一個網絡服務器,它是Linux作為本地服務器最重要的一個服務,用于Linux和Windows共享文件之用;Samba可以用于Windows和 Linux之間的共享文件,也一樣用于Linux和Linux之間的共享文件;不過對于Linux和Linux之間共享文件有更好的網絡文件系統 NFS,NFS也是需要架設服務器的; 2、安裝及服務操作命令 安裝samba程序非常簡單,使用rpm -q samba查看當前系統是否已經安裝了samba軟件。 如果沒有那就進入光盤,rpm -ivh *samba*.rpm即可。 仔細說下安裝的包: samba-common-3.0.28-0.el5.8    //samba服務器和客戶端中的最基本文件 samba-3.0.28-0.el5.8           //samba服務器核心軟件包 system-config-samba-1.2.39-1.el5     //samba圖形配置界面 samba-client-3.0.28-0.el5.8          //samba客戶端軟件   啟動、暫停和停止服務: /etc/init.d/smb start /etc/init.d/smb stop /etc/init.d/smb restart 或 service smb start service smb stop service smb restart   第二節、由最簡單的一個例子說起,匿名用戶可讀可寫的實現 第一步: 更改smb.conf 我們來實現一個最簡單的功能,讓所有用戶可以讀寫一個Samba 服務器共享的一個文件夾;我們要改動一下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 & 然后我們把下面這段寫入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]這段是全局配置,是必段寫的。其中有如下的幾行; workgroup 就是Windows中顯示的工作組;在這里我設置的是WORKGROUP (用大寫); netbios name 就是在Windows中顯示出來的計算機名; server string 就是Samba服務器說明,可以自己來定義;這個不是什么重要的; security 這是驗證和登錄方式,這里我們用了share ;驗證方式有好多種,這是其中一種;另外一種常用的是user的驗證方式;如果用share呢,就是不用設置用戶和密碼了; [test] 這個在Windows中顯示出來是共享的目錄; path = 可以設置要共享的目錄放在哪里; writeable 是否可寫,這里我設置為可寫; browseable 是否可以瀏覽,可以;可以瀏覽意味著,我們在工作組下能看到共享文件夾。如果您不想顯示出來,那就設置為 browseable=no,guest ok 匿名用戶以guest身份是登錄; 第二步:建立相應目錄并授權 [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 注釋:關于授權nobody,我們先用id命令查看了nobody用戶的信息,發現他的用戶組也是nobody,我們要以這個為準。有些系統nobody用戶組并非是nobody ; 第三步:啟動服務器 第四步:訪問Samba 服務器的共享; 1、在Linux 中您可以用下面的命令來訪問; [root@localhost ~]# smbclient -L //liukai或 smbclient //192.168.0.94/test Password: 注:直接按回車 2、在Windows中,您可以用下面的辦法來訪問; \\liukai  或  \\192.168.0.94 3、說明:如果用了netbiosname,就可以用“\\主機名”來訪問,如果沒用netbiosname,就不能用主機名訪問。   第三節、簡單的密碼驗證服務器 修改smb.conf文件: security = user guest account = liukai encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd 然后,建立一個新用戶 useradd liukai passwd liukai 成功后,cat /etc/passwd | mksmbpasswd.sh > /etc/samba/smbpasswd smbpasswd -a liukai 這就成功地添加了一個smb用戶。 重啟服務,使用這個用戶進行登錄即可。    

    標簽: samba 嵌入式

    上傳時間: 2015-05-13

    上傳用戶:yangkang1192

  • 文件Java排課系統的報告

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

    標簽: C++

    上傳時間: 2015-07-03

    上傳用戶:xiyuzhu

  • altium15pjwn

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

    標簽: altium pjwn 15

    上傳時間: 2016-06-11

    上傳用戶: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. 

    標簽: Acquisition Dynamic Channel

    上傳時間: 2020-05-27

    上傳用戶: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.

    標簽: Cognitive Systems Design Radio RFIC for

    上傳時間: 2020-06-01

    上傳用戶: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.

    標簽: Stochastic Geometry Networks Wireless Volume and

    上傳時間: 2020-06-01

    上傳用戶: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.

    標簽: Understanding_the_Basics_of_MIMO

    上傳時間: 2020-06-01

    上傳用戶:shancjb

主站蜘蛛池模板: 金湖县| 丹江口市| 青龙| 汉沽区| 平泉县| 汕尾市| 雷州市| 偃师市| 镇雄县| 息烽县| 奈曼旗| 舞钢市| 姚安县| 吴堡县| 宁都县| 柳河县| 阿巴嘎旗| 皮山县| 柳林县| 邯郸市| 九江县| 天门市| 桐城市| 安图县| 新密市| 马山县| 嫩江县| 内黄县| 聊城市| 德化县| 内丘县| 高唐县| 阿克苏市| 屏南县| 昭通市| 洛隆县| 陵水| 白朗县| 天峻县| 太原市| 黑龙江省|