- Run CMD as administrator
- Paste the following line:
Here X is the drive letter of the USB drive.attrib -h -r -s /s /d X:\*.*
- In Ubuntu the Ethernet connection was shown as
unmanaged wired connection. - This happened after using
sudo pppoeconfto configure apppoeconfiguration.
- Open
/etc/NetworkManager/NetworkManager.confwithsudoprevilege:
sudo gedit /etc/NetworkManager/NetworkManager.conf
- Change the line
managed=falsetomanaged=true
Apps like VLC, Libreoffice do not open from the dock and cannot open associated file extension that is mapped to the app (e.g. .mp3). FYI, the apps are installed from Ubuntu app center
- Uninstall the apps from Ubuntu app center (e.g. VLC, libreoffice)
- Install from terminal:
sudo apt install vlc -y
Here are some steps to try if you're getting an error mounting /dev/nvme0n1p6 in Ubuntu 23.10:
- Open the Disks program
- Select the disk that doesn't mount
- Click the Gears icon or Additional Partition Options button
- Select Edit Mount Options
- Disable User Session Defaults
- Click OK in the Mount Options dialog box
- Repeat for each drive that gives an error message
- Check versions of
gcc,g++, andnvcc:
gcc --version
gcc (Ubuntu 13.2.0-4ubuntu3) 13.2.0
g++ --version
g++ (Ubuntu 13.2.0-4ubuntu3) 13.2.0
nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2023 NVIDIA Corporation
Built on Tue_Aug_15_22:02:13_PDT_2023
I updated my package autolike today using the following steps:
- Changed the version number in
setup.pyand modify package as necessary.
Assuming you’re in the root of your project directory, then run:
pip install -e .
Set up SSH to reduce the risk of exposing your username and password. Some reasons you might want to use SSH key base authentication:
- Is more effective if you push and pull from Bitbucket many times a day.
- Removes the need to enter a password each time you connect.
- Generate SSH key with passphrase and the filename:
ssh-keygen -t ed25519 -C "your_email@example.com"
- Go to the
Settings > SSH and GPG keyspage of Github - Click
New SSH key - Copy the SSH key file to your clipboard, here the public key file is in
~/.ssh/id_ed25519.pub:
cat ~/.ssh/id_ed25519.pub
NewerOlder