Skip to main content

Posts

Showing posts from February, 2023

Joplin

 Linux https://github.com/laurent22/joplin/issues/6612 sudo add-apt-repository universe sudo apt install libfuse2 https://joplinapp.org/help/#desktop-applications wget -O - https://raw.githubusercontent.com/laurent22/joplin/dev/Joplin_install_and_update.sh | bash It's not free if you want to sync in Joplin Cloud but works for dropbox or onedrive, I used dropbox sudo rm -r ~/.joplin sudo rm -r ~/.config/joplin-desktop sudo rm ~/.local/share/applications/appimagekit-joplin.desktop

Open ec2 on nautilus (File Browser Ubuntu)

Working method ssh-add /home/rb/eta/ec2_ramesh_key.pem In Connect to server do: sftp://ec2-user@ec2-35-91-46-202.us-west-2.compute.amazonaws.com  To rename: Right click >> Add to Bookmark Then you can rename the bookmark https://smashingweb.info/connect-remote-server-nautilus-using-key-file-pem-file/ gedit ~/.ssh/config Well some info were already there ex. from VSCode # Read more about SSH config files: https://linux.die.net/man/5/ssh_config Host Automl6     HostName ec2-35-91-46-202.us-west-2.compute.amazonaws.com     User ec2-user     IdentityFile /home/rb/eta/ec2_ramesh_key.pem Host Automl4     HostName ec2-54-187-190-154.us-west-2.compute.amazonaws.com     User ec2-user     IdentityFile /home/rb/eta/ec2_ramesh_key.pem Host Automl5     HostName ec2-35-89-188-226.us-west-2.compute.amazonaws.com     User ec2-user     IdentityFile /home/rb/eta/ec2_ramesh_key.pem do this in terminal: ssh Automl4 This will get you connected to Amazon ec2 server Then in Nautilus: Ctrl+L ssh://Autom

Windows like file sorting in linux

 in terminal : locale sudo update-locale LC_COLLATE=C restart required https://askubuntu.com/questions/239371/how-do-i-list-folders-with-underscores-first or edit  ~/.profile export LC_COLLATE=C this doesn't require logging out but is temporary killall nautilus && LC_COLLATE=C nautilus &

Fix Grub (lost) on Windows 11 - Or after Removing Ubuntu Partition

 Tried on HP Victus The grub is lost because the windows is set as default for login in BIOS. If you set Ubuntu as default grub will be back. Go to BIOS settings (F10) and Boot Settings and OS boot manager and put ubuntu on top. You get grub back (you can select between ubuntu and windows then) Select Windows [Didn't Work]: Hold Shift+Restart After Restart Again F9 and Windows and got to: Advanced Options > Command Prompt and do: X:\Windows\System32> bootrec /fixmbr X:\Windows\System32> bootrec /fixboot sometimes this gives error: Access is denied. if so, do this X:\Windows\System32> bootsect/nt60 sys Then do: X:\Windows\System32> bootrec /fixboot Repair Grub : Do this before deleting partition [Did but didn't work] Might need to do it by creating an installation media in USB (F9) for boot options HP Victus. X:\Windows\System32> bootrec /fixmbr X:\Windows\System32> bootrec /fixboot sometimes this gives error: Access is denied. if so, do this X:\Windows\Syst