Klaus Knopper answers your Linux questions
Ask Klaus
NVidia graphics problems and setting up an FTP server.
Nvidia Graphics Card Problems
Hello Klaus:
I follow the Linux Magazine website, and I am a Knoppix n00b trying to figure out how to overcome some graphic/display configuration issues I am having. I am also an EnCase Examiner working on a troubleshooting issue. I am using the forensic LinEN v7.08 Live CD based on Knoppix v7.05.
The LinEN screen pops up perfectly fine, but once I get past that, I am unable to boot Knoppix (i.e., the screen goes blank). Therefore, I tried the following, per the recommendations offered on KNOPPIX.net [1]:
boot: knoppix vga=0 boot: knoppix acpi=off pnpbios=off noapic noapm boot: knoppix vga=0 debug -b 3
None of these tips from the Cheat Codes website did the trick, so I am going to try choosing the correct graphics driver. I was advised that Knoppix can use either the nvidia or nouveau kernel module (driver) for Nvidia graphics cards and that some Nvidia-based computers will work fine with both drivers, whereas others will need to use one or the other.
My specific question is: How do I choose/use a different kernel module (driver)? For instance, how do I toggle between Nvidia/nouveau drivers? Is this done in the home screen after hitting the Tab key to modify the command line? If so, no instructions are provided as to how to flip the bit on/off for either Nvidia driver.
I was told to highlight the appropriate option and hit Enter or to press Tab beforehand if I want to see the command-line parameters associated with an option. However, I am not seeing an option so that I may hit Enter. I value your time and appreciate any advice you may be able to offer in advance.
Tyler
Problems with unsupported or only partly supported graphics cards are still common when trying to configure any operating system automatically. The way Knoppix attempts to configure graphics correctly is to use the following sequence:
- First, choose the "best match" for the graphics card, which is, in case of Nvidia, the nouveau open source graphics driver. The advantage of using this driver is that for cards that are well supported (check the support matrix [2]), you get stable accelerated graphics with low power consumption in most cases, allowing the Compiz 3D desktop to work with magnification, desktop cube, and smooth accessibility features and effects. If the card is blacklisted in Knoppix, the composite extension and/or direct memory access are switched off, so at least you should get a stable 2D desktop.
- If the native driver fails, the accelerated framebuffer driver is tried instead. This driver still has a good chance of giving you an appropriate resolution that matches your display or monitor, as well as decent working speed.
- If the framebuffer driver fails, too, standard VESA mode is used, which usually works with all cards but has limited resolutions and features (i.e., you may get 1024x768 at 60Hz), although it's quite slow.
With these fallbacks, most users will be able to use graphics, even if method 1 or 2 fails.
Now comes the problem: If the graphics card is correctly detected and the optimal driver is also loaded successfully in step 1 or 2, in the case of incomplete support of the particular graphics card, the driver may be crashing without reporting this to the hardware detection scripts. Thus, the rest of the system assumes you have working graphics, whereas, in fact, the screen is blank or shows funny pixels, and the mouse cursor is unusable. There is no way to detect such a crash from software alone, and I think this is just what you observed by the screen going blank while loading the perfect matching driver after initially showing a nice logo in framebuffer mode (which is what many Knoppix derivates do).
The workaround requires manually specifying options for correcting the graphics driver's behavior, either by turning off special options that are not supported by the card or by skipping hardware detection step 1 or 2 and loading the vesa driver with no acceleration directly. Table 1 shows some examples combined from the Knoppix cheat codes list.
Table 1
Boot Commands
Command | Description |
---|---|
|
Framebuffer-only graphics mode + loading the framebuffer Xorg module in 1024x768 resolution. |
|
Same as above for 800x600 resolution. |
|
Start with VESA Xorg module, no framebuffer, no direct memory access, disable kernel mode setting, leave console in standard text mode. This option is safe but slow. |
|
Use Nvidia-specific Xorg driver but turn acceleration off. |
Note that the framebuffer logo, which is shown after the boot screen disappears, can also cause the graphics card to malfunction, because some cards are known to be unable to switch to accelerated or VESA mode after framebuffer was initialized. The vga=0
option is, in this case, very helpful, but not enough for choosing the right driver.
Independent of this, for Knoppix 7.4 and later, it has been reported that booting in 32-bit mode on a 64-bit computer with knoppix
… or explicitly starting to load the 64-bit kernel with knoppix64
… triggered correct behavior of the accelerated driver, but I doubt that is the case here.
If you have an Nvidia chipset that is only partly supported by the nouveau driver, the last boot command in Table 1 may be the best option. Please note that the public download edition of Knoppix does not contain the proprietary Nvidia manufacturer-specific drivers because of some license issues that could restrict redistribution in some cases.
The boot command line (in Knoppix, the syslinux bootloader that prompts with boot:) needs to be entered before loading the Linux kernel. If a derivative distro does not offer you a boot menu, hitting the Tab key in the initial splash screen may indeed drop you back to the boot command-line mode. If Tab does not work, then try the Escape key or (for GRUB bootloader) the e key for command-line editing mode.
Pressing Tab may, depending on the bootloader used, display which kernels are available for loading. It usually does not show kernel or boot options or help files. Apart from the Knoppix-specific knoppix-cheatcodes.txt
, most Linux kernel options are documented in the file Documentation/kernel-parameters.txt
in the kernel's source core or online [3]. Additionally, each kernel module (the drivers) has its own set of parameters, which you can query by typing the command
modinfo <modulename>
in a running Linux system (Listing 1).
Listing 1
modinfo
In this example, you can see all supported parameters for the nouveau kernel module. They can be specified on the command line while loading the module manually (sudo modprobe nouveau noaccel=1
on the text console), entered into a configuration file under /etc/modprobe.d/*.conf
(look at the examples there), or given as kernel parameters from the bootloader as mentioned above, prefixed by the module name and a dot.
If you find that your Nvidia graphics card works best with the noaccel=1
parameter to nouveau, change /mnt-system/syslinux/syslinux.cfg
by adding the nouveau.noaccel=1
parameter after each APPEND
line to make the change permanent.
Setting Up an FTP Server
Hi Klaus,
I'm a newbie in Linux and am wondering how I can create an FTP server from Ubuntu. Also, how do I install a speedtest analysis GUI in the FTP server and hence be able to test upload and download speeds?
Cheers, Herman Tutanava
Just install one of the available FTP server packages (e.g., vsftp, which is the preferred FTP server in Ubuntu). After installing the package, you might have to change the FTP server's configuration file /etc/vsftpd.conf
. Open the file with an editor as root (I prefer the command line – that is, Terminal – for this)
sudo leafpad /etc/vsftpd.conf
and change the lines in Table 2 to meet your needs.
Table 2
FTP Configuration
Configuration Parameter | Description |
---|---|
|
Allow access to local users with their login/password. |
|
Allow write access to the user's home directories |
|
Run in standalone mode (i.e., from an init script; see below). |
|
Allow guest (passwordless) login for the |
|
Allow guest (passwordless) user to upload files or create subdirectories in a public writable space and read all files without restriction (but see the security warning in the article). |
To create a public upload directory (if the package installation did not already do this for you, enter:
sudo mkdir -p /home/ftp/upload sudo chmod 777 /home/ftp/upload
Before (re-)starting the FTP server after these changes, please be aware of the following security issues:
- FTP transfers passwords insecurely in cleartext. Everyone in the network(s) between client and server could easily read them by intercepting network traffic!
- Attackers can use FTP to break into a system or probe for passwords if the system is not protected by a firewall and other security mechanisms, which would need some in-depth background knowledge.
- The anonymous configuration will allow anyone on the network to use your computer as a file share server. You probably don't want this (except for local tests).
- Because of protocol overhead, FTP is not the perfect tool to measure raw bandwidth between two computers.
Therefore, my recommendation is that if you want to test the FTP server, please disconnect your computer during these tests from any network that could possibly attempt a break-in, especially if you work in a public LAN or WLAN environment. After your tests, deactivate (or better yet, uninstall) the FTP server. If you want to offer a shared file directory, even if it's only for measurement, a web server may be a better choice (e.g., Apache 2 with a read-only public space).
Having said that, to start the vsftpd server after changing its configuration, type one of the following commands:
sudo start vsftpd sudo /etc/init.d/vsftpd restart
The first command is Ubuntu specific, and the second is the common Debian command. Use stop
instead of start
/restart
to teminate the FTP server.
Please be aware that the installation might have added an automatic start script, so the FTP server will restart on the next reboot automatically without your noticing. Thus, you should make sure it is set to disabled
by default in the bootup configuration, or, again, remove the software package after the tests to keep your computer safe from FTP-based attacks.
A more secure server option is sftp
, which uses an encryption layer (i.e., SSH2) between the client and the FTP server. Still, trying passwords for user accounts would be possible for an attacker. Other, less security critical programs that I could recommend for measuring network performance are listed in Table 3. To run these commands, the corresponding package needs to be installed.
Table 3
Network Performance Programs
Command | Description |
---|---|
|
Performs various network throughput tests. Requires an iPerf server and a client for tests. |
|
Measures maximum network throughput by continuously sending small and large ICMP network packets (no server installation required). |
|
Shows network traffic statistics on your computer for all network interfaces and protocols. |
Infos
- Cheat codes: http://ftp.knoppix.net/wiki/Cheat_Codes
- Nouveau support: http://nouveau.freedesktop.org/wiki/FeatureMatrix/
- Kernel parameters: https://www.kernel.org/doc/Documentation/kernel-parameters.txt
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.