Today, the role of ANN in our system was analysed. The main role of ANN in our system was understood which is to recognise different characters present on the number plate.
With GNU find and GNU coreutils, and assuming your directories don't have newlines in their names: find . -mindepth 1 -maxdepth 1 -type d -exec du -ks {} + | awk '$1 <= 50' | cut -f 2- This will list directories with total contents smaller than 50K. If you're happy with the results and you want to delete them, add | xargs -d \\n rm -rf to the end of the command line. Command: find . -mindepth 1 -maxdepth 1 -type d -exec du -ks {} + | awk '$1 <= 50' | cut -f 2- | xargs -d \\n rm -rf Source: https://unix.stackexchange.com/questions/214089/command-to-delete-directories-whose-contents-are-less-than-a-given-size
After updating my Xubuntu to latest version 17.04, I've found out that my wifi was disabled. No wifi connections were being shown in the indicator plugin. On googling, I've found out that there is a bug in the latest release. So to fix the bug, I followed the steps mentioned in one of the solutions provided by the good folks at askubuntu.com. The steps given were as follow: Open terminal and run: sudo vim /etc/NetworkManager/NetworkManager.conf At the bottom of the file, copy and paste the following: [device] wifi.scan-rand-mac-address=no Then just save and close the file and run: sudo service network-manager restart Check if Wifi is enabled or not. If it is still not enabled, go to Softwares & Updates > Additional Drivers > Click on Do not use the device under Broadcom Wireless Drivers as shown in the image below. 5. Click on Apply Changes and then restart the system, the Wifi should be enabled now. Hope...
In this post, I have going to share the simplest way to install Node.js on your Linux system, specifically, Ubuntu and its other flavors. The server side component of the MEAN stack - node.js can be installed on your Linux server by following the below steps: 1. Go to https://nodejs.org/en/download/ and download the Linux binaries based on your system architecture (32 or 64 bit). I've downloaded the 64 bit version. 2. Open the terminal and type in the following command: sudo tar -C /usr/local --strip-components 1 -xzvf node-v5.5.0-linux-x64.tar.gz 3. Both node and npm should now be installed in "/usr/local/bin" and check this by typing: ls -l /usr/local/bin/node ls -l /usr/local/bin/npm Alternatively, you can check the version of node installed by typing: node -v Thanks to the Coding Samaritans out there. My online nightmare is what ...
Comments
Post a Comment