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

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

share

share是由日本的一位程序員所開發的P2P軟件。他的功能基本上與Winny相同,但是在一定程度上更加容易使用,所以也逐漸被日本本土外的電腦愛好者所使用。該類型的P2P網絡不同于eDonkey和BitTorrent網絡,在share網絡上所有的傳輸都采用了加密措施,所以更能防止被追蹤;同時每個用戶都有一個獨特的ID;以及特有的群集(クラスタ,Cluster)系統、節點(ノード,Node)系統。share的圖標出自日本動畫攻殼機動隊STANDALONECOMPLEX中,一位黑客為隱蔽自己的臉而創造的符號“笑臉男”(笑い男)。
  • 全景圖像和多光譜圖像融合

    PixelFusion.dsp     This file (the project file) contains information at the project level and     is used to build a single project or subproject. Other users can share the     project (.dsp) file, but they should export the makefiles locally. PixelFusion.h     This is the main header file for the application.  It includes other     project specific headers (including Resource.h) and declares the     CPixelFusionApp application class. PixelFusion.cpp     This is the main application source file that contains the application     class CPixelFusionApp. PixelFusion.rc     This is a listing of all of the Microsoft Windows resources that the     program uses.  It includes the icons, bitmaps, and cursors that are stored     in the RES subdirectory.  This file can be directly edited in Microsoft Visual C++. PixelFusion.clw     This file contains information used by ClassWizard to edit existing     classes or add new classes.  ClassWizard also uses this file to store     information needed to create and edit message maps and dialog data     maps and to create prototype member functions.

    標簽: his brovey

    上傳時間: 2015-03-16

    上傳用戶:313777423

  • 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

  • stm32 PWM keil

    STM32F10X PWM example share

    標簽: keil stm PWM 32

    上傳時間: 2018-05-10

    上傳用戶:richa

  • Essentials+of+Short-Range+Wireless

    Over the past ten years there has been a revolution in the devel- opment and acceptance of mobile products. In that period, cel- lular telephony and consumer electronics have moved from the realm of science fiction to everyday reality. Much of that revolu- tion is unremarkable – we use wireless, in its broadest sense, for TV remote controls, car keyfobs, travel tickets and credit card transactions every day. At the same time, we have increased the number of mobile devices that we carry around with us. However, in many cases the design and function of these and other static products are still constrained by the wired connections that they use to transfer and share data.

    標簽: Short-Range Essentials Wireless of

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • Mobile Radio Channels

    With this book at your fingertips, you, the reader, and I have something in common. We share the same interest in mobile radio channels. This area attracted my interest first in autumn 1992 whenImovedfromindustrytoacademiatofindachallengeinmylifeandtopursueascientific career. Since then, I consider myself as a student of the mobile radio channel who lives for modelling, analyzing, and simulating them. While the first edition of this book resulted from my teaching and research activities at the Technical University of Hamburg-Harburg (TUHH), Germany, the present second edition is entirely an outcome of my work at the University of Agder, Norway.

    標簽: Channels Mobile Radio

    上傳時間: 2020-05-30

    上傳用戶:shancjb

  • Multi-hop+Mesh+Networks

    Notwithstanding its infancy, wireless mesh networking (WMN) is a hot and growing field. Wireless mesh networks began in the military, but have since become of great interest for commercial use in the last decade, both in local area networks and metropolitan area networks. The attractiveness of mesh networks comes from their ability to interconnect either mobile or fixed devices with radio interfaces, to share information dynamically, or simply to extend range through multi-hopping. 

    標簽: Multi-hop Networks Mesh

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • Multimedia Over IP

    In case you haven’t noticed, multimedia communication over IP and wireless net- works is exploding. Applications such as BitTorrent, used primarily for video downloads, now take up the lion’s share of all traffic on the Internet. Music file sharing, once on the legal cutting edge of massive copyright infringement on col- lege campuses around the world, has moved into the mainstream with signifi- cant legal downloads of music and video to devices such as the iPod and nu- merous other portable media players. 

    標簽: Multimedia Over IP

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • WiFi,+WiMAX+and+LTE+Multi-hop+Mesh+Networks

    Notwithstanding its infancy, wireless mesh networking (WMN) is a hot and growing field. Wireless mesh networks began in the military, but have since become of great interest for commercial use in the last decade, both in local area networks and metropolitan area networks. The attractiveness of mesh networks comes from their ability to interconnect either mobile or fixed devices with radio interfaces, to share information dynamically, or simply to extend range through multi-hopping. 

    標簽: Multi-hop Networks WiMAX WiFi Mesh LTE and

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • Arduino+Microcontroller+Processing

    This book is about the Arduino microcontroller and the Arduino concept. The visionary ArduinoteamofMassimoBanzi,DavidCuartielles,TomIgoe,GianlucaMartino,andDavidMellis launchedanewinnovationinmicrocontrollerhardwarein2005,theconceptofopensourcehardware. There approach was to openly share details of microcontroller-based hardware design platforms to stimulate the sharing of ideas and innovation.This concept has been popular in the software world for many years.

    標簽: Microcontroller Processing Arduino

    上傳時間: 2020-06-09

    上傳用戶:shancjb

  • Arduino Microcontroller Processing Part I

    This book is about the Arduino microcontroller and the Arduino concept. The visionary ArduinoteamofMassimoBanzi,DavidCuartielles,TomIgoe,GianlucaMartino,andDavidMellis launchedanewinnovationinmicrocontrollerhardwarein2005,theconceptofopensourcehardware. There approach was to openly share details of microcontroller-based hardware design platforms to stimulate the sharing of ideas and innovation.This concept has been popular in the software world for many years.

    標簽: Microcontroller Processing Everyone Arduino Part for

    上傳時間: 2020-06-09

    上傳用戶:shancjb

主站蜘蛛池模板: 库伦旗| 赫章县| 图们市| 湖北省| 英吉沙县| 奈曼旗| 龙门县| 呼玛县| 桂林市| 饶阳县| 攀枝花市| 武邑县| 龙川县| 贵定县| 北辰区| 松滋市| 寻甸| 津市市| 鲁山县| 金阳县| 吉木萨尔县| 铁力市| 桂林市| 巢湖市| 黄冈市| 鞍山市| 大连市| 昌吉市| 都匀市| 太仆寺旗| 荥经县| 开化县| 来宾市| 青冈县| 中超| 应城市| 栾川县| 华亭县| 新余市| 宜兰县| 苏尼特左旗|