Category: Linux
-
Terminal Manuals (man pages)
to read a manual page about a command in Terminal type man commandname This will bring up the manual page for that command. To leave a man page simply press “q”.
-
Groups : to show the users that belong to a group …
The easiest way find all of the members of a group is to install the package members. sudo apt-get install members EXAMPLE: members –all groupname the above will list all of the members of groupname. Usage: members [ -apst –all –primary –secondary –two-lines ] To show a list of all groupson your system, just…
-
Kubuntu: adding the Samsung CLX-6210FX [SOLVED]
1st attempt: printing>>add printer>>network>>selected the Samsung. Printing searches for the driver then presents a choose driver window. It recommends Generic. This takes me to a list of Samsung drivers. I chose Generic PCL 5e Printer and then Gutenprint v5.2.6 Simplified. I am then presented with the Printer Properties window for my newly installed printer. First test print failed because it defaults…
-
FIND
Find is a pretty cool command line tool for … yep… finding files and folders. It has a lot of flexibility including times based on creation, modified and other time based variables. I used it to create a list of files created after a server migration that had inadvertantly been saved to the old server…
-
Tethering HTC
Sudo route del default Sudo nmap -sP 192.168.42.192/24 To find phone ip Sudo route add default gw Sudo nano /etc/resolv.conf Comment out old dns. To revert: Sudo service networking restart
-
Network:/
Network:/Displays printers and intelligent pcs (usually not Windows) Webdav:/ (sharing samba over ftp) Zerconf:/ displays upnp
-
Finding PCs on a linux network
Just installed Kubuntu on my Work PC, Server is linux, dev server is linux, 3 other PCs are different versions of Windows. sudo nmap -O ipaddress/24 This will list all ips alive and their ports and guess the OS. there is a version of Nmap available for Windows, having not used it though, I cannot…