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...
So, I kinda crashed my HDD last weekend. But thankfully, I have had made a backup of all important data. But sadly, I haven't yet find a way to make a backup copy of my customized Linux OS with all my favorite and necessary apps and settings. But I got a brief flashback of the horror that I used to go through earlier while installing Ubuntu as shown below: But thanks to Xubuntu, I don't have to face such horrors again. Even though, my habit of experimenting and to resurrect the buried ghost of Windows led me to this: Thankfully, my sanity returned and I decided to install only Xubuntu on my system. Also, I decided to follow the principle of automating and wrote a bash script to install my following favorite (and must have) apps on my newly installed system: vim - Text Editor for all my programming tasks and scripting gedit - Another Text Editor Docky - Dock Application vlc - Media Player smplayer - Another Media Player Deluge - BitTorrent Client Clem...
Comments
Post a Comment