Posts

Showing posts from September 4, 2018

Kali Linux wlan0 not detected

Image
Clash Royale CLAN TAG #URR8PPP up vote 0 down vote favorite I have been having issues lately with my wireless on Kali 2 recently. It doesnt seem to pick up my built-in wireless card as wireless and instead detects it as eth0. I understand this is a very common problem and most solutions i found was to get an external wireless adapter via usb. I got the ALFA AWUS036NHA with the Atheros AR9271 chip because it has been confirmed to work on Kali Linux. I just got it and I selected it as a Wireless Adapter and this one is being detected as eth1. I just wanted to know if there is any known solutions to this. I am currently running windows 10 with Virtual Box running Kali Linux 2. I am running this on an Asus GL753VD Laptop and all of its usb ports are USB 3.0 and I know that Kali has issues with 3.0 but the adapter works so I dont know if that could be an issue. kali-linux share | improve this question asked Dec 5 '17 at 20:22 Kaelan Renaud 4 1

trim tailing - and add it leading for Numbers in shell

Image
Clash Royale CLAN TAG #URR8PPP up vote 1 down vote favorite I have a CSV file with numbers in double quotes and without double quotes and for some numbers. I have to fix the negative symbols for only numbers: the tailing negative symbol has to be removed and added to the beginning. Sample Input: column 1, column 2, column 3, column 4, column 5 12-,"455,365.44-","string with quotes-and with a comma in between","4,432",6787 Sample Output: column 1, column 2, column 3, column 4, column 5 -12,"-455,365.44","string with quotes-and with a comma in between","4,432",6787 text-processing awk csv share | improve this question edited Dec 6 '17 at 9:38 fpmurphy1 2,231 9 15 asked Dec 5 '17 at 20:33 Kiran 14 2 When you say string with quotes , is that double quotes? How are they encoded? By doubling the " like in most CSV formats? Or with " as sometimes seen?