Welcome to the Linux Foundation Forum!
Mounting USB wireless adapter and hard drive
Comments
-
[file name=Screenshot_gnome_mount_2.png size=33078]http://www.linux.com/media/kunena/attachments/legacy/files/Screenshot_gnome_mount_2.png[/file]0
-
-
I'm glad the wireless is finally working! If you loaded a .inf-file with ndiswrapper, that means you made Linux load the Windows driver instead of using a native Linux driver. It seems like this solved your problems :-)
NetworkManager requires a system service in order to work; launch this system daemon before you try using NetworkManager again:- su -c "/etc/init.d/network-manager start"
As for the external harddrive, did you remember to install ntfs-3g? I'm not really sure why you're getting Access Denied errors, but since it's the second time we're having trouble with the automounting, I'm tempted to just create a static entry in /etc/fstab that explains once and for all how to mount your external harddrive ;-). Can you plug in the harddrive, and post the output of the following command:- ls -l /dev/disk/by-id/usb-*
There are two normal causes of audio problems. Install the package alsa-utils, and try running the command alsamixer in a terminal. If a volume control shows up, it means that your audio card is detected and probably just muted; in that case you can use the arrow keys to move between volume sliders (master, pcm, headphones, etc), and press the key "m" to mute/unmute and use up/down arrows to adjust the volume. If alsamixer fails, the problem is likely that the audio drivers aren't loaded yet.OK, thanks so much for hanging in there with me.
[edit]
Another possible reason you're having problems with the audio, is that you're not in the audio group. Try giving yourself these rights the same way you gave yourself rights to control network devices:- su -c "usermod -G audio jim"
0 -
still does not show up when I open the Network Manager Editor- debian:~# /etc/init.d/network-manager start
- Starting network connection manager: NetworkManager.
This is not a BIG deal would just be nice to have it work.
Yes, I did install the ntfs-3g got that from the second or third reply here.
still will not read my flashdrive or HD, it knows it is there, it IDs it fine even tells me the name of the drive.- debian:~# ls -l /dev/disk/by-id/usb-*
- lrwxrwxrwx 1 root root 9 2010-05-23 13:05 /dev/disk/by-id/usb-UT163_USB_Flash_Disk_00000000001055-0:0 -> ../../sda
- lrwxrwxrwx 1 root root 10 2010-05-23 13:05 /dev/disk/by-id/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 -> ../../sda1
Soundcard
Still does not work... it acts like it cannot find my sound card and this worked the first time I installed Linux.
debian:~# alsamixer
this seems to work.. but no sound.
When I click on the volume icon I get this.
[file name=Screenshot_gnome_volume_control_1.png size=11764]http://www.linux.com/media/kunena/attachments/legacy/files/Screenshot_gnome_volume_control_1.png[/file]
A quitter I am not, but do know when I have reached my end.. :cheer:
so am still hanging in here.....0 -
BTW I am having real problems with adding pictures and files here, when I add 2 or 3 they all change to the last one I pick... what am I doing wrong?
[file name=Screenshot_Wireless_Networks_1.png size=22278]http://www.linux.com/media/kunena/attachments/legacy/files/Screenshot_Wireless_Networks_1.png[/file]0 -
Did you try to install the gstreamer plugins?
By the way... have you tryed if it works login in as root? If so, it will be a permission related problem (very common managing audio...)
Have you added yourself to the audio, storage,video, games,network,optical groups? Those are usually the groups a typical user needs to be in to avoid permission problems with many things!
Regards0 -
I second what Marc said about checking what groups you are in. Try adding yourself to some common groups:
And then check the file /etc/group to see that you were added to all those groups. You have to re-login for the changes to take effect. Then test audio, network configuration and mounting of your external harddrive.- su -c "usermod -a -G adm,admin,cdrom,audio,video,games,users,netdev,plugdev,lpadmin,pulse-access,sambashare jim"
If the harddrive is still not automatically mounted, we at least know how the system sees the harddrive, so we can create a static entry in the file /etc/fstab describing how to mount it - without having to rely on automatic configuration. Create a mountpoint where you want the contents of your external harddrive to appear:
Then modify the file /etc/fstab:- su -c "mkdir /mnt/usb"
And add the following line to the file:- su -c "nano -w /etc/fstab"
Save the file. Then try reconnecting your external harddrive. Hopefully, HAL will notice the entry in /etc/fstab and automatically know what to do with the harddrive. If not, you can at least mount your harddrive manually by using the following command:- /dev/disk/by-id/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
- su -c "mount /mnt/usb"
The easiest way to configure your wireless is likely to use nm-applet. Can you try starting NetworkManager again, and then run nm-applet from a terminal and post any errors you get here?
The last command should bring up an icon in your system tray that lets you select wireless networks.- su -c "/etc/init.d/network-manager start"
- nm-applet
0 -
In light of all of the work on this thread, I would like to thank Mac and Jabir for jumping in on this thread and others in the forum to assist others. Your contributions noticed and appreciated.0
-
I must say my thanks also and it was and is very much appreciated, my wife is always mad at her XP machine and wanted to go to Linux, so here I am caught in middle of that controversy trying to learn Linux and preparing myself to support her computer once we go that direction. So believe me when I say THANKS and VERY MUCH APPRECIATED.
I am still not done yet but hopefully getting there.
Jim0 -
SoundDid you try to install the gstreamer plugins?
Logged out and back in and I now have sound :cheer:- debian:~# usermod -a -G adm,admin,cdrom,audio,video,games,users,netdev,plugdev,lpadmin,pulse-access,sambashare jim
- usermod: unknown group admin
- usermod: unknown group pulse-access
- usermod: unknown group sambashare
- debian:~#
Kind of weird because the first install it worked right away and this second I have to do all this extra stuff. But the complete sound device works, records plays back etc..
HD
OK I made the su -c "mkdir /mnt/usb"
fstab:- # /etc/fstab: static file system information.
- #
- # <file system> <mount point> <type> <options> <dump> <pass>
- proc /proc proc defaults 0 0
- /dev/hda1 / ext3 errors=remount-ro 0 1
- /dev/hda5 none swap sw 0 0
- /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
- /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
- /dev/disk/by-id
- /usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,no$,rw,noauto,umask=000,relatime,silent 0 0
- debian:~# mount /mnt/usb
- ntfs-3g: Failed to access volume '/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1': No such file or directory
- Please type '/sbin/mount.ntfs-3g --help' for more information.
- debian:~#
Again on the first install I did not have this issue, once I installed ntfs-3g I was able to look at the HD, the thumbdrive worked from the get go with no intervention.
NetworkManager
Tried the suggested and it still did not work, but we can work on that later, this HD thing is more important0 -
SoundLogged out and back in and I now have soundKind of weird because the first install it worked right away and this second I have to do all this extra stuff.
External Harddrive
I see the problem with the USB harddrive. You put this in /etc/fstab:/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,no$,rw,noauto,umask=000,relatime,silent 0 0/dev/disk/by-id/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
Upon closer inspection, I see that the contents of your /etc/fstab is in fact this:/dev/disk/by-id
/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
[/edit]
NetworkTried the suggested and it still did not work, but we can work on that later, this HD thing is more important
mfilpot wrote:In light of all of the work on this thread, I would like to thank Mac and Jabir for jumping in on this thread and others in the forum to assist others. Your contributions noticed and appreciated.0 -
Thumb drive and HD
OK, maybe my fault here.
What I have is 4G TD that is FAT32, one my first install this was recognized and accesses with no intervention on my part. This time it is not.
I also have a USB external HD that is NTFS.Upon closer inspection, I see that the contents of your /etc/fstab is in fact this:
/dev/disk/by-id
/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1 /mnt/usb ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
You just have to remove all the whitespace between /dev/disk/by-id and /usb-(...)
Did this, but still not working.
This is with the TD:- debian:~# mount /mnt/usb
- NTFS signature is missing.
- Failed to mount '/dev/sda1': Invalid argument
- The device '/dev/sda1' doesn't have a valid NTFS.
- Maybe you selected the wrong device? Or the whole disk instead of a
- partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
This is with the HD:
As you can see when I plug them all in I have the TD, the USB we set up and HD (Jim Backup). The USB is there all the time with or without a drive installed.- debian:~# mount /mnt/usb
- ntfs-3g: Failed to access volume '/dev/disk/by-id/usb-UT163_USB_Flash_Disk_00000000001055-0:0-part1': No such file or directory
- Please type '/sbin/mount.ntfs-3g --help' for more information.
[file name=Screenshot_gnome_mount.png size=39123]http://www.linux.com/media/kunena/attachments/legacy/files/Screenshot_gnome_mount.png[/file]0 -
Replace the previous entry in /etc/fstab with this:
That should create a more general entry that works with both your external harddrives. If you intend to work with both harddrives at the same time, you can create another mountpoint and /etc/fstab-entry:- /dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
- su -c "mkdir /mnt/usb2"
- /dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
The reason it didn't work out of the box this time, must either be due to permissions issues, or due to problems with HAL. We might be able to fix the automounting; could you post the contents of the file /etc/group so we can check if these are more permissions-issues?0 -
OK, made the changes
- # /etc/fstab: static file system information.
- #
- # <file system> <mount point> <type> <options> <dump> <pass>
- proc /proc proc defaults 0 0
- /dev/hda1 / ext3 errors=remount-ro 0 1
- /dev/hda5 none swap sw 0 0
- /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0
- /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
- /dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
- /dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime,silent 0 0
HD is working :cheer: The TD seems to be having a permissions issue.- debian:~# mount /mnt/usb
- NTFS signature is missing.
- Failed to mount '/dev/sda1': Invalid argument
- The device '/dev/sda1' doesn't have a valid NTFS.
- Maybe you selected the wrong device? Or the whole disk instead of a
- partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
- debian:~# mount /mnt/usb2
- debian:~#
TD permisions:
Also the Jim Backup is now showing as a HD. I can access the Jim Backup , but I cannot open either of the usb/usb2 drives, I get the same permission denied as above when I try to access the TD.
[file name=Screenshot_Computer.png size=34550]http://www.linux.com/media/kunena/attachments/legacy/files/Screenshot_Computer.png[/file]could you post the contents of the file /etc/group so we can check if these are more permissions-issues?- GNU nano 2.0.7 File: /etc/group
- root:x:0:
- daemon:x:1:
- bin:x:2:
- sys:x:3:
- adm:x:4:
- tty:x:5:
- disk:x:6:
- lp:x:7:
- mail:x:8:
- news:x:9:
- uucp:x:10:
- man:x:12:
- proxy:x:13:
- kmem:x:15:
- dialout:x:20:
- fax:x:21:
- voice:x:22:
- cdrom:x:24:
- floppy:x:25:
We are one step closer..... :woohoo:0 -
It seems like only ntfs-3g understands the mount option silent, which made the system assume that none of your harddrives were formatted with vfat... Replace your fstab entries with these:
- /dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
- /dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
After running both mount /mnt/usb and mount /mnt/usb2 as root, do you also get permission errors when you try to manually open the folders /mnt/usb and /mnt/usb2 in your file manager?
Also, we only got the first few lines of /etc/group... Can you post the rest? You can get the entire contents at once like this:- cat /etc/group
0 -
Well this change made both drives work....
Code:
/dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
/dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0- debian:~# cat /etc/group
- root:x:0:
- daemon:x:1:
- bin:x:2:
- sys:x:3:
- adm:x:4:
- tty:x:5:
- disk:x:6:
- lp:x:7:
- mail:x:8:
- news:x:9:
- uucp:x:10:
- man:x:12:
- proxy:x:13:
- kmem:x:15:
- dialout:x:20:
- fax:x:21:
- voice:x:22:
- cdrom:x:24:
- floppy:x:25:
- tape:x:26:
- sudo:x:27:
- audio:x:29:jim
- dip:x:30:
- www-data:x:33:
- backup:x:34:
- operator:x:37:
- list:x:38:
- irc:x:39:
- src:x:40:
- gnats:x:41:
- shadow:x:42:
- utmp:x:43:
- video:x:44:
- sasl:x:45:
- plugdev:x:46:
- staff:x:50:
- games:x:60:
- users:x:100:
- nogroup:x:65534:
- libuuid:x:101:
- crontab:x:102:
- scanner:x:103:
- ssl-cert:x:104:
- Debian-exim:x:105:
- mlocate:x:106:
- ssh:x:107:
- messagebus:x:108:
- avahi-autoipd:x:109:
- avahi:x:110:
- netdev:x:111:
- lpadmin:x:112:
- gdm:x:113:
- stb-admin:x:114:
- haldaemon:x:115:
- powerdev:x:116:
- jim:x:1000:
- debian:~#
I can now read both drives and have sound.. but WOW LOL0 -
The drives will mount if plugged in when I reboot, but if I unplug them and replug them back they will not remount.0
-
grammjr wrote:The drives will mount if plugged in when I reboot, but if I unplug them and replug them back they will not remount.
Did you remember to unmount ("umount /mnt/usb/") before unplugging them?0 -
No I did not unmount them, on my first install, I was able to unplug them and plug them back in and it automatically accessed them. I did not have to do anything special.
The TD will remount if Iunmount
It is a required thing to unmount in Linux?
There is a ton of information here in this thread, I am tempted now that I have this stuff working to try a new install and see if this stuff will set up automatically. What do you think?0 -
It seems like one of the previous usermod commands didn't have any effect; you're not currently a member of e.g. the group plugdev, which is required to automatically mount storage devices...
Let's try to add you to these groups, and see if it fixes anything:
After running this command, you will have to relogin for the changes to take effect. Does this make automatic mounting of storage devices work again?- su -c "usermod --append --groups adm,cdrom,audio,video,plugdev,games,users,lpadmin,netdev,scanner jim"
Unmounting storage devices is similar to the "safe removal" option in Windows; it forces all unsynchronized data to be written to the device before making the device unavailable to the system. The device often needs some time to synchronize metadata after you have written anything to it, so unmounting it properly lowers the risk of corruption and is thus considered good practice. In Gnome, you should be able to unmount a device by right-clicking it's icon on the desktop or in the file manager, and then selecting "Unmount" or "Eject".I am tempted now that I have this stuff working to try a new install and see if this stuff will set up automatically. What do you think?0 -
That is an option, but I think we're close to solving this now, so let's give it a couple of more days
OK I will wait, was going wait, just thinking ahead.. I am learning Linux... boy oh boy.. I am a 59 yr old man learning a new trick. :laugh:
OK, I entered the command:- debian:~# usermod --append --groups adm,cdrom,audio,video,plugdev,games,users,lpadmin,netdev,scanner jim
- debian:~#
Rebooted, the TD came up automatically, but not the HD, I unmounted the TD unplugged it and plugged it back in and it mounted. So I think the TD is OK.
In order to get HD to mount I have to go to root and command line it. It will still not do it automatically.- debian:~# mount /mnt/usb2
- debian:~#
It mounts and I can access, I unmount it and unplug it and plug it back in it will not remount, until I do it from the command line then it will mount.0 -
Hmm... Usually, placing users in the /etc/fstab entry (like we did) should let you mount it without root permissions, but it seems like ntfs-3g is a special case since it is a FUSE module (Filesystem in Userspace) and not a regular filesystem driver.
Since the automounting is now working again, we could try commenting out the lines in /etc/fstab and pass all control over mounting back to HAL again and see if it works:- su -c "nano -w /etc/fstab"
- #/dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
- #/dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
0 -
OK commented out the lines
and the TD and HD automatically mount. All seems to be working.- #/dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
- #/dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
Even a hot unplug, unplugging without unmounting is working just like in the first install.
Did not even have to reboot.0 -
That's great news! Now we're finally back to the problems on page 2 of the thread, haha :P
So, where were we regarding the wireless network... Does iwlist wlan0 scan still work?0 -
grammjr wrote:OK commented out the lines
and the TD and HD automatically mount. All seems to be working.- #/dev/sda1 /mnt/usb vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
- #/dev/sdb1 /mnt/usb2 vfat,ntfs-3g users,rw,noauto,umask=000,relatime 0 0
Even a hot unplug, unplugging without unmounting is working just like in the first install.
Did not even have to reboot.
I seriously encourage you to umount/eject the device before unplugging it.0 -
Yes the iwlist wlan0 scan works and I am sending through the wireless adapter, how ever it still does not show in NETWORK MANAGER. The RADAR tool will pick up the sites so that one works.
So I still have a problem with it being detected by NETWORK MANAGER. I have 2 routers to get the signal through the house so the scan was correct.
What do you need to see?- debian:~# iwlist wlan0 scan
- wlan0 Scan completed :
- Cell 01 - Address: 00:02:6F:61:7F:D7
- ESSID:"Hey"
- Mode:Master
- Channel:9
- Frequency:2.452 GHz (Channel 9)
- Quality=46/100 Signal level=-82 dBm
- Encryption key:on
- Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
- 11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
- 48 Mb/s; 54 Mb/s
- Extra:tsf=0000008fde4e56aa
- Cell 02 - Address: 00:24:01:72:92:29
- ESSID:"Hey"
- Mode:Master
- Channel:9
- Frequency:2.452 GHz (Channel 9)
- Quality=54/100 Signal level=-36 dBm
- Encryption key:on
- Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
- 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
- 48 Mb/s; 54 Mb/s
- Extra:tsf=000000a7eff6df68
I seriously encourage you to umount/eject the device before unplugging it.
I hear you but I had to test it to see if it would work as if should and it did. unmount/reject is the best and safest way to do it, I agree.0 -
I'm sorry about the late reply, I've been busy with my exams lately
Network-manager should come with a system tray applet that lets you select wireless networks from a drop-down list. Are you sure that the package network-manager-gnome is installed? You could always try reinstalling it just in case
Then try logging out and in again. Does that make a network management applet show up in your system tray? In that case, left-clicking on that icon should give you a list of available wireless networks- su -c "apt-get install network-manager-gnome"
If that applet doesn't show up by itself, you can try running it manually:
If the command gives an error, please post it here. If it doesn't, but the applet still won't show up in the system tray, the system tray might actually be missing; in that case, it can be re-added by right-clicking your panel, clicking Add Applet or something like that and selecting Notification Area.- nm-applet
0
Categories
- All Categories
- 141 LFX Mentorship
- 141 LFX Mentorship: Linux Kernel
- 814 Linux Foundation IT Professional Programs
- 367 Cloud Engineer IT Professional Program
- 183 Advanced Cloud Engineer IT Professional Program
- 82 DevOps Engineer IT Professional Program
- 151 Cloud Native Developer IT Professional Program
- 143 Express Training Courses & Microlearning
- 143 Express Courses - Discussion Forum
- Microlearning - Discussion Forum
- 6.6K Training Courses
- 48 LFC110 Class Forum - Discontinued
- 72 LFC131 Class Forum
- 49 LFD102 Class Forum
- 235 LFD103 Class Forum
- 21 LFD110 Class Forum
- 44 LFD121 Class Forum
- 1 LFD123 Class Forum
- LFD125 Class Forum
- 18 LFD133 Class Forum
- 8 LFD134 Class Forum
- 18 LFD137 Class Forum
- 72 LFD201 Class Forum
- 5 LFD210 Class Forum
- 5 LFD210-CN Class Forum
- 2 LFD213 Class Forum - Discontinued
- 128 LFD232 Class Forum - Discontinued
- 2 LFD233 Class Forum
- 4 LFD237 Class Forum
- 24 LFD254 Class Forum
- 720 LFD259 Class Forum
- 111 LFD272 Class Forum - Discontinued
- 4 LFD272-JP クラス フォーラム
- 13 LFD273 Class Forum
- 248 LFS101 Class Forum
- 2 LFS111 Class Forum
- 3 LFS112 Class Forum
- 3 LFS116 Class Forum
- 7 LFS118 Class Forum
- LFS120 Class Forum
- 9 LFS142 Class Forum
- 8 LFS144 Class Forum
- 4 LFS145 Class Forum
- 4 LFS146 Class Forum
- 16 LFS148 Class Forum
- 15 LFS151 Class Forum
- 5 LFS157 Class Forum
- 69 LFS158 Class Forum
- LFS158-JP クラス フォーラム
- 12 LFS162 Class Forum
- 2 LFS166 Class Forum
- 7 LFS167 Class Forum
- 3 LFS170 Class Forum
- 2 LFS171 Class Forum
- 3 LFS178 Class Forum
- 3 LFS180 Class Forum
- 2 LFS182 Class Forum
- 5 LFS183 Class Forum
- 33 LFS200 Class Forum
- 737 LFS201 Class Forum - Discontinued
- 3 LFS201-JP クラス フォーラム - Discontinued
- 20 LFS203 Class Forum
- 135 LFS207 Class Forum
- 2 LFS207-DE-Klassenforum
- 2 LFS207-JP クラス フォーラム
- 302 LFS211 Class Forum
- 56 LFS216 Class Forum
- 53 LFS241 Class Forum
- 50 LFS242 Class Forum
- 38 LFS243 Class Forum
- 16 LFS244 Class Forum
- 5 LFS245 Class Forum
- LFS246 Class Forum
- LFS248 Class Forum
- 103 LFS250 Class Forum
- 2 LFS250-JP クラス フォーラム
- 1 LFS251 Class Forum
- 156 LFS253 Class Forum
- 1 LFS254 Class Forum
- 2 LFS255 Class Forum
- 12 LFS256 Class Forum
- 1 LFS257 Class Forum
- 1.3K LFS258 Class Forum
- 11 LFS258-JP クラス フォーラム
- 135 LFS260 Class Forum
- 162 LFS261 Class Forum
- 43 LFS262 Class Forum
- 82 LFS263 Class Forum - Discontinued
- 15 LFS264 Class Forum - Discontinued
- 11 LFS266 Class Forum - Discontinued
- 24 LFS267 Class Forum
- 25 LFS268 Class Forum
- 37 LFS269 Class Forum
- 7 LFS270 Class Forum
- 202 LFS272 Class Forum - Discontinued
- 2 LFS272-JP クラス フォーラム
- 4 LFS147 Class Forum
- 2 LFS274 Class Forum
- 4 LFS281 Class Forum
- 18 LFW111 Class Forum
- 262 LFW211 Class Forum
- 185 LFW212 Class Forum
- 15 SKF100 Class Forum
- 1 SKF200 Class Forum
- 2 SKF201 Class Forum
- 797 Hardware
- 199 Drivers
- 68 I/O Devices
- 37 Monitors
- 104 Multimedia
- 174 Networking
- 91 Printers & Scanners
- 85 Storage
- 761 Linux Distributions
- 82 Debian
- 67 Fedora
- 17 Linux Mint
- 13 Mageia
- 23 openSUSE
- 149 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 355 Ubuntu
- 470 Linux System Administration
- 39 Cloud Computing
- 71 Command Line/Scripting
- Github systems admin projects
- 95 Linux Security
- 78 Network Management
- 102 System Management
- 47 Web Management
- 69 Mobile Computing
- 18 Android
- 38 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 379 Off Topic
- 115 Introductions
- 177 Small Talk
- 26 Study Material
- 808 Programming and Development
- 304 Kernel Development
- 486 Software Development
- 1.8K Software
- 263 Applications
- 183 Command Line
- 3 Compiling/Installing
- 988 Games
- 317 Installation
- 103 All In Program
- 103 All In Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)