Search found 36 matches

by dixonstalbert
Fri Jan 12, 2024 3:27 pm
Forum: Networking
Topic: I broke my wired network interface with ip link - how to undo???
Replies: 1
Views: 226

Re: I broke my wired network interface with ip link - how to undo???

well finally had time to go back to video https://www.youtube.com/watch?v=VCAqkyVd7dM&t=1245s and watch it to end where he gives 'undo' instructions :roll: after shutting down all vms, run as root: ip link delete dev tap0 iplink delete dev br0 wait 20 seconds, then using desktop panel app of Net...
by dixonstalbert
Sun Jan 07, 2024 5:04 pm
Forum: Networking
Topic: I broke my wired network interface with ip link - how to undo???
Replies: 1
Views: 226

I broke my wired network interface with ip link - how to undo???

Hello: I was experimenting with trying to set up a bridge connection on a qemu vm. tutorial here:( https://www.youtube.com/watch?v=VCAqkyVd7dM&t=1245s I ran the following ip link commands ip link add br0 type bridge ip tuntap add dev tap0 mode tap ip link set dev eno1 master br0 ip link dev tap0...
by dixonstalbert
Tue Oct 17, 2023 7:39 pm
Forum: Beginner Questions
Topic: How to save all the webpages linked from one
Replies: 3
Views: 174

Re: How to save all the webpages linked from one

http://www.httrack.com

I use HTTrack website copier for this
by dixonstalbert
Sun Aug 13, 2023 12:55 pm
Forum: Beginner Questions
Topic: [SOLVED] Bluetooth closing immediately after launching [Mint 21.2]
Replies: 10
Views: 1251

Re: [Mint 21.2] Bluetooth closing immediately after launching

not sure if you bought another dongle I bought one these to work with an old laptop and linuxmint had no problems using it: https://www.amazon.ca/gp/product/B07V1SZCY6/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1 my experience has been there is a lot of old/dodgy bluetooth stuff that 'sort of...
by dixonstalbert
Sat Aug 12, 2023 11:59 am
Forum: Beginner Questions
Topic: [SOLVED] Bluetooth closing immediately after launching [Mint 21.2]
Replies: 10
Views: 1251

Re: [Mint 21.2] Bluetooth closing immediately after launching

hello!

I wish I had happy news, but this thread about your dongle makes me sad :(

viewtopic.php?t=380515
by dixonstalbert
Sat Aug 12, 2023 11:42 am
Forum: Beginner Questions
Topic: Dual boot on Win10 PC: Can't find BIOS info
Replies: 9
Views: 342

Re: Dual boot on Win10 PC: Can't find BIOS info

Hello. if you can get it to boot with linuxmint LiveCD you should be able to use 'Disks' app Menu>All>Disks. If it is UEFI, there will be a small (100-500 meg) FAT32 partition at front of drive. Not sure what you meant by 'see each other'. I had an old thinkpad with Windows 7 with a flaky 'version 1...
by dixonstalbert
Tue Aug 01, 2023 5:01 pm
Forum: Beginner Questions
Topic: supersad! Cannot restore from my tar backup
Replies: 2
Views: 159

Re: supersad! Cannot restore from my tar backup

Hi MiZoG Thanks for replying. Tried Timeshift many years ago - I will give it another shot. The Ubuntu page you linked to lists these exclusions to the tar backup: --exclude=/proc --exclude=/tmp --exclude=/mnt --exclude=/dev --exclude=/sys --exclude=/run --exclude=/media --exclude=/var/log --exclude...
by dixonstalbert
Tue Aug 01, 2023 9:53 am
Forum: Beginner Questions
Topic: supersad! Cannot restore from my tar backup
Replies: 2
Views: 159

supersad! Cannot restore from my tar backup

[SOLVED] :D now superhappy! TL;DR - restoring tar backup to old partition does not remove the 'bad' files that were preventing proper boot. You should delete old files before restoring. you might also need to re-create some directories, then chroot and run grub-pc, update-mkinitramfs -u , update-gru...
by dixonstalbert
Sat Aug 21, 2021 11:19 am
Forum: Beginner Questions
Topic: [SOLVED] chown problem (on zfs directory)
Replies: 6
Views: 815

Re: chown problem on zfs directory

Thanks vimes666! You are correct! had nothing to do with zfs, but behavior of chown -R command sudo chown -R dixon2:dixon2 amcstuff changed ownership of amcstuff subdirectory, but also removed 'execute' permission of new owner dixon2. restoring it with sudo chmod -R 774 amstuff allowed "ls"...
by dixonstalbert
Fri Aug 20, 2021 3:19 pm
Forum: Beginner Questions
Topic: [SOLVED] chown problem (on zfs directory)
Replies: 6
Views: 815

Re: chown problem on zfs directory

BONUS POINTS awarded to Larry78723 !!!!
However, in order to move on to the Super Grand Prize Round, use must also answer the ZFS question!!
by dixonstalbert
Fri Aug 20, 2021 3:12 pm
Forum: Installation & Boot
Topic: Updates and now rEfind isn't working
Replies: 8
Views: 588

Re: Updates and now rEfind isn't working

you should try the program efibootmgr in the Software Manager.

you can use it to alter the boot configuration of efi operating systems. instruction are pretty straightforward on its man page.

you might also need to go into BIOS and set first boot device as ReFind
by dixonstalbert
Fri Aug 20, 2021 2:52 pm
Forum: Beginner Questions
Topic: [SOLVED] chown problem (on zfs directory)
Replies: 6
Views: 815

[SOLVED] chown problem (on zfs directory)

Hello: I have most of my data on 2 really slow WD 4TB harddrives mounted as ZFS mirrored pool. I went to change a subdirectory permissions to my username:group with: sudo chown -R dixon2:dixon2 /zfspool/docs/amcstuff The subdirectory has about 10,000 jpg files in it and if run ls -lah output: d?????...
by dixonstalbert
Thu Apr 30, 2020 3:30 pm
Forum: Scripts & Bash
Topic: Script or Autostart an App
Replies: 11
Views: 1944

Re: Script or Autostart an App

I tried running a script with sudo in startup applications and it would not run until I edited sudoers file with visudo.

I had to add new line

Code: Select all

ALL ALL=NOPASSWD: /home/Scaricati/GMABooster/GMABooster
at the bottom of file
by dixonstalbert
Sat Apr 25, 2020 11:45 am
Forum: Scripts & Bash
Topic: Script or Autostart an App
Replies: 11
Views: 1944

Re: Script or Autostart an App

in linux dot slash (./) is an abbreviation for current working directory.

In this case, it is a subdirectory in your home directory. the full path is

Code: Select all

/home/Scaricati/GMABooster
so the command would be:

Code: Select all

sudo /home/Scaricati/GMABooster/GMABooster 400


Good Luck!
by dixonstalbert
Fri Apr 24, 2020 1:40 pm
Forum: Storage
Topic: [FAILED] Failed to start Import ZFS pools by cache file.
Replies: 0
Views: 791

[FAILED] Failed to start Import ZFS pools by cache file.

About every 5th reboot, my ZFS drives fails to start and the only thing I can find in /var/log/boot.log is above line about cache failing. I am running Mint 19.3 mate desktop. Mint19.3 OS is on a 480GB ssd. ZFS pools are on 2 4TB WD EZRZ harddrives in I think its called 'mirror mode' when it does fa...
by dixonstalbert
Fri Apr 24, 2020 1:18 pm
Forum: Virtual Machines
Topic: Network Bridged Adapter: enp3s0 or wlp2s0
Replies: 2
Views: 1922

Re: Network Bridged Adapter: enp3s0 or wlp2s0

enp3s0 is your wired ethernet adapter. I am guessing wlp2s0 is your wireless adapter
by dixonstalbert
Fri Apr 24, 2020 1:16 pm
Forum: Scripts & Bash
Topic: Script or Autostart an App
Replies: 11
Views: 1944

Re: Script or Autostart an App

if the command has to be run as root, then you will have to make a visudo rule for it. Search google for "ubuntu visudo" for details The start menu has an option PReferances> "Startup applications" where you can put custom commands that will start on boot. This is the easiest app...
by dixonstalbert
Fri Apr 24, 2020 1:06 pm
Forum: Cinnamon
Topic: No write access to disk partitions- [FIX] Rolled back to previouse image
Replies: 2
Views: 389

Re: No write access to disk partitions.

3 suggestions: First: 1. reboot. at grub menu choose "advance options" then choose first one on list called "(recovery mode)" 2. this should eventually get you to a menu select check file systems- after this finishes select resume Second: There should be an option in menu for &qu...
by dixonstalbert
Thu Jan 10, 2019 4:01 pm
Forum: Installation & Boot
Topic: [SOLVED] LM19.1 boot loop on i7-6700hq
Replies: 4
Views: 690

Re: LM19.1 boot loop on i7-6700hq

have you looked at rodsbooks.com and the program REfind ? I tried to install an early version of ubuntu 17.10 on my lenovo i7 which had the BIOS that corrupts with 17.10, leaving unfixable firmware damage. Thank goodness I had previously installed REfind boot manager, or would have permanently brick...
by dixonstalbert
Thu Jan 10, 2019 3:49 pm
Forum: Graphics Cards & Monitors
Topic: Please give me hope - New video card
Replies: 3
Views: 515

Re: Please give me hope - New video card

you could install GT 1030 then monitor GPU temperature during different loads. I installed package mate-sensors-applet-nvidia then followed this guide https://askubuntu.com/questions/34449/how-to-see-the-video-card-temperature-nvidia-ati-intel finally I installed a panel applet MATE Sensors Applet a...

Go to advanced search