To configure an account to automatically log in with Windows 10, use Windows Key+R to bring up the Run dialog and then enter netplwiz. Under the User tab, remove the checkbox for the option "Users must enter a user name and password to use this computer." A new dialog box will appear asking for the credentials to use.
Tuesday, October 1, 2019
Examples of finding files within Linux
Below are some examples of how to find files within Linux. The which command returns the path of a command.
which ping
/bin/ping
The locate command returns any file which contains the text. To focus on a particular path, use the grep command as well. The switch "-i" will specify locate to ignore case-sensitivity.
locate chrome | grep /home/sam
The find command is similar; it has several parameters such as:
-iname - file name
-mtime - modified time
-perm - permissions
The example below looks for all files in the home directory that have been created or modified in the past seven days:
find ~/ -mtime -7
https://distrowatch.com/weekly.php?issue=20190812
which ping
/bin/ping
The locate command returns any file which contains the text. To focus on a particular path, use the grep command as well. The switch "-i" will specify locate to ignore case-sensitivity.
locate chrome | grep /home/sam
The find command is similar; it has several parameters such as:
-iname - file name
-mtime - modified time
-perm - permissions
The example below looks for all files in the home directory that have been created or modified in the past seven days:
find ~/ -mtime -7
https://distrowatch.com/weekly.php?issue=20190812
Quick method to copy system information from a Windows client to a text file
One quick method to obtain system information from a Windows client and save the results to a text file is the launch a command prompt and enter the following command:
systeminfo | clip
Use a text editor such as Notepad and paste the data in from the clipboard.
systeminfo | clip
Use a text editor such as Notepad and paste the data in from the clipboard.
AntennaPod
AntennaPod is an open-source podcast client for the Android platform.
https://antennapod.org
https://antennapod.org
Ehtools Framework
Ehtools Framework is a Wi-Fi utility for Linux.
https://www.kitploit.com/2019/09/ehtools-framework-of-serious-wi-fi.html
https://github.com/entynetproject/ehtools
https://ehtools.pro
https://www.kitploit.com/2019/09/ehtools-framework-of-serious-wi-fi.html
https://github.com/entynetproject/ehtools
https://ehtools.pro
Subscribe to:
Posts (Atom)