This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[zack@leto ~]$ sudo tee << EOF /etc/wpa_supplicant.conf > /dev/null | |
ctrl_interface=/run/wpa_supplicant | |
EOF | |
[zack@leto ~]$ sudo wpa_supplicant -iwlp1s0 -Dnl80211 -c/etc/wpa_supplicant.conf -B | |
Successfully initialized wpa_supplicant | |
[zack@leto ~]$ sudo wpa_cli | |
wpa_cli v2.0 | |
Copyright (c) 2004-2012, Jouni Malinen <[email protected]> and contributors | |
This software may be distributed under the terms of the BSD license. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###########Installing Apache maven on Ubuntu 18.04###################### | |
Note :- do this installtion process as SuperUser | |
Step 1 -Install Java on Ubuntu 18.04 | |
In this tutorial, we will be using the Java packages from the PPA repository, so we need to add the Java PPA Repository to the system. | |
Before adding a new repository, install the 'software-properties-common' package using the apt command below. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UserPanelDialogFragment extends DialogFragment implements View.OnClickListener { | |
private boolean isLogin = false; | |
private TextView mRegister; | |
private TextView mLogin; | |
private TextView mFeedback; | |
private TextView mUserId; | |
private TextView mLogout; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pigz is a parallel version of gzip. | |
Although it only uses a single thread for decompression, | |
it starts 3 additional threads for reading, writing, and check calculation. | |
Your results may vary but we have seen significant improvement in decompression of some of our data sets. | |
Once you install pigz by (sudo apt-get install pigz) the tar file can be extracted with: | |
pigz -dc target.tar.gz | tar xf - -v(verbose logging) | |