Jump to content

FUIT1985

Member
  • Posts

    248
  • Joined

  • Last visited

Everything posted by FUIT1985

  1. A sudden shutdown can be caused by a badly connected non-hot-plug device. A system crash can be a logic problem. It depends on the use of the ssd. In any case you should backup your files.
  2. You can try to make a backup of your files and a clean reinstall of Windows.
  3. Hi, actually I think you need a render farm and not a multiseat system. The render farm depends on the graphics program and its licenses. For example blender is free.
  4. Application crashes are usually caused by: 1) an unstable system (due to viruses or due to conflicting applications on the system); 2) RAM. In the second case, simply don't open multiple applications at the same time.
  5. http://pi.hole/admin/ or http://pi.hole/ Source: https://github.com/pi-hole/pi-hole#the-web-interface-dashboard # Run "pihole -d" for a debug token. Make sure you don't have any firewall or iptables settings interfering. Source: https://discourse.pi-hole.net/t/how-do-i-access-pi-holes-dashboard-admin-interface/3168
  6. 1) boot into Internet Recovery mode to take root permissions and an updated copy of OS X Recovery: restart your Mac and hold down Option Command R; select a wireless network from the list and then entering it's password 2) Internet Recovery will then begin downloading a new copy of the OS X Utilities 3) select Disk Utility 4) Format the disk; 5) If you want Reinstall OSX, come back to OSX Utilities
  7. In general, Linux distributions, such as Debian, allow you to download and install metapackages, which are intended for specific sectors: graphics, video, science, etc. But if you want a ready-made distribution for creatives, Ubuntu Studio is the solution for you. Ubuntu Studio: https://ubuntustudio.org/support/ https://ubuntustudio.org/download/ Debian: https://blends.debian.org/games/tasks/ https://blends.debian.org/multimedia/tasks/index.en.html Try other Linux distributions too ...
  8. So you haven't bought a new cable and you are finally able to install the nvidia drivers.
  9. This ubuntu question forum talks about your device: https://askubuntu.com/questions/1164054/cant-install-tp-link-archer-t4u-v3-driver-on-19-04#1164080 I have searched for it with the ID number. rtl8812au-dkms is for version 2. # Install prereqs & reboot $ sudo apt remove rtl8812au-dkms && sudo apt update && sudo apt upgrade && sudo apt install git build-essential dkms && sudo reboot # Pull down the driver source and install it $ git clone https://github.com/cilynx/rtl88x2bu && cd rtl88x2bu/ && VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf) && sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER} && sudo dkms add -m rtl88x2bu -v ${VER} && sudo dkms build -m rtl88x2bu -v ${VER} && sudo dkms install -m rtl88x2bu -v ${VER} && sudo reboot After You just need to enable the wifi interface from the command line. Type the following command to see the name of the wi-fi interface installed on your computer: $ sudo ip link show By default, the kernel attributes generic names such a eth0 (for wired Ethernet) or wlan0 (for WiFi) to the network interfaces. You can activate the wifi interface with the following command (* Obviously you have to replace nameofyourinterface with the name of your wi-fi interface). $ sudo ip link set nameofyourinterface up Then you can use it from the graphical interface of your desktop environment. -------------- Driver for rtl88x2bu wifi adaptors https://github.com/cilynx/rtl88x2bu#driver-for-rtl88x2bu-wifi-adaptors Updated driver for rtl88x2bu wifi adaptors based on Realtek's source distributed with myriad adapters. Realtek's 5.6.1.6 source was found bundled with the Cudy WU1200 AC1200 High Gain USB Wi-Fi Adapter and can be downloaded from Cudy's website. Build confirmed on: Linux version 5.4.0-4-amd64 (debian-kernel@lists.debian.org) (gcc version 9.2.1 20200203 (Debian 9.2.1-28)) #1 SMP Debian 5.4.19-1 (2020-02-13) RTL88x2BU linux Installation guide.pdf rtl88x2bu_linux.zip Archer_T4U_V3_Installation_Guide_for_Linux.pdf
  10. Read this... How to Use the ip Command on Linux Furthermore, I report on below an extract that explains why the usb0 interface is already correctly installed, and why it is instead a Manos-_-P typo (when he enters the command to activate the usb0 interface)... In practice, the ip link show command would not list the usb0 interface if it was not correctly installed. Infact the ip link show Manos-_-P output is: 4: usb0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UNKNOWN mode DEFAULT group default qlen 1000 link/ether aa:f0:a9:d3:ef:14 brd ff:ff:ff:ff:ff:ff
  11. Sorry, but I don't need the output of lsusb ... In any case, the system recognizes the USB WiFi interface ... The name assigned to the WiFi usb0 interface (Bus 003 Device 010: ID 2717:ff80 Xiaomi Inc. Mi/Redmi series (RNDIS)) is visible through the command: $ sudo ip link show For example: $ sudo ip link show 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2: wlp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT qlen 1000 link/ether 0c:ee:e6:d2:20:c5 brd ff:ff:ff:ff:ff:ff 3: enp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000 link/ether 00:24:e8:ed:e3:c2 brd ff:ff:ff:ff:ff:ff In this case enp4s0 is the name assigned to wired Ethernet, instead wlp3s0 is the name assigned to wifi. Then you can activate the wifi usb0 interface with the following command: $ sudo ip link set nameofyourwifi up $ sudo ip link set nameofyourinterface up
  12. I need the output of this command: $ sudo ip link show The usb WiFi must be connected to the USB port.
  13. Yes, No, Maybe... I don't know... After You just need to enable the wifi interface from the command line. Then you can use it from the graphical interface of your desktop environment. Type the following command to see the name of the wi-fi interface installed on your computer: $ sudo ip link show By default, the kernel attributes generic names such a eth0 (for wired Ethernet) or wlan0 (for WiFi) to the network interfaces. Then you can activate the wifi interface with the following command: $ sudo ip link set wlan0 up * Obviously you have to replace wlan0 with the name of your wi-fi interface.
  14. $ sudo apt-get update && sudo apt-get install firmware-realtek In order to install the driver. After you have finished it, quoting me again. Manos-_-P changed the answer from "No" to "Yes". Therefore he does not need probably to install the driver because the Ubuntu installer have already installed the driver automatically.
  15. It is simple. If with Windows the display configuration works correctly, the cable is not the source of the problem. Obviously the resolution depends on the version of the cable. For example an hdmi 1.4 cable is compatible with a Full HD resolution. I looked for your video card specifications. It should have a mini hdmi output (if your monitor also has an hdmi input). If you choose a higher version ask if it is backwards compatible. In any case, your video card allows a resolution no higher than 1920x1080 (30 fps).
  16. Usually who start using Linux try a random distribution ... Suggesting a distribution doesn't make much sense ... There are several guides, official and unofficial, tutorials on YouTube, etc. If you have a specific problem you can ask in forums like this or you can subscribe to the official mailing lists of the distribution of your choice.
  17. You should still check the consumer rights of your country. In Italy, for example, the consumer warranty has a duration of 1 year for the manufacturer and 2 years for the seller.
  18. # Qualified Vendors List (QVL), Model Name: B550 GAMING X V2 (Cezanne) # 4000 G.SKILL 8GB 1Rx8 F4-4000C19D-16GTZSW SS Samsung 19-21-21-41 1.35v V v 2133 # 4000 G.SKILL 8GB 1Rx8 F4-4000C18Q-32GTZ SS Samsung 18-19-19-39 1.35v V v 2133 # 4000 G.SKILL 8GB 1Rx8 F4-4000C18D-16GTZ SS Samsung 18-19-19-39 1.35v V v 2133 # 4000 G.SKILL 8GB 1Rx8 F4-4000C18Q2-64GTZR SS Samsung 18-19-19-39 1.35v V v 2133 For safety, check the compatibility of RAM, ssd and ssd M.2. In reality the source of the problem could be the power supply or a capacitor on the motherboard ... Test them using another psu ... If the build works with another psu, return the non-working psu. Otherwise if the build still doesn't work, return the motherboard too ... mb_memory_b550-gaming-x-v2_cezanne.pdf mb_m.2_support_amd_211020.pdf mb_ssd_support_amd_210825.pdf
  19. Try to clear the RAM cache with Command Prompt... Type cmd in the search tab. Select Run as Administrator. When the Command Prompt appears type: ipconfig /flushdns Press Enter on the keyboard. FlushDNS is an old trick, but it's not definitive. It is usually used to speed up web browsing, but the legend says that it also works with the ram. In theory, you should just monitor the ram in use and open only the applications you need.
  20. Yes, RAM isn't the only source of memory storage. But usually an inconsistent system with inadequate RAM will accidentally shut down. Obviously, an overheating problem cannot be excluded. Try to clear the RAM cache with Command Prompt... Type cmd in the search tab. Select Run as Administrator. When the Command Prompt appears type: ipconfig /flushdns Press Enter on the keyboard. FlushDNS is an old trick, but it's not definitive. It is usually used to speed up web browsing, but the legend says that it also works with the ram. In theory, you should just monitor the ram in use and open only the applications you need.
  21. You don't have enough RAM. The gpu has 12 GB of dedicated memory. The amount of RAM memory must be at least double the dedicated memory of the pcie cards.
  22. Does the computer turn on in black screen or turn off? Does the bios work?
×