All about Information Technology!

list

Getting a list of computers in the same workgroup

1. Open your command line 2. Type new view

>>

, , , , , , ,

List all your shared folders

With the following command you can list all your shared folders in Windows via command line: net share

>>

, , , ,

List all active connections

To show all active connections of your computer – Open command line (cmd) – Execute: netstat -nao

>>

, ,

List all TCP and UDP endpoints on your system

TCPView is a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections. On Windows Server 2008, Vista, and XP, TCPView also reports the name of the process that owns the endpoint. TCPView provides a more informative [...]

>>

, , , , , , ,

Ubuntu – List remote host shared folders

Usage: smbclient -U <username> -L <hostname> smbclient -U <username> -L <ip address> Example: smbclient -U test -L 192.168.10.5 Results: Enter test’s password: Domain=[TESTING] OS=[Windows 7] Server=[Windows 7] Sharename Type Comment ——— —- ——- ADMIN$ Disk Remote Admin C$ Disk Default share E Disk E$ Disk Default share F$ Disk Default share H$ Disk Default share [...]

>>

, , , , ,

List network interfaces

Type the following command: ip link show Output 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether c7:0b:a4:e3:81:02 brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc mq state DOWN qlen 1000 link/ether 00:11:b2:23:64:55 brd ff:ff:ff:ff:ff:ff

>>

, , ,

View Hard Drive Partitions with DiskPart in Windows

1. Open command line (cmd) in your Windows machine. 2. Type diskpart 3. You will be prompted for administrator password and a new command line window will open. 4. Type: list disk to list all available hard disks. 5. Select your disk: for ex. select disk 0 6. List partitions: list partition

>>

, , , , , , , ,

List USB, ISA and SCSI devices with dmesg in Linux

List USB devices dmesg | grep -i usb   List SCSI devices dmesg | grep -i scsi   List ISA devices dmesg | grep -i isa

>>

, , , , , , ,

List USB devices in Linux

1. Open terminal 2. Issue the following command: lsusb Other options: -v, –verbose Increase verbosity (show descriptors) -s [[bus]:][devnum] Show only devices with specified device and/or bus numbers (in decimal) -d vendor:[product] Show only devices with the specified vendor and product ID numbers (in hexadecimal) -D device Selects which device lsusb will examine -t Dump [...]

>>

, , ,

Previous Posts